Bram Moolenaar | edf3f97 | 2016-08-29 22:49:24 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * |
| 5 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 6 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 7 | * See README.txt for an overview of the Vim source code. |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * ui.c: functions that handle the user interface. |
| 12 | * 1. Keyboard input stuff, and a bit of windowing stuff. These are called |
| 13 | * before the machine specific stuff (mch_*) so that we can call the GUI |
| 14 | * stuff instead if the GUI is running. |
| 15 | * 2. Clipboard stuff. |
| 16 | * 3. Input buffer stuff. |
| 17 | */ |
| 18 | |
| 19 | #include "vim.h" |
| 20 | |
Bram Moolenaar | 2c6f3dc | 2013-07-05 20:09:16 +0200 | [diff] [blame] | 21 | #ifdef FEAT_CYGWIN_WIN32_CLIPBOARD |
| 22 | # define WIN32_LEAN_AND_MEAN |
| 23 | # include <windows.h> |
| 24 | # include "winclip.pro" |
| 25 | #endif |
| 26 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 27 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 28 | ui_write(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 29 | { |
| 30 | #ifdef FEAT_GUI |
| 31 | if (gui.in_use && !gui.dying && !gui.starting) |
| 32 | { |
| 33 | gui_write(s, len); |
| 34 | if (p_wd) |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 35 | gui_wait_for_chars(p_wd, typebuf.tb_change_cnt); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 36 | return; |
| 37 | } |
| 38 | #endif |
| 39 | #ifndef NO_CONSOLE |
| 40 | /* Don't output anything in silent mode ("ex -s") unless 'verbose' set */ |
| 41 | if (!(silent_mode && p_verbose == 0)) |
| 42 | { |
Bram Moolenaar | 4f97475 | 2019-02-17 17:44:42 +0100 | [diff] [blame] | 43 | #if !defined(MSWIN) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 44 | char_u *tofree = NULL; |
| 45 | |
| 46 | if (output_conv.vc_type != CONV_NONE) |
| 47 | { |
| 48 | /* Convert characters from 'encoding' to 'termencoding'. */ |
| 49 | tofree = string_convert(&output_conv, s, &len); |
| 50 | if (tofree != NULL) |
| 51 | s = tofree; |
| 52 | } |
| 53 | #endif |
| 54 | |
| 55 | mch_write(s, len); |
| 56 | |
Bram Moolenaar | 4f97475 | 2019-02-17 17:44:42 +0100 | [diff] [blame] | 57 | # if !defined(MSWIN) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 58 | if (output_conv.vc_type != CONV_NONE) |
| 59 | vim_free(tofree); |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 60 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 61 | } |
| 62 | #endif |
| 63 | } |
| 64 | |
Bram Moolenaar | 4f97475 | 2019-02-17 17:44:42 +0100 | [diff] [blame] | 65 | #if defined(UNIX) || defined(VMS) || defined(PROTO) || defined(MSWIN) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 66 | /* |
| 67 | * When executing an external program, there may be some typed characters that |
| 68 | * are not consumed by it. Give them back to ui_inchar() and they are stored |
| 69 | * here for the next call. |
| 70 | */ |
| 71 | static char_u *ta_str = NULL; |
| 72 | static int ta_off; /* offset for next char to use when ta_str != NULL */ |
| 73 | static int ta_len; /* length of ta_str when it's not NULL*/ |
| 74 | |
| 75 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 76 | ui_inchar_undo(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 77 | { |
| 78 | char_u *new; |
| 79 | int newlen; |
| 80 | |
| 81 | newlen = len; |
| 82 | if (ta_str != NULL) |
| 83 | newlen += ta_len - ta_off; |
| 84 | new = alloc(newlen); |
| 85 | if (new != NULL) |
| 86 | { |
| 87 | if (ta_str != NULL) |
| 88 | { |
| 89 | mch_memmove(new, ta_str + ta_off, (size_t)(ta_len - ta_off)); |
| 90 | mch_memmove(new + ta_len - ta_off, s, (size_t)len); |
| 91 | vim_free(ta_str); |
| 92 | } |
| 93 | else |
| 94 | mch_memmove(new, s, (size_t)len); |
| 95 | ta_str = new; |
| 96 | ta_len = newlen; |
| 97 | ta_off = 0; |
| 98 | } |
| 99 | } |
| 100 | #endif |
| 101 | |
| 102 | /* |
Bram Moolenaar | b6101cf | 2012-10-21 00:58:39 +0200 | [diff] [blame] | 103 | * ui_inchar(): low level input function. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 104 | * Get characters from the keyboard. |
| 105 | * Return the number of characters that are available. |
| 106 | * If "wtime" == 0 do not wait for characters. |
| 107 | * If "wtime" == -1 wait forever for characters. |
| 108 | * If "wtime" > 0 wait "wtime" milliseconds for a character. |
| 109 | * |
| 110 | * "tb_change_cnt" is the value of typebuf.tb_change_cnt if "buf" points into |
| 111 | * it. When typebuf.tb_change_cnt changes (e.g., when a message is received |
| 112 | * from a remote client) "buf" can no longer be used. "tb_change_cnt" is NULL |
| 113 | * otherwise. |
| 114 | */ |
| 115 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 116 | ui_inchar( |
| 117 | char_u *buf, |
| 118 | int maxlen, |
| 119 | long wtime, /* don't use "time", MIPS cannot handle it */ |
| 120 | int tb_change_cnt) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 121 | { |
| 122 | int retval = 0; |
| 123 | |
| 124 | #if defined(FEAT_GUI) && (defined(UNIX) || defined(VMS)) |
| 125 | /* |
| 126 | * Use the typeahead if there is any. |
| 127 | */ |
| 128 | if (ta_str != NULL) |
| 129 | { |
| 130 | if (maxlen >= ta_len - ta_off) |
| 131 | { |
| 132 | mch_memmove(buf, ta_str + ta_off, (size_t)ta_len); |
Bram Moolenaar | d23a823 | 2018-02-10 18:45:26 +0100 | [diff] [blame] | 133 | VIM_CLEAR(ta_str); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 134 | return ta_len; |
| 135 | } |
| 136 | mch_memmove(buf, ta_str + ta_off, (size_t)maxlen); |
| 137 | ta_off += maxlen; |
| 138 | return maxlen; |
| 139 | } |
| 140 | #endif |
| 141 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 142 | #ifdef FEAT_PROFILE |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 143 | if (do_profiling == PROF_YES && wtime != 0) |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 144 | prof_inchar_enter(); |
| 145 | #endif |
| 146 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 147 | #ifdef NO_CONSOLE_INPUT |
| 148 | /* Don't wait for character input when the window hasn't been opened yet. |
| 149 | * Do try reading, this works when redirecting stdin from a file. |
| 150 | * Must return something, otherwise we'll loop forever. If we run into |
| 151 | * this very often we probably got stuck, exit Vim. */ |
| 152 | if (no_console_input()) |
| 153 | { |
| 154 | static int count = 0; |
| 155 | |
| 156 | # ifndef NO_CONSOLE |
Bram Moolenaar | 1341024 | 2018-11-26 21:19:11 +0100 | [diff] [blame] | 157 | retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt); |
Bram Moolenaar | 43b604c | 2005-03-22 23:06:55 +0000 | [diff] [blame] | 158 | if (retval > 0 || typebuf_changed(tb_change_cnt) || wtime >= 0) |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 159 | goto theend; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 160 | # endif |
| 161 | if (wtime == -1 && ++count == 1000) |
| 162 | read_error_exit(); |
| 163 | buf[0] = CAR; |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 164 | retval = 1; |
| 165 | goto theend; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 166 | } |
| 167 | #endif |
| 168 | |
Bram Moolenaar | c8da311 | 2007-03-08 12:36:46 +0000 | [diff] [blame] | 169 | /* If we are going to wait for some time or block... */ |
| 170 | if (wtime == -1 || wtime > 100L) |
| 171 | { |
| 172 | /* ... allow signals to kill us. */ |
| 173 | (void)vim_handle_signal(SIGNAL_UNBLOCK); |
| 174 | |
| 175 | /* ... there is no need for CTRL-C to interrupt something, don't let |
| 176 | * it set got_int when it was mapped. */ |
Bram Moolenaar | 5000869 | 2015-01-14 16:08:32 +0100 | [diff] [blame] | 177 | if ((mapped_ctrl_c | curbuf->b_mapped_ctrl_c) & get_real_state()) |
Bram Moolenaar | c8da311 | 2007-03-08 12:36:46 +0000 | [diff] [blame] | 178 | ctrl_c_interrupts = FALSE; |
| 179 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 180 | |
Bram Moolenaar | e40b9d4 | 2019-01-27 16:55:47 +0100 | [diff] [blame] | 181 | /* |
| 182 | * Here we call gui_inchar() or mch_inchar(), the GUI or machine-dependent |
| 183 | * input function. The functionality they implement is like this: |
| 184 | * |
| 185 | * while (not timed out) |
| 186 | * { |
| 187 | * handle-resize; |
| 188 | * parse-queued-messages; |
| 189 | * if (waited for 'updatetime') |
| 190 | * trigger-cursorhold; |
| 191 | * ui_wait_for_chars_or_timer() |
| 192 | * if (character available) |
| 193 | * break; |
| 194 | * } |
| 195 | * |
| 196 | * ui_wait_for_chars_or_timer() does: |
| 197 | * |
| 198 | * while (not timed out) |
| 199 | * { |
| 200 | * if (any-timer-triggered) |
| 201 | * invoke-timer-callback; |
| 202 | * wait-for-character(); |
| 203 | * if (character available) |
| 204 | * break; |
| 205 | * } |
| 206 | * |
| 207 | * wait-for-character() does: |
| 208 | * while (not timed out) |
| 209 | * { |
| 210 | * Wait for event; |
| 211 | * if (something on channel) |
| 212 | * read/write channel; |
| 213 | * else if (resized) |
| 214 | * handle_resize(); |
| 215 | * else if (system event) |
| 216 | * deal-with-system-event; |
| 217 | * else if (character available) |
| 218 | * break; |
| 219 | * } |
| 220 | * |
| 221 | */ |
| 222 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 223 | #ifdef FEAT_GUI |
| 224 | if (gui.in_use) |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 225 | retval = gui_inchar(buf, maxlen, wtime, tb_change_cnt); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 226 | #endif |
| 227 | #ifndef NO_CONSOLE |
| 228 | # ifdef FEAT_GUI |
| 229 | else |
| 230 | # endif |
| 231 | retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt); |
| 232 | #endif |
| 233 | |
Bram Moolenaar | c8da311 | 2007-03-08 12:36:46 +0000 | [diff] [blame] | 234 | if (wtime == -1 || wtime > 100L) |
| 235 | /* block SIGHUP et al. */ |
| 236 | (void)vim_handle_signal(SIGNAL_BLOCK); |
| 237 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 238 | ctrl_c_interrupts = TRUE; |
| 239 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 240 | #ifdef NO_CONSOLE_INPUT |
| 241 | theend: |
| 242 | #endif |
| 243 | #ifdef FEAT_PROFILE |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 244 | if (do_profiling == PROF_YES && wtime != 0) |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 245 | prof_inchar_exit(); |
| 246 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 247 | return retval; |
| 248 | } |
| 249 | |
Bram Moolenaar | e40b9d4 | 2019-01-27 16:55:47 +0100 | [diff] [blame] | 250 | #if defined(UNIX) || defined(FEAT_GUI) || defined(PROTO) |
| 251 | /* |
| 252 | * Common code for mch_inchar() and gui_inchar(): Wait for a while or |
| 253 | * indefinitely until characters are available, dealing with timers and |
| 254 | * messages on channels. |
| 255 | * |
| 256 | * "buf" may be NULL if the available characters are not to be returned, only |
| 257 | * check if they are available. |
| 258 | * |
| 259 | * Return the number of characters that are available. |
| 260 | * If "wtime" == 0 do not wait for characters. |
| 261 | * If "wtime" == n wait a short time for characters. |
| 262 | * If "wtime" == -1 wait forever for characters. |
| 263 | */ |
| 264 | int |
| 265 | inchar_loop( |
| 266 | char_u *buf, |
| 267 | int maxlen, |
| 268 | long wtime, // don't use "time", MIPS cannot handle it |
| 269 | int tb_change_cnt, |
| 270 | int (*wait_func)(long wtime, int *interrupted, int ignore_input), |
| 271 | int (*resize_func)(int check_only)) |
| 272 | { |
| 273 | int len; |
| 274 | int interrupted = FALSE; |
Bram Moolenaar | 12dfc9e | 2019-01-28 22:32:58 +0100 | [diff] [blame] | 275 | int did_call_wait_func = FALSE; |
Bram Moolenaar | e40b9d4 | 2019-01-27 16:55:47 +0100 | [diff] [blame] | 276 | int did_start_blocking = FALSE; |
| 277 | long wait_time; |
| 278 | long elapsed_time = 0; |
| 279 | #ifdef ELAPSED_FUNC |
| 280 | elapsed_T start_tv; |
| 281 | |
| 282 | ELAPSED_INIT(start_tv); |
| 283 | #endif |
| 284 | |
| 285 | /* repeat until we got a character or waited long enough */ |
| 286 | for (;;) |
| 287 | { |
| 288 | /* Check if window changed size while we were busy, perhaps the ":set |
| 289 | * columns=99" command was used. */ |
| 290 | if (resize_func != NULL) |
| 291 | resize_func(FALSE); |
| 292 | |
| 293 | #ifdef MESSAGE_QUEUE |
| 294 | // Only process messages when waiting. |
| 295 | if (wtime != 0) |
| 296 | { |
| 297 | parse_queued_messages(); |
| 298 | // If input was put directly in typeahead buffer bail out here. |
| 299 | if (typebuf_changed(tb_change_cnt)) |
| 300 | return 0; |
| 301 | } |
| 302 | #endif |
| 303 | if (wtime < 0 && did_start_blocking) |
| 304 | // blocking and already waited for p_ut |
| 305 | wait_time = -1; |
| 306 | else |
| 307 | { |
| 308 | if (wtime >= 0) |
| 309 | wait_time = wtime; |
| 310 | else |
| 311 | // going to block after p_ut |
| 312 | wait_time = p_ut; |
| 313 | #ifdef ELAPSED_FUNC |
| 314 | elapsed_time = ELAPSED_FUNC(start_tv); |
| 315 | #endif |
| 316 | wait_time -= elapsed_time; |
Bram Moolenaar | 12dfc9e | 2019-01-28 22:32:58 +0100 | [diff] [blame] | 317 | |
| 318 | // If the waiting time is now zero or less, we timed out. However, |
| 319 | // loop at least once to check for characters and events. Matters |
| 320 | // when "wtime" is zero. |
| 321 | if (wait_time <= 0 && did_call_wait_func) |
Bram Moolenaar | e40b9d4 | 2019-01-27 16:55:47 +0100 | [diff] [blame] | 322 | { |
| 323 | if (wtime >= 0) |
| 324 | // no character available within "wtime" |
| 325 | return 0; |
| 326 | |
| 327 | // No character available within 'updatetime'. |
| 328 | did_start_blocking = TRUE; |
| 329 | if (trigger_cursorhold() && maxlen >= 3 |
| 330 | && !typebuf_changed(tb_change_cnt)) |
| 331 | { |
| 332 | // Put K_CURSORHOLD in the input buffer or return it. |
| 333 | if (buf == NULL) |
| 334 | { |
| 335 | char_u ibuf[3]; |
| 336 | |
| 337 | ibuf[0] = CSI; |
| 338 | ibuf[1] = KS_EXTRA; |
| 339 | ibuf[2] = (int)KE_CURSORHOLD; |
| 340 | add_to_input_buf(ibuf, 3); |
| 341 | } |
| 342 | else |
| 343 | { |
| 344 | buf[0] = K_SPECIAL; |
| 345 | buf[1] = KS_EXTRA; |
| 346 | buf[2] = (int)KE_CURSORHOLD; |
| 347 | } |
| 348 | return 3; |
| 349 | } |
| 350 | |
| 351 | // There is no character available within 'updatetime' seconds: |
| 352 | // flush all the swap files to disk. Also done when |
| 353 | // interrupted by SIGWINCH. |
| 354 | before_blocking(); |
| 355 | continue; |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | #ifdef FEAT_JOB_CHANNEL |
| 360 | if (wait_time < 0 || wait_time > 100L) |
| 361 | { |
| 362 | // Checking if a job ended requires polling. Do this at least |
| 363 | // every 100 msec. |
| 364 | if (has_pending_job()) |
| 365 | wait_time = 100L; |
| 366 | |
| 367 | // If there is readahead then parse_queued_messages() timed out and |
| 368 | // we should call it again soon. |
| 369 | if (channel_any_readahead()) |
| 370 | wait_time = 10L; |
| 371 | } |
| 372 | #endif |
| 373 | #ifdef FEAT_BEVAL_GUI |
| 374 | if (p_beval && wait_time > 100L) |
| 375 | // The 'balloonexpr' may indirectly invoke a callback while waiting |
| 376 | // for a character, need to check often. |
| 377 | wait_time = 100L; |
| 378 | #endif |
| 379 | |
| 380 | // Wait for a character to be typed or another event, such as the winch |
| 381 | // signal or an event on the monitored file descriptors. |
Bram Moolenaar | 12dfc9e | 2019-01-28 22:32:58 +0100 | [diff] [blame] | 382 | did_call_wait_func = TRUE; |
Bram Moolenaar | e40b9d4 | 2019-01-27 16:55:47 +0100 | [diff] [blame] | 383 | if (wait_func(wait_time, &interrupted, FALSE)) |
| 384 | { |
| 385 | // If input was put directly in typeahead buffer bail out here. |
| 386 | if (typebuf_changed(tb_change_cnt)) |
| 387 | return 0; |
| 388 | |
| 389 | // We might have something to return now. |
| 390 | if (buf == NULL) |
| 391 | // "buf" is NULL, we were just waiting, not actually getting |
| 392 | // input. |
| 393 | return input_available(); |
| 394 | |
| 395 | len = read_from_input_buf(buf, (long)maxlen); |
| 396 | if (len > 0) |
| 397 | return len; |
| 398 | continue; |
| 399 | } |
| 400 | // Timed out or interrupted with no character available. |
| 401 | |
| 402 | #ifndef ELAPSED_FUNC |
| 403 | // estimate the elapsed time |
| 404 | elapsed_time += wait_time; |
| 405 | #endif |
| 406 | |
| 407 | if ((resize_func != NULL && resize_func(TRUE)) |
Bram Moolenaar | 3e9d4d8 | 2019-01-27 17:08:40 +0100 | [diff] [blame] | 408 | #if defined(FEAT_CLIENTSERVER) && defined(UNIX) |
Bram Moolenaar | e40b9d4 | 2019-01-27 16:55:47 +0100 | [diff] [blame] | 409 | || server_waiting() |
| 410 | #endif |
| 411 | #ifdef MESSAGE_QUEUE |
| 412 | || interrupted |
| 413 | #endif |
| 414 | || wait_time > 0 |
| 415 | || (wtime < 0 && !did_start_blocking)) |
| 416 | // no character available, but something to be done, keep going |
| 417 | continue; |
| 418 | |
| 419 | // no character available or interrupted, return zero |
| 420 | break; |
| 421 | } |
| 422 | return 0; |
| 423 | } |
| 424 | #endif |
| 425 | |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 426 | #if defined(FEAT_TIMERS) || defined(PROTO) |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 427 | /* |
| 428 | * Wait for a timer to fire or "wait_func" to return non-zero. |
| 429 | * Returns OK when something was read. |
| 430 | * Returns FAIL when it timed out or was interrupted. |
| 431 | */ |
| 432 | int |
| 433 | ui_wait_for_chars_or_timer( |
| 434 | long wtime, |
| 435 | int (*wait_func)(long wtime, int *interrupted, int ignore_input), |
| 436 | int *interrupted, |
| 437 | int ignore_input) |
| 438 | { |
| 439 | int due_time; |
| 440 | long remaining = wtime; |
| 441 | int tb_change_cnt = typebuf.tb_change_cnt; |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 442 | # ifdef FEAT_JOB_CHANNEL |
Bram Moolenaar | e299bbd | 2019-01-17 14:12:02 +0100 | [diff] [blame] | 443 | int brief_wait = FALSE; |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 444 | # endif |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 445 | |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 446 | // When waiting very briefly don't trigger timers. |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 447 | if (wtime >= 0 && wtime < 10L) |
| 448 | return wait_func(wtime, NULL, ignore_input); |
| 449 | |
| 450 | while (wtime < 0 || remaining > 0) |
| 451 | { |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 452 | // Trigger timers and then get the time in wtime until the next one is |
| 453 | // due. Wait up to that time. |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 454 | due_time = check_due_timer(); |
| 455 | if (typebuf.tb_change_cnt != tb_change_cnt) |
| 456 | { |
| 457 | /* timer may have used feedkeys() */ |
| 458 | return FAIL; |
| 459 | } |
| 460 | if (due_time <= 0 || (wtime > 0 && due_time > remaining)) |
| 461 | due_time = remaining; |
Bram Moolenaar | 28e67e0 | 2019-08-15 23:05:49 +0200 | [diff] [blame] | 462 | # if defined(FEAT_JOB_CHANNEL) || defined(FEAT_SOUND_CANBERRA) |
| 463 | if ((due_time < 0 || due_time > 10L) && ( |
| 464 | # if defined(FEAT_JOB_CHANNEL) |
| 465 | ( |
| 466 | # if defined(FEAT_GUI) |
| 467 | !gui.in_use && |
| 468 | # endif |
| 469 | (has_pending_job() || channel_any_readahead())) |
| 470 | # ifdef FEAT_SOUND_CANBERRA |
| 471 | || |
| 472 | # endif |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 473 | # endif |
Bram Moolenaar | 28e67e0 | 2019-08-15 23:05:49 +0200 | [diff] [blame] | 474 | # ifdef FEAT_SOUND_CANBERRA |
| 475 | has_any_sound_callback() |
| 476 | # endif |
| 477 | )) |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 478 | { |
| 479 | // There is a pending job or channel, should return soon in order |
| 480 | // to handle them ASAP. Do check for input briefly. |
| 481 | due_time = 10L; |
| 482 | brief_wait = TRUE; |
| 483 | } |
| 484 | # endif |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 485 | if (wait_func(due_time, interrupted, ignore_input)) |
| 486 | return OK; |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 487 | if ((interrupted != NULL && *interrupted) |
| 488 | # ifdef FEAT_JOB_CHANNEL |
| 489 | || brief_wait |
| 490 | # endif |
| 491 | ) |
| 492 | // Nothing available, but need to return so that side effects get |
| 493 | // handled, such as handling a message on a channel. |
Bram Moolenaar | a338adc | 2018-01-31 20:51:47 +0100 | [diff] [blame] | 494 | return FAIL; |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 495 | if (wtime > 0) |
| 496 | remaining -= due_time; |
| 497 | } |
| 498 | return FAIL; |
| 499 | } |
| 500 | #endif |
| 501 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 502 | /* |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 503 | * Return non-zero if a character is available. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 504 | */ |
| 505 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 506 | ui_char_avail(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 507 | { |
| 508 | #ifdef FEAT_GUI |
| 509 | if (gui.in_use) |
| 510 | { |
| 511 | gui_mch_update(); |
| 512 | return input_available(); |
| 513 | } |
| 514 | #endif |
| 515 | #ifndef NO_CONSOLE |
| 516 | # ifdef NO_CONSOLE_INPUT |
| 517 | if (no_console_input()) |
| 518 | return 0; |
| 519 | # endif |
| 520 | return mch_char_avail(); |
| 521 | #else |
| 522 | return 0; |
| 523 | #endif |
| 524 | } |
| 525 | |
| 526 | /* |
| 527 | * Delay for the given number of milliseconds. If ignoreinput is FALSE then we |
| 528 | * cancel the delay if a key is hit. |
| 529 | */ |
| 530 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 531 | ui_delay(long msec, int ignoreinput) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 532 | { |
| 533 | #ifdef FEAT_GUI |
| 534 | if (gui.in_use && !ignoreinput) |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 535 | gui_wait_for_chars(msec, typebuf.tb_change_cnt); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 536 | else |
| 537 | #endif |
| 538 | mch_delay(msec, ignoreinput); |
| 539 | } |
| 540 | |
| 541 | /* |
| 542 | * If the machine has job control, use it to suspend the program, |
| 543 | * otherwise fake it by starting a new shell. |
| 544 | * When running the GUI iconify the window. |
| 545 | */ |
| 546 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 547 | ui_suspend(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 548 | { |
| 549 | #ifdef FEAT_GUI |
| 550 | if (gui.in_use) |
| 551 | { |
| 552 | gui_mch_iconify(); |
| 553 | return; |
| 554 | } |
| 555 | #endif |
| 556 | mch_suspend(); |
| 557 | } |
| 558 | |
| 559 | #if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__) |
| 560 | /* |
| 561 | * When the OS can't really suspend, call this function to start a shell. |
| 562 | * This is never called in the GUI. |
| 563 | */ |
| 564 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 565 | suspend_shell(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 566 | { |
| 567 | if (*p_sh == NUL) |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 568 | emsg(_(e_shellempty)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 569 | else |
| 570 | { |
Bram Moolenaar | 32526b3 | 2019-01-19 17:43:09 +0100 | [diff] [blame] | 571 | msg_puts(_("new shell started\n")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 572 | do_shell(NULL, 0); |
| 573 | } |
| 574 | } |
| 575 | #endif |
| 576 | |
| 577 | /* |
| 578 | * Try to get the current Vim shell size. Put the result in Rows and Columns. |
| 579 | * Use the new sizes as defaults for 'columns' and 'lines'. |
| 580 | * Return OK when size could be determined, FAIL otherwise. |
| 581 | */ |
| 582 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 583 | ui_get_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 584 | { |
| 585 | int retval; |
| 586 | |
| 587 | #ifdef FEAT_GUI |
| 588 | if (gui.in_use) |
| 589 | retval = gui_get_shellsize(); |
| 590 | else |
| 591 | #endif |
| 592 | retval = mch_get_shellsize(); |
| 593 | |
| 594 | check_shellsize(); |
| 595 | |
| 596 | /* adjust the default for 'lines' and 'columns' */ |
| 597 | if (retval == OK) |
| 598 | { |
| 599 | set_number_default("lines", Rows); |
| 600 | set_number_default("columns", Columns); |
| 601 | } |
| 602 | return retval; |
| 603 | } |
| 604 | |
| 605 | /* |
| 606 | * Set the size of the Vim shell according to Rows and Columns, if possible. |
| 607 | * The gui_set_shellsize() or mch_set_shellsize() function will try to set the |
| 608 | * new size. If this is not possible, it will adjust Rows and Columns. |
| 609 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 610 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 611 | ui_set_shellsize( |
| 612 | int mustset UNUSED) /* set by the user */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 613 | { |
| 614 | #ifdef FEAT_GUI |
| 615 | if (gui.in_use) |
Bram Moolenaar | 8968a31 | 2013-07-03 16:58:44 +0200 | [diff] [blame] | 616 | gui_set_shellsize(mustset, TRUE, RESIZE_BOTH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 617 | else |
| 618 | #endif |
| 619 | mch_set_shellsize(); |
| 620 | } |
| 621 | |
| 622 | /* |
| 623 | * Called when Rows and/or Columns changed. Adjust scroll region and mouse |
| 624 | * region. |
| 625 | */ |
| 626 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 627 | ui_new_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 628 | { |
| 629 | if (full_screen && !exiting) |
| 630 | { |
| 631 | #ifdef FEAT_GUI |
| 632 | if (gui.in_use) |
| 633 | gui_new_shellsize(); |
| 634 | else |
| 635 | #endif |
| 636 | mch_new_shellsize(); |
| 637 | } |
| 638 | } |
| 639 | |
Bram Moolenaar | 6bc9305 | 2019-04-06 20:00:19 +0200 | [diff] [blame] | 640 | #if ((defined(FEAT_EVAL) || defined(FEAT_TERMINAL)) \ |
Bram Moolenaar | 3d3f217 | 2019-04-06 17:56:05 +0200 | [diff] [blame] | 641 | && (defined(FEAT_GUI) \ |
Bram Moolenaar | 16c34c3 | 2019-04-06 22:01:24 +0200 | [diff] [blame] | 642 | || defined(MSWIN) \ |
Bram Moolenaar | 3d3f217 | 2019-04-06 17:56:05 +0200 | [diff] [blame] | 643 | || (defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)))) \ |
Bram Moolenaar | fa1e90c | 2019-04-06 17:47:40 +0200 | [diff] [blame] | 644 | || defined(PROTO) |
| 645 | /* |
| 646 | * Get the window position in pixels, if possible. |
| 647 | * Return FAIL when not possible. |
| 648 | */ |
| 649 | int |
| 650 | ui_get_winpos(int *x, int *y, varnumber_T timeout) |
| 651 | { |
| 652 | # ifdef FEAT_GUI |
| 653 | if (gui.in_use) |
| 654 | return gui_mch_get_winpos(x, y); |
| 655 | # endif |
Bram Moolenaar | afde13b | 2019-04-28 19:46:49 +0200 | [diff] [blame] | 656 | # if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL)) |
Bram Moolenaar | 16c34c3 | 2019-04-06 22:01:24 +0200 | [diff] [blame] | 657 | return mch_get_winpos(x, y); |
Bram Moolenaar | 6bc9305 | 2019-04-06 20:00:19 +0200 | [diff] [blame] | 658 | # else |
Bram Moolenaar | 16c34c3 | 2019-04-06 22:01:24 +0200 | [diff] [blame] | 659 | # if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE) |
| 660 | return term_get_winpos(x, y, timeout); |
| 661 | # else |
Bram Moolenaar | 6bc9305 | 2019-04-06 20:00:19 +0200 | [diff] [blame] | 662 | return FAIL; |
Bram Moolenaar | 16c34c3 | 2019-04-06 22:01:24 +0200 | [diff] [blame] | 663 | # endif |
Bram Moolenaar | fa1e90c | 2019-04-06 17:47:40 +0200 | [diff] [blame] | 664 | # endif |
| 665 | } |
| 666 | #endif |
| 667 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 668 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 669 | ui_breakcheck(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 670 | { |
Bram Moolenaar | b9c31e7 | 2016-09-29 15:18:57 +0200 | [diff] [blame] | 671 | ui_breakcheck_force(FALSE); |
| 672 | } |
| 673 | |
| 674 | /* |
| 675 | * When "force" is true also check when the terminal is not in raw mode. |
| 676 | * This is useful to read input on channels. |
| 677 | */ |
| 678 | void |
| 679 | ui_breakcheck_force(int force) |
| 680 | { |
Bram Moolenaar | 48d23bb | 2018-11-20 02:42:43 +0100 | [diff] [blame] | 681 | static int recursive = FALSE; |
| 682 | int save_updating_screen = updating_screen; |
Bram Moolenaar | e3caa11 | 2017-01-31 22:07:42 +0100 | [diff] [blame] | 683 | |
Bram Moolenaar | 48d23bb | 2018-11-20 02:42:43 +0100 | [diff] [blame] | 684 | // We could be called recursively if stderr is redirected, calling |
| 685 | // fill_input_buf() calls settmode() when stdin isn't a tty. settmode() |
| 686 | // calls vgetorpeek() which calls ui_breakcheck() again. |
| 687 | if (recursive) |
| 688 | return; |
| 689 | recursive = TRUE; |
| 690 | |
| 691 | // We do not want gui_resize_shell() to redraw the screen here. |
Bram Moolenaar | e3caa11 | 2017-01-31 22:07:42 +0100 | [diff] [blame] | 692 | ++updating_screen; |
| 693 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 694 | #ifdef FEAT_GUI |
| 695 | if (gui.in_use) |
| 696 | gui_mch_update(); |
| 697 | else |
| 698 | #endif |
Bram Moolenaar | b9c31e7 | 2016-09-29 15:18:57 +0200 | [diff] [blame] | 699 | mch_breakcheck(force); |
Bram Moolenaar | e3caa11 | 2017-01-31 22:07:42 +0100 | [diff] [blame] | 700 | |
Bram Moolenaar | 42335f5 | 2018-09-13 15:33:43 +0200 | [diff] [blame] | 701 | if (save_updating_screen) |
| 702 | updating_screen = TRUE; |
Bram Moolenaar | 0cb8ac7 | 2018-05-11 22:01:51 +0200 | [diff] [blame] | 703 | else |
Bram Moolenaar | 68a4b04 | 2019-05-29 22:28:29 +0200 | [diff] [blame] | 704 | after_updating_screen(FALSE); |
Bram Moolenaar | 48d23bb | 2018-11-20 02:42:43 +0100 | [diff] [blame] | 705 | |
| 706 | recursive = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | /***************************************************************************** |
| 710 | * Functions for copying and pasting text between applications. |
| 711 | * This is always included in a GUI version, but may also be included when the |
| 712 | * clipboard and mouse is available to a terminal version such as xterm. |
| 713 | * Note: there are some more functions in ops.c that handle selection stuff. |
| 714 | * |
| 715 | * Also note that the majority of functions here deal with the X 'primary' |
| 716 | * (visible - for Visual mode use) selection, and only that. There are no |
| 717 | * versions of these for the 'clipboard' selection, as Visual mode has no use |
| 718 | * for them. |
| 719 | */ |
| 720 | |
| 721 | #if defined(FEAT_CLIPBOARD) || defined(PROTO) |
| 722 | |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 723 | static void clip_gen_lose_selection(Clipboard_T *cbd); |
| 724 | static int clip_gen_own_selection(Clipboard_T *cbd); |
| 725 | #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM) |
| 726 | static int clip_x11_owner_exists(Clipboard_T *cbd); |
| 727 | #endif |
| 728 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 729 | /* |
| 730 | * Selection stuff using Visual mode, for cutting and pasting text to other |
| 731 | * windows. |
| 732 | */ |
| 733 | |
| 734 | /* |
| 735 | * Call this to initialise the clipboard. Pass it FALSE if the clipboard code |
| 736 | * is included, but the clipboard can not be used, or TRUE if the clipboard can |
| 737 | * be used. Eg unix may call this with FALSE, then call it again with TRUE if |
| 738 | * the GUI starts. |
| 739 | */ |
| 740 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 741 | clip_init(int can_use) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 742 | { |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 743 | Clipboard_T *cb; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 744 | |
| 745 | cb = &clip_star; |
| 746 | for (;;) |
| 747 | { |
| 748 | cb->available = can_use; |
| 749 | cb->owned = FALSE; |
| 750 | cb->start.lnum = 0; |
| 751 | cb->start.col = 0; |
| 752 | cb->end.lnum = 0; |
| 753 | cb->end.col = 0; |
| 754 | cb->state = SELECT_CLEARED; |
| 755 | |
| 756 | if (cb == &clip_plus) |
| 757 | break; |
| 758 | cb = &clip_plus; |
| 759 | } |
| 760 | } |
| 761 | |
| 762 | /* |
| 763 | * Check whether the VIsual area has changed, and if so try to become the owner |
| 764 | * of the selection, and free any old converted selection we may still have |
| 765 | * lying around. If the VIsual mode has ended, make a copy of what was |
| 766 | * selected so we can still give it to others. Will probably have to make sure |
| 767 | * this is called whenever VIsual mode is ended. |
| 768 | */ |
| 769 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 770 | clip_update_selection(Clipboard_T *clip) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 771 | { |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 772 | pos_T start, end; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 773 | |
| 774 | /* If visual mode is only due to a redo command ("."), then ignore it */ |
| 775 | if (!redo_VIsual_busy && VIsual_active && (State & NORMAL)) |
| 776 | { |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 777 | if (LT_POS(VIsual, curwin->w_cursor)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 778 | { |
| 779 | start = VIsual; |
| 780 | end = curwin->w_cursor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 781 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 782 | end.col += (*mb_ptr2len)(ml_get_cursor()) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 783 | } |
| 784 | else |
| 785 | { |
| 786 | start = curwin->w_cursor; |
| 787 | end = VIsual; |
| 788 | } |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 789 | if (!EQUAL_POS(clip->start, start) |
| 790 | || !EQUAL_POS(clip->end, end) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 791 | || clip->vmode != VIsual_mode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 792 | { |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 793 | clip_clear_selection(clip); |
| 794 | clip->start = start; |
| 795 | clip->end = end; |
| 796 | clip->vmode = VIsual_mode; |
| 797 | clip_free_selection(clip); |
| 798 | clip_own_selection(clip); |
| 799 | clip_gen_set_selection(clip); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 800 | } |
| 801 | } |
| 802 | } |
| 803 | |
| 804 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 805 | clip_own_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 806 | { |
| 807 | /* |
| 808 | * Also want to check somehow that we are reading from the keyboard rather |
| 809 | * than a mapping etc. |
| 810 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 811 | #ifdef FEAT_X11 |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 812 | /* Always own the selection, we might have lost it without being |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 813 | * notified, e.g. during a ":sh" command. */ |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 814 | if (cbd->available) |
| 815 | { |
| 816 | int was_owned = cbd->owned; |
| 817 | |
| 818 | cbd->owned = (clip_gen_own_selection(cbd) == OK); |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 819 | if (!was_owned && (cbd == &clip_star || cbd == &clip_plus)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 820 | { |
Bram Moolenaar | ebefac6 | 2005-12-28 22:39:57 +0000 | [diff] [blame] | 821 | /* May have to show a different kind of highlighting for the |
| 822 | * selected area. There is no specific redraw command for this, |
| 823 | * just redraw all windows on the current buffer. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 824 | if (cbd->owned |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 825 | && (get_real_state() == VISUAL |
| 826 | || get_real_state() == SELECTMODE) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 827 | && (cbd == &clip_star ? clip_isautosel_star() |
| 828 | : clip_isautosel_plus()) |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 829 | && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 830 | redraw_curbuf_later(INVERTED_ALL); |
| 831 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 832 | } |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 833 | #else |
Bram Moolenaar | b6101cf | 2012-10-21 00:58:39 +0200 | [diff] [blame] | 834 | /* Only own the clipboard when we didn't own it yet. */ |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 835 | if (!cbd->owned && cbd->available) |
| 836 | cbd->owned = (clip_gen_own_selection(cbd) == OK); |
| 837 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 838 | } |
| 839 | |
| 840 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 841 | clip_lose_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 842 | { |
| 843 | #ifdef FEAT_X11 |
| 844 | int was_owned = cbd->owned; |
| 845 | #endif |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 846 | int visual_selection = FALSE; |
| 847 | |
| 848 | if (cbd == &clip_star || cbd == &clip_plus) |
| 849 | visual_selection = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 850 | |
| 851 | clip_free_selection(cbd); |
| 852 | cbd->owned = FALSE; |
| 853 | if (visual_selection) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 854 | clip_clear_selection(cbd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 855 | clip_gen_lose_selection(cbd); |
| 856 | #ifdef FEAT_X11 |
| 857 | if (visual_selection) |
| 858 | { |
| 859 | /* May have to show a different kind of highlighting for the selected |
| 860 | * area. There is no specific redraw command for this, just redraw all |
| 861 | * windows on the current buffer. */ |
| 862 | if (was_owned |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 863 | && (get_real_state() == VISUAL |
| 864 | || get_real_state() == SELECTMODE) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 865 | && (cbd == &clip_star ? |
| 866 | clip_isautosel_star() : clip_isautosel_plus()) |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 867 | && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 868 | { |
| 869 | update_curbuf(INVERTED_ALL); |
| 870 | setcursor(); |
| 871 | cursor_on(); |
Bram Moolenaar | a338adc | 2018-01-31 20:51:47 +0100 | [diff] [blame] | 872 | out_flush_cursor(TRUE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 873 | } |
| 874 | } |
| 875 | #endif |
| 876 | } |
| 877 | |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 878 | static void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 879 | clip_copy_selection(Clipboard_T *clip) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 880 | { |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 881 | if (VIsual_active && (State & NORMAL) && clip->available) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 882 | { |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 883 | clip_update_selection(clip); |
| 884 | clip_free_selection(clip); |
| 885 | clip_own_selection(clip); |
| 886 | if (clip->owned) |
| 887 | clip_get_selection(clip); |
| 888 | clip_gen_set_selection(clip); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 889 | } |
| 890 | } |
| 891 | |
| 892 | /* |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 893 | * Save and restore clip_unnamed before doing possibly many changes. This |
| 894 | * prevents accessing the clipboard very often which might slow down Vim |
| 895 | * considerably. |
| 896 | */ |
Bram Moolenaar | 73a156b | 2015-01-27 21:39:05 +0100 | [diff] [blame] | 897 | static int global_change_count = 0; /* if set, inside a start_global_changes */ |
Bram Moolenaar | 3fcfa35 | 2017-03-29 19:20:41 +0200 | [diff] [blame] | 898 | static int clipboard_needs_update = FALSE; /* clipboard needs to be updated */ |
| 899 | static int clip_did_set_selection = TRUE; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 900 | |
| 901 | /* |
| 902 | * Save clip_unnamed and reset it. |
| 903 | */ |
| 904 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 905 | start_global_changes(void) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 906 | { |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 907 | if (++global_change_count > 1) |
| 908 | return; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 909 | clip_unnamed_saved = clip_unnamed; |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 910 | clipboard_needs_update = FALSE; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 911 | |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 912 | if (clip_did_set_selection) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 913 | { |
| 914 | clip_unnamed = FALSE; |
| 915 | clip_did_set_selection = FALSE; |
| 916 | } |
| 917 | } |
| 918 | |
| 919 | /* |
Bram Moolenaar | 3fcfa35 | 2017-03-29 19:20:41 +0200 | [diff] [blame] | 920 | * Return TRUE if setting the clipboard was postponed, it already contains the |
| 921 | * right text. |
| 922 | */ |
| 923 | int |
| 924 | is_clipboard_needs_update() |
| 925 | { |
| 926 | return clipboard_needs_update; |
| 927 | } |
| 928 | |
| 929 | /* |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 930 | * Restore clip_unnamed and set the selection when needed. |
| 931 | */ |
| 932 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 933 | end_global_changes(void) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 934 | { |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 935 | if (--global_change_count > 0) |
| 936 | /* recursive */ |
| 937 | return; |
| 938 | if (!clip_did_set_selection) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 939 | { |
| 940 | clip_did_set_selection = TRUE; |
| 941 | clip_unnamed = clip_unnamed_saved; |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 942 | clip_unnamed_saved = FALSE; |
| 943 | if (clipboard_needs_update) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 944 | { |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 945 | /* only store something in the clipboard, |
| 946 | * if we have yanked anything to it */ |
| 947 | if (clip_unnamed & CLIP_UNNAMED) |
| 948 | { |
| 949 | clip_own_selection(&clip_star); |
| 950 | clip_gen_set_selection(&clip_star); |
| 951 | } |
| 952 | if (clip_unnamed & CLIP_UNNAMED_PLUS) |
| 953 | { |
| 954 | clip_own_selection(&clip_plus); |
| 955 | clip_gen_set_selection(&clip_plus); |
| 956 | } |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 957 | } |
| 958 | } |
Bram Moolenaar | 3fcfa35 | 2017-03-29 19:20:41 +0200 | [diff] [blame] | 959 | clipboard_needs_update = FALSE; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 963 | * Called when Visual mode is ended: update the selection. |
| 964 | */ |
| 965 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 966 | clip_auto_select(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 967 | { |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 968 | if (clip_isautosel_star()) |
| 969 | clip_copy_selection(&clip_star); |
| 970 | if (clip_isautosel_plus()) |
| 971 | clip_copy_selection(&clip_plus); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | /* |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 975 | * Return TRUE if automatic selection of Visual area is desired for the * |
| 976 | * register. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 977 | */ |
| 978 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 979 | clip_isautosel_star(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 980 | { |
| 981 | return ( |
| 982 | #ifdef FEAT_GUI |
| 983 | gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) : |
| 984 | #endif |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 985 | clip_autoselect_star); |
| 986 | } |
| 987 | |
| 988 | /* |
| 989 | * Return TRUE if automatic selection of Visual area is desired for the + |
| 990 | * register. |
| 991 | */ |
| 992 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 993 | clip_isautosel_plus(void) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 994 | { |
| 995 | return ( |
| 996 | #ifdef FEAT_GUI |
| 997 | gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) : |
| 998 | #endif |
| 999 | clip_autoselect_plus); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1000 | } |
| 1001 | |
| 1002 | |
| 1003 | /* |
| 1004 | * Stuff for general mouse selection, without using Visual mode. |
| 1005 | */ |
| 1006 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1007 | static void clip_invert_area(Clipboard_T *, int, int, int, int, int how); |
| 1008 | static void clip_invert_rectangle(Clipboard_T *, int row, int col, int height, int width, int invert); |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1009 | static void clip_get_word_boundaries(Clipboard_T *, int, int); |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1010 | static int clip_get_line_end(Clipboard_T *, int); |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1011 | static void clip_update_modeless_selection(Clipboard_T *, int, int, int, int); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1012 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1013 | // "how" flags for clip_invert_area() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1014 | #define CLIP_CLEAR 1 |
| 1015 | #define CLIP_SET 2 |
| 1016 | #define CLIP_TOGGLE 3 |
| 1017 | |
| 1018 | /* |
| 1019 | * Start, continue or end a modeless selection. Used when editing the |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 1020 | * command-line, in the cmdline window and when the mouse is in a popup window. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1021 | */ |
| 1022 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1023 | clip_modeless(int button, int is_click, int is_drag) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1024 | { |
| 1025 | int repeat; |
| 1026 | |
| 1027 | repeat = ((clip_star.mode == SELECT_MODE_CHAR |
| 1028 | || clip_star.mode == SELECT_MODE_LINE) |
| 1029 | && (mod_mask & MOD_MASK_2CLICK)) |
| 1030 | || (clip_star.mode == SELECT_MODE_WORD |
| 1031 | && (mod_mask & MOD_MASK_3CLICK)); |
| 1032 | if (is_click && button == MOUSE_RIGHT) |
| 1033 | { |
| 1034 | /* Right mouse button: If there was no selection, start one. |
| 1035 | * Otherwise extend the existing selection. */ |
| 1036 | if (clip_star.state == SELECT_CLEARED) |
| 1037 | clip_start_selection(mouse_col, mouse_row, FALSE); |
| 1038 | clip_process_selection(button, mouse_col, mouse_row, repeat); |
| 1039 | } |
| 1040 | else if (is_click) |
| 1041 | clip_start_selection(mouse_col, mouse_row, repeat); |
| 1042 | else if (is_drag) |
| 1043 | { |
| 1044 | /* Don't try extending a selection if there isn't one. Happens when |
| 1045 | * button-down is in the cmdline and them moving mouse upwards. */ |
| 1046 | if (clip_star.state != SELECT_CLEARED) |
| 1047 | clip_process_selection(button, mouse_col, mouse_row, repeat); |
| 1048 | } |
| 1049 | else /* release */ |
| 1050 | clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE); |
| 1051 | } |
| 1052 | |
| 1053 | /* |
| 1054 | * Compare two screen positions ala strcmp() |
| 1055 | */ |
| 1056 | static int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1057 | clip_compare_pos( |
| 1058 | int row1, |
| 1059 | int col1, |
| 1060 | int row2, |
| 1061 | int col2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1062 | { |
| 1063 | if (row1 > row2) return(1); |
| 1064 | if (row1 < row2) return(-1); |
| 1065 | if (col1 > col2) return(1); |
| 1066 | if (col1 < col2) return(-1); |
Bram Moolenaar | 9e34110 | 2016-02-23 23:04:36 +0100 | [diff] [blame] | 1067 | return(0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1068 | } |
| 1069 | |
| 1070 | /* |
| 1071 | * Start the selection |
| 1072 | */ |
| 1073 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1074 | clip_start_selection(int col, int row, int repeated_click) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1075 | { |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1076 | Clipboard_T *cb = &clip_star; |
Bram Moolenaar | 13b11ed | 2019-08-01 15:52:45 +0200 | [diff] [blame] | 1077 | #ifdef FEAT_TEXT_PROP |
| 1078 | win_T *wp; |
| 1079 | int row_cp = row; |
| 1080 | int col_cp = col; |
| 1081 | |
| 1082 | wp = mouse_find_win(&row_cp, &col_cp, FIND_POPUP); |
| 1083 | if (wp != NULL && WIN_IS_POPUP(wp) |
| 1084 | && popup_is_in_scrollbar(wp, row_cp, col_cp)) |
| 1085 | // click or double click in scrollbar does not start a selection |
| 1086 | return; |
| 1087 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1088 | |
| 1089 | if (cb->state == SELECT_DONE) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1090 | clip_clear_selection(cb); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1091 | |
| 1092 | row = check_row(row); |
| 1093 | col = check_col(col); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1094 | col = mb_fix_col(col, row); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1095 | |
| 1096 | cb->start.lnum = row; |
| 1097 | cb->start.col = col; |
| 1098 | cb->end = cb->start; |
| 1099 | cb->origin_row = (short_u)cb->start.lnum; |
| 1100 | cb->state = SELECT_IN_PROGRESS; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1101 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | 13b11ed | 2019-08-01 15:52:45 +0200 | [diff] [blame] | 1102 | if (wp != NULL && WIN_IS_POPUP(wp)) |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1103 | { |
Bram Moolenaar | 13b11ed | 2019-08-01 15:52:45 +0200 | [diff] [blame] | 1104 | // Click in a popup window restricts selection to that window, |
| 1105 | // excluding the border. |
| 1106 | cb->min_col = wp->w_wincol + wp->w_popup_border[3]; |
Bram Moolenaar | 4dd751b | 2019-08-17 19:10:53 +0200 | [diff] [blame] | 1107 | cb->max_col = wp->w_wincol + popup_width(wp) |
| 1108 | - wp->w_popup_border[1] - wp->w_has_scrollbar; |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1109 | if (cb->max_col > screen_Columns) |
| 1110 | cb->max_col = screen_Columns; |
Bram Moolenaar | 13b11ed | 2019-08-01 15:52:45 +0200 | [diff] [blame] | 1111 | cb->min_row = wp->w_winrow + wp->w_popup_border[0]; |
| 1112 | cb->max_row = wp->w_winrow + popup_height(wp) - 1 |
| 1113 | - wp->w_popup_border[2]; |
| 1114 | } |
| 1115 | else |
| 1116 | { |
| 1117 | cb->min_col = 0; |
| 1118 | cb->max_col = screen_Columns; |
| 1119 | cb->min_row = 0; |
| 1120 | cb->max_row = screen_Rows; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1121 | } |
| 1122 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1123 | |
| 1124 | if (repeated_click) |
| 1125 | { |
| 1126 | if (++cb->mode > SELECT_MODE_LINE) |
| 1127 | cb->mode = SELECT_MODE_CHAR; |
| 1128 | } |
| 1129 | else |
| 1130 | cb->mode = SELECT_MODE_CHAR; |
| 1131 | |
| 1132 | #ifdef FEAT_GUI |
| 1133 | /* clear the cursor until the selection is made */ |
| 1134 | if (gui.in_use) |
| 1135 | gui_undraw_cursor(); |
| 1136 | #endif |
| 1137 | |
| 1138 | switch (cb->mode) |
| 1139 | { |
| 1140 | case SELECT_MODE_CHAR: |
| 1141 | cb->origin_start_col = cb->start.col; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1142 | cb->word_end_col = clip_get_line_end(cb, (int)cb->start.lnum); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1143 | break; |
| 1144 | |
| 1145 | case SELECT_MODE_WORD: |
| 1146 | clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col); |
| 1147 | cb->origin_start_col = cb->word_start_col; |
| 1148 | cb->origin_end_col = cb->word_end_col; |
| 1149 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1150 | clip_invert_area(cb, (int)cb->start.lnum, cb->word_start_col, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1151 | (int)cb->end.lnum, cb->word_end_col, CLIP_SET); |
| 1152 | cb->start.col = cb->word_start_col; |
| 1153 | cb->end.col = cb->word_end_col; |
| 1154 | break; |
| 1155 | |
| 1156 | case SELECT_MODE_LINE: |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1157 | clip_invert_area(cb, (int)cb->start.lnum, 0, (int)cb->start.lnum, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1158 | (int)Columns, CLIP_SET); |
| 1159 | cb->start.col = 0; |
| 1160 | cb->end.col = Columns; |
| 1161 | break; |
| 1162 | } |
| 1163 | |
| 1164 | cb->prev = cb->start; |
| 1165 | |
| 1166 | #ifdef DEBUG_SELECTION |
| 1167 | printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col); |
| 1168 | #endif |
| 1169 | } |
| 1170 | |
| 1171 | /* |
| 1172 | * Continue processing the selection |
| 1173 | */ |
| 1174 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1175 | clip_process_selection( |
| 1176 | int button, |
| 1177 | int col, |
| 1178 | int row, |
| 1179 | int_u repeated_click) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1180 | { |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1181 | Clipboard_T *cb = &clip_star; |
| 1182 | int diff; |
| 1183 | int slen = 1; // cursor shape width |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1184 | |
| 1185 | if (button == MOUSE_RELEASE) |
| 1186 | { |
| 1187 | /* Check to make sure we have something selected */ |
| 1188 | if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col) |
| 1189 | { |
| 1190 | #ifdef FEAT_GUI |
| 1191 | if (gui.in_use) |
| 1192 | gui_update_cursor(FALSE, FALSE); |
| 1193 | #endif |
| 1194 | cb->state = SELECT_CLEARED; |
| 1195 | return; |
| 1196 | } |
| 1197 | |
| 1198 | #ifdef DEBUG_SELECTION |
| 1199 | printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum, |
| 1200 | cb->start.col, cb->end.lnum, cb->end.col); |
| 1201 | #endif |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1202 | if (clip_isautosel_star() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1203 | || ( |
| 1204 | #ifdef FEAT_GUI |
| 1205 | gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) : |
| 1206 | #endif |
| 1207 | clip_autoselectml)) |
| 1208 | clip_copy_modeless_selection(FALSE); |
| 1209 | #ifdef FEAT_GUI |
| 1210 | if (gui.in_use) |
| 1211 | gui_update_cursor(FALSE, FALSE); |
| 1212 | #endif |
| 1213 | |
| 1214 | cb->state = SELECT_DONE; |
| 1215 | return; |
| 1216 | } |
| 1217 | |
| 1218 | row = check_row(row); |
| 1219 | col = check_col(col); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1220 | col = mb_fix_col(col, row); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1221 | |
| 1222 | if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click) |
| 1223 | return; |
| 1224 | |
| 1225 | /* |
| 1226 | * When extending the selection with the right mouse button, swap the |
| 1227 | * start and end if the position is before half the selection |
| 1228 | */ |
| 1229 | if (cb->state == SELECT_DONE && button == MOUSE_RIGHT) |
| 1230 | { |
| 1231 | /* |
| 1232 | * If the click is before the start, or the click is inside the |
| 1233 | * selection and the start is the closest side, set the origin to the |
| 1234 | * end of the selection. |
| 1235 | */ |
| 1236 | if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0 |
| 1237 | || (clip_compare_pos(row, col, |
| 1238 | (int)cb->end.lnum, cb->end.col) < 0 |
| 1239 | && (((cb->start.lnum == cb->end.lnum |
| 1240 | && cb->end.col - col > col - cb->start.col)) |
| 1241 | || ((diff = (cb->end.lnum - row) - |
| 1242 | (row - cb->start.lnum)) > 0 |
| 1243 | || (diff == 0 && col < (int)(cb->start.col + |
| 1244 | cb->end.col) / 2))))) |
| 1245 | { |
| 1246 | cb->origin_row = (short_u)cb->end.lnum; |
| 1247 | cb->origin_start_col = cb->end.col - 1; |
| 1248 | cb->origin_end_col = cb->end.col; |
| 1249 | } |
| 1250 | else |
| 1251 | { |
| 1252 | cb->origin_row = (short_u)cb->start.lnum; |
| 1253 | cb->origin_start_col = cb->start.col; |
| 1254 | cb->origin_end_col = cb->start.col; |
| 1255 | } |
| 1256 | if (cb->mode == SELECT_MODE_WORD && !repeated_click) |
| 1257 | cb->mode = SELECT_MODE_CHAR; |
| 1258 | } |
| 1259 | |
| 1260 | /* set state, for when using the right mouse button */ |
| 1261 | cb->state = SELECT_IN_PROGRESS; |
| 1262 | |
| 1263 | #ifdef DEBUG_SELECTION |
| 1264 | printf("Selection extending to (%d,%d)\n", row, col); |
| 1265 | #endif |
| 1266 | |
| 1267 | if (repeated_click && ++cb->mode > SELECT_MODE_LINE) |
| 1268 | cb->mode = SELECT_MODE_CHAR; |
| 1269 | |
| 1270 | switch (cb->mode) |
| 1271 | { |
| 1272 | case SELECT_MODE_CHAR: |
| 1273 | /* If we're on a different line, find where the line ends */ |
| 1274 | if (row != cb->prev.lnum) |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1275 | cb->word_end_col = clip_get_line_end(cb, row); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1276 | |
| 1277 | /* See if we are before or after the origin of the selection */ |
| 1278 | if (clip_compare_pos(row, col, cb->origin_row, |
| 1279 | cb->origin_start_col) >= 0) |
| 1280 | { |
| 1281 | if (col >= (int)cb->word_end_col) |
| 1282 | clip_update_modeless_selection(cb, cb->origin_row, |
| 1283 | cb->origin_start_col, row, (int)Columns); |
| 1284 | else |
| 1285 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1286 | if (has_mbyte && mb_lefthalve(row, col)) |
| 1287 | slen = 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1288 | clip_update_modeless_selection(cb, cb->origin_row, |
| 1289 | cb->origin_start_col, row, col + slen); |
| 1290 | } |
| 1291 | } |
| 1292 | else |
| 1293 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1294 | if (has_mbyte |
| 1295 | && mb_lefthalve(cb->origin_row, cb->origin_start_col)) |
| 1296 | slen = 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1297 | if (col >= (int)cb->word_end_col) |
| 1298 | clip_update_modeless_selection(cb, row, cb->word_end_col, |
| 1299 | cb->origin_row, cb->origin_start_col + slen); |
| 1300 | else |
| 1301 | clip_update_modeless_selection(cb, row, col, |
| 1302 | cb->origin_row, cb->origin_start_col + slen); |
| 1303 | } |
| 1304 | break; |
| 1305 | |
| 1306 | case SELECT_MODE_WORD: |
| 1307 | /* If we are still within the same word, do nothing */ |
| 1308 | if (row == cb->prev.lnum && col >= (int)cb->word_start_col |
| 1309 | && col < (int)cb->word_end_col && !repeated_click) |
| 1310 | return; |
| 1311 | |
| 1312 | /* Get new word boundaries */ |
| 1313 | clip_get_word_boundaries(cb, row, col); |
| 1314 | |
| 1315 | /* Handle being after the origin point of selection */ |
| 1316 | if (clip_compare_pos(row, col, cb->origin_row, |
| 1317 | cb->origin_start_col) >= 0) |
| 1318 | clip_update_modeless_selection(cb, cb->origin_row, |
| 1319 | cb->origin_start_col, row, cb->word_end_col); |
| 1320 | else |
| 1321 | clip_update_modeless_selection(cb, row, cb->word_start_col, |
| 1322 | cb->origin_row, cb->origin_end_col); |
| 1323 | break; |
| 1324 | |
| 1325 | case SELECT_MODE_LINE: |
| 1326 | if (row == cb->prev.lnum && !repeated_click) |
| 1327 | return; |
| 1328 | |
| 1329 | if (clip_compare_pos(row, col, cb->origin_row, |
| 1330 | cb->origin_start_col) >= 0) |
| 1331 | clip_update_modeless_selection(cb, cb->origin_row, 0, row, |
| 1332 | (int)Columns); |
| 1333 | else |
| 1334 | clip_update_modeless_selection(cb, row, 0, cb->origin_row, |
| 1335 | (int)Columns); |
| 1336 | break; |
| 1337 | } |
| 1338 | |
| 1339 | cb->prev.lnum = row; |
| 1340 | cb->prev.col = col; |
| 1341 | |
| 1342 | #ifdef DEBUG_SELECTION |
| 1343 | printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum, |
| 1344 | cb->start.col, cb->end.lnum, cb->end.col); |
| 1345 | #endif |
| 1346 | } |
| 1347 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1348 | # if defined(FEAT_GUI) || defined(PROTO) |
| 1349 | /* |
| 1350 | * Redraw part of the selection if character at "row,col" is inside of it. |
| 1351 | * Only used for the GUI. |
| 1352 | */ |
| 1353 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1354 | clip_may_redraw_selection(int row, int col, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1355 | { |
| 1356 | int start = col; |
| 1357 | int end = col + len; |
| 1358 | |
| 1359 | if (clip_star.state != SELECT_CLEARED |
| 1360 | && row >= clip_star.start.lnum |
| 1361 | && row <= clip_star.end.lnum) |
| 1362 | { |
| 1363 | if (row == clip_star.start.lnum && start < (int)clip_star.start.col) |
| 1364 | start = clip_star.start.col; |
| 1365 | if (row == clip_star.end.lnum && end > (int)clip_star.end.col) |
| 1366 | end = clip_star.end.col; |
| 1367 | if (end > start) |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1368 | clip_invert_area(&clip_star, row, start, row, end, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1369 | } |
| 1370 | } |
| 1371 | # endif |
| 1372 | |
| 1373 | /* |
| 1374 | * Called from outside to clear selected region from the display |
| 1375 | */ |
| 1376 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1377 | clip_clear_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1378 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1379 | |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1380 | if (cbd->state == SELECT_CLEARED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1381 | return; |
| 1382 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1383 | clip_invert_area(cbd, (int)cbd->start.lnum, cbd->start.col, |
| 1384 | (int)cbd->end.lnum, cbd->end.col, CLIP_CLEAR); |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1385 | cbd->state = SELECT_CLEARED; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1386 | } |
| 1387 | |
| 1388 | /* |
| 1389 | * Clear the selection if any lines from "row1" to "row2" are inside of it. |
| 1390 | */ |
| 1391 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1392 | clip_may_clear_selection(int row1, int row2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1393 | { |
| 1394 | if (clip_star.state == SELECT_DONE |
| 1395 | && row2 >= clip_star.start.lnum |
| 1396 | && row1 <= clip_star.end.lnum) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1397 | clip_clear_selection(&clip_star); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1398 | } |
| 1399 | |
| 1400 | /* |
| 1401 | * Called before the screen is scrolled up or down. Adjusts the line numbers |
| 1402 | * of the selection. Call with big number when clearing the screen. |
| 1403 | */ |
| 1404 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1405 | clip_scroll_selection( |
| 1406 | int rows) /* negative for scroll down */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1407 | { |
| 1408 | int lnum; |
| 1409 | |
| 1410 | if (clip_star.state == SELECT_CLEARED) |
| 1411 | return; |
| 1412 | |
| 1413 | lnum = clip_star.start.lnum - rows; |
| 1414 | if (lnum <= 0) |
| 1415 | clip_star.start.lnum = 0; |
| 1416 | else if (lnum >= screen_Rows) /* scrolled off of the screen */ |
| 1417 | clip_star.state = SELECT_CLEARED; |
| 1418 | else |
| 1419 | clip_star.start.lnum = lnum; |
| 1420 | |
| 1421 | lnum = clip_star.end.lnum - rows; |
| 1422 | if (lnum < 0) /* scrolled off of the screen */ |
| 1423 | clip_star.state = SELECT_CLEARED; |
| 1424 | else if (lnum >= screen_Rows) |
| 1425 | clip_star.end.lnum = screen_Rows - 1; |
| 1426 | else |
| 1427 | clip_star.end.lnum = lnum; |
| 1428 | } |
| 1429 | |
| 1430 | /* |
| 1431 | * Invert a region of the display between a starting and ending row and column |
| 1432 | * Values for "how": |
| 1433 | * CLIP_CLEAR: undo inversion |
| 1434 | * CLIP_SET: set inversion |
| 1435 | * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise. |
| 1436 | * 0: invert (GUI only). |
| 1437 | */ |
| 1438 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1439 | clip_invert_area( |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1440 | Clipboard_T *cbd, |
| 1441 | int row1, |
| 1442 | int col1, |
| 1443 | int row2, |
| 1444 | int col2, |
| 1445 | int how) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1446 | { |
| 1447 | int invert = FALSE; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1448 | int max_col; |
| 1449 | |
| 1450 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1451 | max_col = cbd->max_col - 1; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1452 | #else |
| 1453 | max_col = Columns - 1; |
| 1454 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1455 | |
| 1456 | if (how == CLIP_SET) |
| 1457 | invert = TRUE; |
| 1458 | |
| 1459 | /* Swap the from and to positions so the from is always before */ |
| 1460 | if (clip_compare_pos(row1, col1, row2, col2) > 0) |
| 1461 | { |
| 1462 | int tmp_row, tmp_col; |
| 1463 | |
| 1464 | tmp_row = row1; |
| 1465 | tmp_col = col1; |
| 1466 | row1 = row2; |
| 1467 | col1 = col2; |
| 1468 | row2 = tmp_row; |
| 1469 | col2 = tmp_col; |
| 1470 | } |
| 1471 | else if (how == CLIP_TOGGLE) |
| 1472 | invert = TRUE; |
| 1473 | |
| 1474 | /* If all on the same line, do it the easy way */ |
| 1475 | if (row1 == row2) |
| 1476 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1477 | clip_invert_rectangle(cbd, row1, col1, 1, col2 - col1, invert); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1478 | } |
| 1479 | else |
| 1480 | { |
| 1481 | /* Handle a piece of the first line */ |
| 1482 | if (col1 > 0) |
| 1483 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1484 | clip_invert_rectangle(cbd, row1, col1, 1, |
| 1485 | (int)Columns - col1, invert); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1486 | row1++; |
| 1487 | } |
| 1488 | |
| 1489 | /* Handle a piece of the last line */ |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1490 | if (col2 < max_col) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1491 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1492 | clip_invert_rectangle(cbd, row2, 0, 1, col2, invert); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1493 | row2--; |
| 1494 | } |
| 1495 | |
| 1496 | /* Handle the rectangle thats left */ |
| 1497 | if (row2 >= row1) |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1498 | clip_invert_rectangle(cbd, row1, 0, row2 - row1 + 1, |
| 1499 | (int)Columns, invert); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1500 | } |
| 1501 | } |
| 1502 | |
| 1503 | /* |
| 1504 | * Invert or un-invert a rectangle of the screen. |
| 1505 | * "invert" is true if the result is inverted. |
| 1506 | */ |
| 1507 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1508 | clip_invert_rectangle( |
Bram Moolenaar | 405bb42 | 2019-06-21 00:12:29 +0200 | [diff] [blame] | 1509 | Clipboard_T *cbd UNUSED, |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1510 | int row_arg, |
| 1511 | int col_arg, |
| 1512 | int height_arg, |
| 1513 | int width_arg, |
| 1514 | int invert) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1515 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1516 | int row = row_arg; |
| 1517 | int col = col_arg; |
| 1518 | int height = height_arg; |
| 1519 | int width = width_arg; |
| 1520 | |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 1521 | #ifdef FEAT_TEXT_PROP |
| 1522 | // this goes on top of all popup windows |
Bram Moolenaar | c662ec9 | 2019-06-23 00:15:57 +0200 | [diff] [blame] | 1523 | screen_zindex = CLIP_ZINDEX; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1524 | |
| 1525 | if (col < cbd->min_col) |
| 1526 | { |
| 1527 | width -= cbd->min_col - col; |
| 1528 | col = cbd->min_col; |
| 1529 | } |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1530 | if (width > cbd->max_col - col) |
| 1531 | width = cbd->max_col - col; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1532 | if (row < cbd->min_row) |
| 1533 | { |
| 1534 | height -= cbd->min_row - row; |
| 1535 | row = cbd->min_row; |
| 1536 | } |
| 1537 | if (height > cbd->max_row - row + 1) |
| 1538 | height = cbd->max_row - row + 1; |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 1539 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1540 | #ifdef FEAT_GUI |
| 1541 | if (gui.in_use) |
| 1542 | gui_mch_invert_rectangle(row, col, height, width); |
| 1543 | else |
| 1544 | #endif |
| 1545 | screen_draw_rectangle(row, col, height, width, invert); |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 1546 | #ifdef FEAT_TEXT_PROP |
| 1547 | screen_zindex = 0; |
| 1548 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1549 | } |
| 1550 | |
| 1551 | /* |
| 1552 | * Copy the currently selected area into the '*' register so it will be |
| 1553 | * available for pasting. |
| 1554 | * When "both" is TRUE also copy to the '+' register. |
| 1555 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1556 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1557 | clip_copy_modeless_selection(int both UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1558 | { |
| 1559 | char_u *buffer; |
| 1560 | char_u *bufp; |
| 1561 | int row; |
| 1562 | int start_col; |
| 1563 | int end_col; |
| 1564 | int line_end_col; |
| 1565 | int add_newline_flag = FALSE; |
| 1566 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1567 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1568 | int row1 = clip_star.start.lnum; |
| 1569 | int col1 = clip_star.start.col; |
| 1570 | int row2 = clip_star.end.lnum; |
| 1571 | int col2 = clip_star.end.col; |
| 1572 | |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 1573 | /* Can't use ScreenLines unless initialized */ |
| 1574 | if (ScreenLines == NULL) |
| 1575 | return; |
| 1576 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1577 | /* |
| 1578 | * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2. |
| 1579 | */ |
| 1580 | if (row1 > row2) |
| 1581 | { |
| 1582 | row = row1; row1 = row2; row2 = row; |
| 1583 | row = col1; col1 = col2; col2 = row; |
| 1584 | } |
| 1585 | else if (row1 == row2 && col1 > col2) |
| 1586 | { |
| 1587 | row = col1; col1 = col2; col2 = row; |
| 1588 | } |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1589 | #ifdef FEAT_TEXT_PROP |
| 1590 | if (col1 < clip_star.min_col) |
| 1591 | col1 = clip_star.min_col; |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1592 | if (col2 > clip_star.max_col) |
| 1593 | col2 = clip_star.max_col; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1594 | if (row1 < clip_star.min_row) |
| 1595 | row1 = clip_star.min_row; |
| 1596 | if (row2 > clip_star.max_row) |
| 1597 | row2 = clip_star.max_row; |
| 1598 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1599 | /* correct starting point for being on right halve of double-wide char */ |
| 1600 | p = ScreenLines + LineOffset[row1]; |
| 1601 | if (enc_dbcs != 0) |
| 1602 | col1 -= (*mb_head_off)(p, p + col1); |
| 1603 | else if (enc_utf8 && p[col1] == 0) |
| 1604 | --col1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1605 | |
| 1606 | /* Create a temporary buffer for storing the text */ |
| 1607 | len = (row2 - row1 + 1) * Columns + 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1608 | if (enc_dbcs != 0) |
| 1609 | len *= 2; /* max. 2 bytes per display cell */ |
| 1610 | else if (enc_utf8) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1611 | len *= MB_MAXBYTES; |
Bram Moolenaar | 18a4ba2 | 2019-05-24 19:39:03 +0200 | [diff] [blame] | 1612 | buffer = alloc(len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1613 | if (buffer == NULL) /* out of memory */ |
| 1614 | return; |
| 1615 | |
| 1616 | /* Process each row in the selection */ |
| 1617 | for (bufp = buffer, row = row1; row <= row2; row++) |
| 1618 | { |
| 1619 | if (row == row1) |
| 1620 | start_col = col1; |
| 1621 | else |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1622 | #ifdef FEAT_TEXT_PROP |
| 1623 | start_col = clip_star.min_col; |
| 1624 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1625 | start_col = 0; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1626 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1627 | |
| 1628 | if (row == row2) |
| 1629 | end_col = col2; |
Bram Moolenaar | d5cf898 | 2019-08-16 23:09:11 +0200 | [diff] [blame] | 1630 | else |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1631 | #ifdef FEAT_TEXT_PROP |
| 1632 | end_col = clip_star.max_col; |
| 1633 | #else |
Bram Moolenaar | d5cf898 | 2019-08-16 23:09:11 +0200 | [diff] [blame] | 1634 | end_col = Columns; |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1635 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1636 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1637 | line_end_col = clip_get_line_end(&clip_star, row); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1638 | |
| 1639 | /* See if we need to nuke some trailing whitespace */ |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1640 | if (end_col >= |
| 1641 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1642 | clip_star.max_col |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1643 | #else |
| 1644 | Columns |
| 1645 | #endif |
| 1646 | && (row < row2 || end_col > line_end_col)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1647 | { |
| 1648 | /* Get rid of trailing whitespace */ |
| 1649 | end_col = line_end_col; |
| 1650 | if (end_col < start_col) |
| 1651 | end_col = start_col; |
| 1652 | |
| 1653 | /* If the last line extended to the end, add an extra newline */ |
| 1654 | if (row == row2) |
| 1655 | add_newline_flag = TRUE; |
| 1656 | } |
| 1657 | |
| 1658 | /* If after the first row, we need to always add a newline */ |
| 1659 | if (row > row1 && !LineWraps[row - 1]) |
| 1660 | *bufp++ = NL; |
| 1661 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1662 | // Safetey check for in case resizing went wrong |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1663 | if (row < screen_Rows && end_col <= screen_Columns) |
| 1664 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1665 | if (enc_dbcs != 0) |
| 1666 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 1667 | int i; |
| 1668 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1669 | p = ScreenLines + LineOffset[row]; |
| 1670 | for (i = start_col; i < end_col; ++i) |
| 1671 | if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e) |
| 1672 | { |
| 1673 | /* single-width double-byte char */ |
| 1674 | *bufp++ = 0x8e; |
| 1675 | *bufp++ = ScreenLines2[LineOffset[row] + i]; |
| 1676 | } |
| 1677 | else |
| 1678 | { |
| 1679 | *bufp++ = p[i]; |
| 1680 | if (MB_BYTE2LEN(p[i]) == 2) |
| 1681 | *bufp++ = p[++i]; |
| 1682 | } |
| 1683 | } |
| 1684 | else if (enc_utf8) |
| 1685 | { |
| 1686 | int off; |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1687 | int i; |
Bram Moolenaar | 34e9e2f | 2006-03-14 23:07:19 +0000 | [diff] [blame] | 1688 | int ci; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1689 | |
| 1690 | off = LineOffset[row]; |
| 1691 | for (i = start_col; i < end_col; ++i) |
| 1692 | { |
| 1693 | /* The base character is either in ScreenLinesUC[] or |
| 1694 | * ScreenLines[]. */ |
| 1695 | if (ScreenLinesUC[off + i] == 0) |
| 1696 | *bufp++ = ScreenLines[off + i]; |
| 1697 | else |
| 1698 | { |
| 1699 | bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp); |
Bram Moolenaar | 34e9e2f | 2006-03-14 23:07:19 +0000 | [diff] [blame] | 1700 | for (ci = 0; ci < Screen_mco; ++ci) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1701 | { |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1702 | /* Add a composing character. */ |
Bram Moolenaar | 34e9e2f | 2006-03-14 23:07:19 +0000 | [diff] [blame] | 1703 | if (ScreenLinesC[ci][off + i] == 0) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1704 | break; |
Bram Moolenaar | 34e9e2f | 2006-03-14 23:07:19 +0000 | [diff] [blame] | 1705 | bufp += utf_char2bytes(ScreenLinesC[ci][off + i], |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1706 | bufp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1707 | } |
| 1708 | } |
| 1709 | /* Skip right halve of double-wide character. */ |
| 1710 | if (ScreenLines[off + i + 1] == 0) |
| 1711 | ++i; |
| 1712 | } |
| 1713 | } |
| 1714 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1715 | { |
| 1716 | STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col, |
| 1717 | end_col - start_col); |
| 1718 | bufp += end_col - start_col; |
| 1719 | } |
| 1720 | } |
| 1721 | } |
| 1722 | |
| 1723 | /* Add a newline at the end if the selection ended there */ |
| 1724 | if (add_newline_flag) |
| 1725 | *bufp++ = NL; |
| 1726 | |
| 1727 | /* First cleanup any old selection and become the owner. */ |
| 1728 | clip_free_selection(&clip_star); |
| 1729 | clip_own_selection(&clip_star); |
| 1730 | |
| 1731 | /* Yank the text into the '*' register. */ |
| 1732 | clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star); |
| 1733 | |
| 1734 | /* Make the register contents available to the outside world. */ |
| 1735 | clip_gen_set_selection(&clip_star); |
| 1736 | |
| 1737 | #ifdef FEAT_X11 |
| 1738 | if (both) |
| 1739 | { |
| 1740 | /* Do the same for the '+' register. */ |
| 1741 | clip_free_selection(&clip_plus); |
| 1742 | clip_own_selection(&clip_plus); |
| 1743 | clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus); |
| 1744 | clip_gen_set_selection(&clip_plus); |
| 1745 | } |
| 1746 | #endif |
| 1747 | vim_free(buffer); |
| 1748 | } |
| 1749 | |
| 1750 | /* |
| 1751 | * Find the starting and ending positions of the word at the given row and |
| 1752 | * column. Only white-separated words are recognized here. |
| 1753 | */ |
| 1754 | #define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c)) |
| 1755 | |
| 1756 | static void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1757 | clip_get_word_boundaries(Clipboard_T *cb, int row, int col) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1758 | { |
| 1759 | int start_class; |
| 1760 | int temp_col; |
| 1761 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1762 | int mboff; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1763 | |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 1764 | if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1765 | return; |
| 1766 | |
| 1767 | p = ScreenLines + LineOffset[row]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1768 | /* Correct for starting in the right halve of a double-wide char */ |
| 1769 | if (enc_dbcs != 0) |
| 1770 | col -= dbcs_screen_head_off(p, p + col); |
| 1771 | else if (enc_utf8 && p[col] == 0) |
| 1772 | --col; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1773 | start_class = CHAR_CLASS(p[col]); |
| 1774 | |
| 1775 | temp_col = col; |
| 1776 | for ( ; temp_col > 0; temp_col--) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1777 | if (enc_dbcs != 0 |
| 1778 | && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0) |
| 1779 | temp_col -= mboff; |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 1780 | else if (CHAR_CLASS(p[temp_col - 1]) != start_class |
| 1781 | && !(enc_utf8 && p[temp_col - 1] == 0)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1782 | break; |
| 1783 | cb->word_start_col = temp_col; |
| 1784 | |
| 1785 | temp_col = col; |
| 1786 | for ( ; temp_col < screen_Columns; temp_col++) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1787 | if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2) |
| 1788 | ++temp_col; |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 1789 | else if (CHAR_CLASS(p[temp_col]) != start_class |
| 1790 | && !(enc_utf8 && p[temp_col] == 0)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1791 | break; |
| 1792 | cb->word_end_col = temp_col; |
| 1793 | } |
| 1794 | |
| 1795 | /* |
| 1796 | * Find the column position for the last non-whitespace character on the given |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1797 | * line at or before start_col. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1798 | */ |
| 1799 | static int |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1800 | clip_get_line_end(Clipboard_T *cbd UNUSED, int row) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1801 | { |
| 1802 | int i; |
| 1803 | |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 1804 | if (row >= screen_Rows || ScreenLines == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1805 | return 0; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1806 | for (i = |
| 1807 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1808 | cbd->max_col; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1809 | #else |
| 1810 | screen_Columns; |
| 1811 | #endif |
| 1812 | i > 0; i--) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1813 | if (ScreenLines[LineOffset[row] + i - 1] != ' ') |
| 1814 | break; |
| 1815 | return i; |
| 1816 | } |
| 1817 | |
| 1818 | /* |
| 1819 | * Update the currently selected region by adding and/or subtracting from the |
| 1820 | * beginning or end and inverting the changed area(s). |
| 1821 | */ |
| 1822 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1823 | clip_update_modeless_selection( |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1824 | Clipboard_T *cb, |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1825 | int row1, |
| 1826 | int col1, |
| 1827 | int row2, |
| 1828 | int col2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1829 | { |
| 1830 | /* See if we changed at the beginning of the selection */ |
| 1831 | if (row1 != cb->start.lnum || col1 != (int)cb->start.col) |
| 1832 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1833 | clip_invert_area(cb, row1, col1, (int)cb->start.lnum, cb->start.col, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1834 | CLIP_TOGGLE); |
| 1835 | cb->start.lnum = row1; |
| 1836 | cb->start.col = col1; |
| 1837 | } |
| 1838 | |
| 1839 | /* See if we changed at the end of the selection */ |
| 1840 | if (row2 != cb->end.lnum || col2 != (int)cb->end.col) |
| 1841 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1842 | clip_invert_area(cb, (int)cb->end.lnum, cb->end.col, row2, col2, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1843 | CLIP_TOGGLE); |
| 1844 | cb->end.lnum = row2; |
| 1845 | cb->end.col = col2; |
| 1846 | } |
| 1847 | } |
| 1848 | |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 1849 | static int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1850 | clip_gen_own_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1851 | { |
| 1852 | #ifdef FEAT_XCLIPBOARD |
| 1853 | # ifdef FEAT_GUI |
| 1854 | if (gui.in_use) |
| 1855 | return clip_mch_own_selection(cbd); |
| 1856 | else |
| 1857 | # endif |
| 1858 | return clip_xterm_own_selection(cbd); |
| 1859 | #else |
| 1860 | return clip_mch_own_selection(cbd); |
| 1861 | #endif |
| 1862 | } |
| 1863 | |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 1864 | static void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1865 | clip_gen_lose_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1866 | { |
| 1867 | #ifdef FEAT_XCLIPBOARD |
| 1868 | # ifdef FEAT_GUI |
| 1869 | if (gui.in_use) |
| 1870 | clip_mch_lose_selection(cbd); |
| 1871 | else |
| 1872 | # endif |
| 1873 | clip_xterm_lose_selection(cbd); |
| 1874 | #else |
| 1875 | clip_mch_lose_selection(cbd); |
| 1876 | #endif |
| 1877 | } |
| 1878 | |
| 1879 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1880 | clip_gen_set_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1881 | { |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 1882 | if (!clip_did_set_selection) |
| 1883 | { |
| 1884 | /* Updating postponed, so that accessing the system clipboard won't |
Bram Moolenaar | bdace83 | 2019-03-02 10:13:42 +0100 | [diff] [blame] | 1885 | * hang Vim when accessing it many times (e.g. on a :g command). */ |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 1886 | if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS)) |
| 1887 | || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED))) |
| 1888 | { |
| 1889 | clipboard_needs_update = TRUE; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 1890 | return; |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 1891 | } |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 1892 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1893 | #ifdef FEAT_XCLIPBOARD |
| 1894 | # ifdef FEAT_GUI |
| 1895 | if (gui.in_use) |
| 1896 | clip_mch_set_selection(cbd); |
| 1897 | else |
| 1898 | # endif |
| 1899 | clip_xterm_set_selection(cbd); |
| 1900 | #else |
| 1901 | clip_mch_set_selection(cbd); |
| 1902 | #endif |
| 1903 | } |
| 1904 | |
| 1905 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1906 | clip_gen_request_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1907 | { |
| 1908 | #ifdef FEAT_XCLIPBOARD |
| 1909 | # ifdef FEAT_GUI |
| 1910 | if (gui.in_use) |
| 1911 | clip_mch_request_selection(cbd); |
| 1912 | else |
| 1913 | # endif |
| 1914 | clip_xterm_request_selection(cbd); |
| 1915 | #else |
| 1916 | clip_mch_request_selection(cbd); |
| 1917 | #endif |
| 1918 | } |
| 1919 | |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 1920 | #if (defined(FEAT_X11) && defined(USE_SYSTEM)) || defined(PROTO) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1921 | int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1922 | clip_gen_owner_exists(Clipboard_T *cbd UNUSED) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1923 | { |
| 1924 | #ifdef FEAT_XCLIPBOARD |
| 1925 | # ifdef FEAT_GUI_GTK |
| 1926 | if (gui.in_use) |
| 1927 | return clip_gtk_owner_exists(cbd); |
| 1928 | else |
| 1929 | # endif |
| 1930 | return clip_x11_owner_exists(cbd); |
Bram Moolenaar | 690ae9c | 2013-07-13 20:58:11 +0200 | [diff] [blame] | 1931 | #else |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1932 | return TRUE; |
Bram Moolenaar | 690ae9c | 2013-07-13 20:58:11 +0200 | [diff] [blame] | 1933 | #endif |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1934 | } |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 1935 | #endif |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1936 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1937 | #endif /* FEAT_CLIPBOARD */ |
| 1938 | |
| 1939 | /***************************************************************************** |
| 1940 | * Functions that handle the input buffer. |
| 1941 | * This is used for any GUI version, and the unix terminal version. |
| 1942 | * |
| 1943 | * For Unix, the input characters are buffered to be able to check for a |
| 1944 | * CTRL-C. This should be done with signals, but I don't know how to do that |
| 1945 | * in a portable way for a tty in RAW mode. |
| 1946 | * |
| 1947 | * For the client-server code in the console the received keys are put in the |
| 1948 | * input buffer. |
| 1949 | */ |
| 1950 | |
| 1951 | #if defined(USE_INPUT_BUF) || defined(PROTO) |
| 1952 | |
| 1953 | /* |
| 1954 | * Internal typeahead buffer. Includes extra space for long key code |
| 1955 | * descriptions which would otherwise overflow. The buffer is considered full |
| 1956 | * when only this extra space (or part of it) remains. |
| 1957 | */ |
Bram Moolenaar | bb1969b | 2019-01-17 15:45:25 +0100 | [diff] [blame] | 1958 | #if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1959 | /* |
Bram Moolenaar | bb1969b | 2019-01-17 15:45:25 +0100 | [diff] [blame] | 1960 | * NetBeans stuffs debugger commands into the input buffer. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1961 | * This requires a larger buffer... |
| 1962 | * (Madsen) Go with this for remote input as well ... |
| 1963 | */ |
| 1964 | # define INBUFLEN 4096 |
| 1965 | #else |
| 1966 | # define INBUFLEN 250 |
| 1967 | #endif |
| 1968 | |
| 1969 | static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN]; |
| 1970 | static int inbufcount = 0; /* number of chars in inbuf[] */ |
| 1971 | |
| 1972 | /* |
| 1973 | * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and |
| 1974 | * trash_input_buf() are functions for manipulating the input buffer. These |
| 1975 | * are used by the gui_* calls when a GUI is used to handle keyboard input. |
| 1976 | */ |
| 1977 | |
| 1978 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1979 | vim_is_input_buf_full(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1980 | { |
| 1981 | return (inbufcount >= INBUFLEN); |
| 1982 | } |
| 1983 | |
| 1984 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1985 | vim_is_input_buf_empty(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1986 | { |
| 1987 | return (inbufcount == 0); |
| 1988 | } |
| 1989 | |
| 1990 | #if defined(FEAT_OLE) || defined(PROTO) |
| 1991 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1992 | vim_free_in_input_buf(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1993 | { |
| 1994 | return (INBUFLEN - inbufcount); |
| 1995 | } |
| 1996 | #endif |
| 1997 | |
Bram Moolenaar | 241a8aa | 2005-12-06 20:04:44 +0000 | [diff] [blame] | 1998 | #if defined(FEAT_GUI_GTK) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1999 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2000 | vim_used_in_input_buf(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2001 | { |
| 2002 | return inbufcount; |
| 2003 | } |
| 2004 | #endif |
| 2005 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2006 | /* |
| 2007 | * Return the current contents of the input buffer and make it empty. |
| 2008 | * The returned pointer must be passed to set_input_buf() later. |
| 2009 | */ |
| 2010 | char_u * |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2011 | get_input_buf(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2012 | { |
| 2013 | garray_T *gap; |
| 2014 | |
| 2015 | /* We use a growarray to store the data pointer and the length. */ |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 2016 | gap = ALLOC_ONE(garray_T); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2017 | if (gap != NULL) |
| 2018 | { |
| 2019 | /* Add one to avoid a zero size. */ |
Bram Moolenaar | 18a4ba2 | 2019-05-24 19:39:03 +0200 | [diff] [blame] | 2020 | gap->ga_data = alloc(inbufcount + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2021 | if (gap->ga_data != NULL) |
| 2022 | mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount); |
| 2023 | gap->ga_len = inbufcount; |
| 2024 | } |
| 2025 | trash_input_buf(); |
| 2026 | return (char_u *)gap; |
| 2027 | } |
| 2028 | |
| 2029 | /* |
| 2030 | * Restore the input buffer with a pointer returned from get_input_buf(). |
| 2031 | * The allocated memory is freed, this only works once! |
| 2032 | */ |
| 2033 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2034 | set_input_buf(char_u *p) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2035 | { |
| 2036 | garray_T *gap = (garray_T *)p; |
| 2037 | |
| 2038 | if (gap != NULL) |
| 2039 | { |
| 2040 | if (gap->ga_data != NULL) |
| 2041 | { |
| 2042 | mch_memmove(inbuf, gap->ga_data, gap->ga_len); |
| 2043 | inbufcount = gap->ga_len; |
| 2044 | vim_free(gap->ga_data); |
| 2045 | } |
| 2046 | vim_free(gap); |
| 2047 | } |
| 2048 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2049 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2050 | /* |
| 2051 | * Add the given bytes to the input buffer |
| 2052 | * Special keys start with CSI. A real CSI must have been translated to |
| 2053 | * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation. |
| 2054 | */ |
| 2055 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2056 | add_to_input_buf(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2057 | { |
| 2058 | if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN) |
| 2059 | return; /* Shouldn't ever happen! */ |
| 2060 | |
| 2061 | #ifdef FEAT_HANGULIN |
| 2062 | if ((State & (INSERT|CMDLINE)) && hangul_input_state_get()) |
| 2063 | if ((len = hangul_input_process(s, len)) == 0) |
| 2064 | return; |
| 2065 | #endif |
| 2066 | |
| 2067 | while (len--) |
| 2068 | inbuf[inbufcount++] = *s++; |
| 2069 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2070 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2071 | /* |
| 2072 | * Add "str[len]" to the input buffer while escaping CSI bytes. |
| 2073 | */ |
| 2074 | void |
| 2075 | add_to_input_buf_csi(char_u *str, int len) |
| 2076 | { |
| 2077 | int i; |
| 2078 | char_u buf[2]; |
| 2079 | |
| 2080 | for (i = 0; i < len; ++i) |
| 2081 | { |
| 2082 | add_to_input_buf(str + i, 1); |
| 2083 | if (str[i] == CSI) |
| 2084 | { |
| 2085 | /* Turn CSI into K_CSI. */ |
| 2086 | buf[0] = KS_EXTRA; |
| 2087 | buf[1] = (int)KE_CSI; |
| 2088 | add_to_input_buf(buf, 2); |
| 2089 | } |
| 2090 | } |
| 2091 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2092 | |
| 2093 | #if defined(FEAT_HANGULIN) || defined(PROTO) |
| 2094 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2095 | push_raw_key(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2096 | { |
Bram Moolenaar | 72f4cc4 | 2015-11-10 14:35:18 +0100 | [diff] [blame] | 2097 | char_u *tmpbuf; |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2098 | char_u *inp = s; |
Bram Moolenaar | 72f4cc4 | 2015-11-10 14:35:18 +0100 | [diff] [blame] | 2099 | |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2100 | /* use the conversion result if possible */ |
Bram Moolenaar | 72f4cc4 | 2015-11-10 14:35:18 +0100 | [diff] [blame] | 2101 | tmpbuf = hangul_string_convert(s, &len); |
| 2102 | if (tmpbuf != NULL) |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2103 | inp = tmpbuf; |
Bram Moolenaar | 72f4cc4 | 2015-11-10 14:35:18 +0100 | [diff] [blame] | 2104 | |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2105 | for (; len--; inp++) |
| 2106 | { |
| 2107 | inbuf[inbufcount++] = *inp; |
| 2108 | if (*inp == CSI) |
Bram Moolenaar | 00ded43 | 2016-03-03 11:45:15 +0100 | [diff] [blame] | 2109 | { |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2110 | /* Turn CSI into K_CSI. */ |
| 2111 | inbuf[inbufcount++] = KS_EXTRA; |
| 2112 | inbuf[inbufcount++] = (int)KE_CSI; |
Bram Moolenaar | 00ded43 | 2016-03-03 11:45:15 +0100 | [diff] [blame] | 2113 | } |
Bram Moolenaar | 00ded43 | 2016-03-03 11:45:15 +0100 | [diff] [blame] | 2114 | } |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2115 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2116 | } |
| 2117 | #endif |
| 2118 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2119 | /* Remove everything from the input buffer. Called when ^C is found */ |
| 2120 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2121 | trash_input_buf(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2122 | { |
| 2123 | inbufcount = 0; |
| 2124 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2125 | |
| 2126 | /* |
| 2127 | * Read as much data from the input buffer as possible up to maxlen, and store |
| 2128 | * it in buf. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2129 | */ |
| 2130 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2131 | read_from_input_buf(char_u *buf, long maxlen) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2132 | { |
| 2133 | if (inbufcount == 0) /* if the buffer is empty, fill it */ |
| 2134 | fill_input_buf(TRUE); |
| 2135 | if (maxlen > inbufcount) |
| 2136 | maxlen = inbufcount; |
| 2137 | mch_memmove(buf, inbuf, (size_t)maxlen); |
| 2138 | inbufcount -= maxlen; |
| 2139 | if (inbufcount) |
| 2140 | mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount); |
| 2141 | return (int)maxlen; |
| 2142 | } |
| 2143 | |
| 2144 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2145 | fill_input_buf(int exit_on_error UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2146 | { |
Bram Moolenaar | d057301 | 2017-10-28 21:11:06 +0200 | [diff] [blame] | 2147 | #if defined(UNIX) || defined(VMS) || defined(MACOS_X) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2148 | int len; |
| 2149 | int try; |
| 2150 | static int did_read_something = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2151 | static char_u *rest = NULL; /* unconverted rest of previous read */ |
| 2152 | static int restlen = 0; |
| 2153 | int unconverted; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2154 | #endif |
| 2155 | |
| 2156 | #ifdef FEAT_GUI |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 2157 | if (gui.in_use |
| 2158 | # ifdef NO_CONSOLE_INPUT |
| 2159 | /* Don't use the GUI input when the window hasn't been opened yet. |
| 2160 | * We get here from ui_inchar() when we should try reading from stdin. */ |
| 2161 | && !no_console_input() |
| 2162 | # endif |
| 2163 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2164 | { |
| 2165 | gui_mch_update(); |
| 2166 | return; |
| 2167 | } |
| 2168 | #endif |
Bram Moolenaar | d057301 | 2017-10-28 21:11:06 +0200 | [diff] [blame] | 2169 | #if defined(UNIX) || defined(VMS) || defined(MACOS_X) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2170 | if (vim_is_input_buf_full()) |
| 2171 | return; |
| 2172 | /* |
| 2173 | * Fill_input_buf() is only called when we really need a character. |
| 2174 | * If we can't get any, but there is some in the buffer, just return. |
| 2175 | * If we can't get any, and there isn't any in the buffer, we give up and |
| 2176 | * exit Vim. |
| 2177 | */ |
| 2178 | # ifdef __BEOS__ |
| 2179 | /* |
| 2180 | * On the BeBox version (for now), all input is secretly performed within |
| 2181 | * beos_select() which is called from RealWaitForChar(). |
| 2182 | */ |
| 2183 | while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL)) |
| 2184 | ; |
| 2185 | len = inbufcount; |
| 2186 | inbufcount = 0; |
| 2187 | # else |
| 2188 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2189 | if (rest != NULL) |
| 2190 | { |
| 2191 | /* Use remainder of previous call, starts with an invalid character |
| 2192 | * that may become valid when reading more. */ |
| 2193 | if (restlen > INBUFLEN - inbufcount) |
| 2194 | unconverted = INBUFLEN - inbufcount; |
| 2195 | else |
| 2196 | unconverted = restlen; |
| 2197 | mch_memmove(inbuf + inbufcount, rest, unconverted); |
| 2198 | if (unconverted == restlen) |
Bram Moolenaar | d23a823 | 2018-02-10 18:45:26 +0100 | [diff] [blame] | 2199 | VIM_CLEAR(rest); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2200 | else |
| 2201 | { |
| 2202 | restlen -= unconverted; |
| 2203 | mch_memmove(rest, rest + unconverted, restlen); |
| 2204 | } |
| 2205 | inbufcount += unconverted; |
| 2206 | } |
| 2207 | else |
| 2208 | unconverted = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2209 | |
| 2210 | len = 0; /* to avoid gcc warning */ |
| 2211 | for (try = 0; try < 100; ++try) |
| 2212 | { |
Bram Moolenaar | 4e601e3 | 2018-04-24 13:29:51 +0200 | [diff] [blame] | 2213 | size_t readlen = (size_t)((INBUFLEN - inbufcount) |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2214 | / input_conv.vc_factor); |
Bram Moolenaar | 4e601e3 | 2018-04-24 13:29:51 +0200 | [diff] [blame] | 2215 | # ifdef VMS |
Bram Moolenaar | 4994373 | 2018-04-24 20:27:26 +0200 | [diff] [blame] | 2216 | len = vms_read((char *)inbuf + inbufcount, readlen); |
Bram Moolenaar | 4e601e3 | 2018-04-24 13:29:51 +0200 | [diff] [blame] | 2217 | # else |
| 2218 | len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2219 | # endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2220 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2221 | if (len > 0 || got_int) |
| 2222 | break; |
| 2223 | /* |
| 2224 | * If reading stdin results in an error, continue reading stderr. |
| 2225 | * This helps when using "foo | xargs vim". |
| 2226 | */ |
| 2227 | if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0) |
| 2228 | { |
| 2229 | int m = cur_tmode; |
| 2230 | |
| 2231 | /* We probably set the wrong file descriptor to raw mode. Switch |
| 2232 | * back to cooked mode, use another descriptor and set the mode to |
| 2233 | * what it was. */ |
| 2234 | settmode(TMODE_COOK); |
| 2235 | #ifdef HAVE_DUP |
| 2236 | /* Use stderr for stdin, also works for shell commands. */ |
| 2237 | close(0); |
Bram Moolenaar | 42335f5 | 2018-09-13 15:33:43 +0200 | [diff] [blame] | 2238 | vim_ignored = dup(2); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2239 | #else |
| 2240 | read_cmd_fd = 2; /* read from stderr instead of stdin */ |
| 2241 | #endif |
| 2242 | settmode(m); |
| 2243 | } |
| 2244 | if (!exit_on_error) |
| 2245 | return; |
| 2246 | } |
| 2247 | # endif |
| 2248 | if (len <= 0 && !got_int) |
| 2249 | read_error_exit(); |
| 2250 | if (len > 0) |
| 2251 | did_read_something = TRUE; |
| 2252 | if (got_int) |
| 2253 | { |
| 2254 | /* Interrupted, pretend a CTRL-C was typed. */ |
| 2255 | inbuf[0] = 3; |
| 2256 | inbufcount = 1; |
| 2257 | } |
| 2258 | else |
| 2259 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2260 | /* |
| 2261 | * May perform conversion on the input characters. |
| 2262 | * Include the unconverted rest of the previous call. |
| 2263 | * If there is an incomplete char at the end it is kept for the next |
| 2264 | * time, reading more bytes should make conversion possible. |
| 2265 | * Don't do this in the unlikely event that the input buffer is too |
| 2266 | * small ("rest" still contains more bytes). |
| 2267 | */ |
| 2268 | if (input_conv.vc_type != CONV_NONE) |
| 2269 | { |
| 2270 | inbufcount -= unconverted; |
| 2271 | len = convert_input_safe(inbuf + inbufcount, |
| 2272 | len + unconverted, INBUFLEN - inbufcount, |
| 2273 | rest == NULL ? &rest : NULL, &restlen); |
| 2274 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2275 | while (len-- > 0) |
| 2276 | { |
| 2277 | /* |
| 2278 | * if a CTRL-C was typed, remove it from the buffer and set got_int |
| 2279 | */ |
| 2280 | if (inbuf[inbufcount] == 3 && ctrl_c_interrupts) |
| 2281 | { |
| 2282 | /* remove everything typed before the CTRL-C */ |
| 2283 | mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1)); |
| 2284 | inbufcount = 0; |
| 2285 | got_int = TRUE; |
| 2286 | } |
| 2287 | ++inbufcount; |
| 2288 | } |
| 2289 | } |
Bram Moolenaar | e7fedb6 | 2015-12-31 19:07:19 +0100 | [diff] [blame] | 2290 | #endif /* UNIX or VMS*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2291 | } |
Bram Moolenaar | e7fedb6 | 2015-12-31 19:07:19 +0100 | [diff] [blame] | 2292 | #endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2293 | |
| 2294 | /* |
| 2295 | * Exit because of an input read error. |
| 2296 | */ |
| 2297 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2298 | read_error_exit(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2299 | { |
| 2300 | if (silent_mode) /* Normal way to exit for "ex -s" */ |
| 2301 | getout(0); |
| 2302 | STRCPY(IObuff, _("Vim: Error reading input, exiting...\n")); |
| 2303 | preserve_exit(); |
| 2304 | } |
| 2305 | |
| 2306 | #if defined(CURSOR_SHAPE) || defined(PROTO) |
| 2307 | /* |
| 2308 | * May update the shape of the cursor. |
| 2309 | */ |
| 2310 | void |
Bram Moolenaar | 3cd43cc | 2017-08-12 19:51:41 +0200 | [diff] [blame] | 2311 | ui_cursor_shape_forced(int forced) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2312 | { |
| 2313 | # ifdef FEAT_GUI |
| 2314 | if (gui.in_use) |
| 2315 | gui_update_cursor_later(); |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2316 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2317 | # endif |
Bram Moolenaar | 3cd43cc | 2017-08-12 19:51:41 +0200 | [diff] [blame] | 2318 | term_cursor_mode(forced); |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2319 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2320 | # ifdef MCH_CURSOR_SHAPE |
| 2321 | mch_update_cursor(); |
| 2322 | # endif |
Bram Moolenaar | f5963f7 | 2010-07-23 22:10:27 +0200 | [diff] [blame] | 2323 | |
| 2324 | # ifdef FEAT_CONCEAL |
Bram Moolenaar | b946482 | 2018-05-10 15:09:49 +0200 | [diff] [blame] | 2325 | conceal_check_cursor_line(); |
Bram Moolenaar | f5963f7 | 2010-07-23 22:10:27 +0200 | [diff] [blame] | 2326 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2327 | } |
Bram Moolenaar | 3cd43cc | 2017-08-12 19:51:41 +0200 | [diff] [blame] | 2328 | |
| 2329 | void |
| 2330 | ui_cursor_shape(void) |
| 2331 | { |
| 2332 | ui_cursor_shape_forced(FALSE); |
| 2333 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2334 | #endif |
| 2335 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2336 | /* |
| 2337 | * Check bounds for column number |
| 2338 | */ |
| 2339 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2340 | check_col(int col) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2341 | { |
| 2342 | if (col < 0) |
| 2343 | return 0; |
| 2344 | if (col >= (int)screen_Columns) |
| 2345 | return (int)screen_Columns - 1; |
| 2346 | return col; |
| 2347 | } |
| 2348 | |
| 2349 | /* |
| 2350 | * Check bounds for row number |
| 2351 | */ |
| 2352 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2353 | check_row(int row) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2354 | { |
| 2355 | if (row < 0) |
| 2356 | return 0; |
| 2357 | if (row >= (int)screen_Rows) |
| 2358 | return (int)screen_Rows - 1; |
| 2359 | return row; |
| 2360 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2361 | |
| 2362 | /* |
| 2363 | * Stuff for the X clipboard. Shared between VMS and Unix. |
| 2364 | */ |
| 2365 | |
| 2366 | #if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO) |
| 2367 | # include <X11/Xatom.h> |
| 2368 | # include <X11/Intrinsic.h> |
| 2369 | |
| 2370 | /* |
| 2371 | * Open the application context (if it hasn't been opened yet). |
| 2372 | * Used for Motif and Athena GUI and the xterm clipboard. |
| 2373 | */ |
| 2374 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2375 | open_app_context(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2376 | { |
| 2377 | if (app_context == NULL) |
| 2378 | { |
| 2379 | XtToolkitInitialize(); |
| 2380 | app_context = XtCreateApplicationContext(); |
| 2381 | } |
| 2382 | } |
| 2383 | |
| 2384 | static Atom vim_atom; /* Vim's own special selection format */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2385 | static Atom vimenc_atom; /* Vim's extended selection format */ |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2386 | static Atom utf8_atom; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2387 | static Atom compound_text_atom; |
| 2388 | static Atom text_atom; |
| 2389 | static Atom targets_atom; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2390 | static Atom timestamp_atom; /* Used to get a timestamp */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2391 | |
| 2392 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2393 | x11_setup_atoms(Display *dpy) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2394 | { |
| 2395 | vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2396 | vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False); |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2397 | utf8_atom = XInternAtom(dpy, "UTF8_STRING", False); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2398 | compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False); |
| 2399 | text_atom = XInternAtom(dpy, "TEXT", False); |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2400 | targets_atom = XInternAtom(dpy, "TARGETS", False); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2401 | clip_star.sel_atom = XA_PRIMARY; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2402 | clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False); |
| 2403 | timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2404 | } |
| 2405 | |
| 2406 | /* |
| 2407 | * X Selection stuff, for cutting and pasting text to other windows. |
| 2408 | */ |
| 2409 | |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2410 | static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format); |
| 2411 | static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom); |
| 2412 | static void clip_x11_notify_cb(Widget w, Atom *sel_atom, Atom *target); |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2413 | |
| 2414 | /* |
| 2415 | * Property callback to get a timestamp for XtOwnSelection. |
| 2416 | */ |
| 2417 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2418 | clip_x11_timestamp_cb( |
| 2419 | Widget w, |
| 2420 | XtPointer n UNUSED, |
| 2421 | XEvent *event, |
| 2422 | Boolean *cont UNUSED) |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2423 | { |
| 2424 | Atom actual_type; |
| 2425 | int format; |
| 2426 | unsigned long nitems, bytes_after; |
| 2427 | unsigned char *prop=NULL; |
| 2428 | XPropertyEvent *xproperty=&event->xproperty; |
| 2429 | |
| 2430 | /* Must be a property notify, state can't be Delete (True), has to be |
| 2431 | * one of the supported selection types. */ |
| 2432 | if (event->type != PropertyNotify || xproperty->state |
| 2433 | || (xproperty->atom != clip_star.sel_atom |
| 2434 | && xproperty->atom != clip_plus.sel_atom)) |
| 2435 | return; |
| 2436 | |
| 2437 | if (XGetWindowProperty(xproperty->display, xproperty->window, |
| 2438 | xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format, |
| 2439 | &nitems, &bytes_after, &prop)) |
| 2440 | return; |
| 2441 | |
| 2442 | if (prop) |
| 2443 | XFree(prop); |
| 2444 | |
| 2445 | /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */ |
| 2446 | if (actual_type != timestamp_atom || format != 32) |
| 2447 | return; |
| 2448 | |
| 2449 | /* Get the selection, using the event timestamp. */ |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 2450 | if (XtOwnSelection(w, xproperty->atom, xproperty->time, |
| 2451 | clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb, |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2452 | clip_x11_notify_cb) == OK) |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 2453 | { |
| 2454 | /* Set the "owned" flag now, there may have been a call to |
| 2455 | * lose_ownership_cb in between. */ |
| 2456 | if (xproperty->atom == clip_plus.sel_atom) |
| 2457 | clip_plus.owned = TRUE; |
| 2458 | else |
| 2459 | clip_star.owned = TRUE; |
| 2460 | } |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2461 | } |
| 2462 | |
| 2463 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2464 | x11_setup_selection(Widget w) |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2465 | { |
| 2466 | XtAddEventHandler(w, PropertyChangeMask, False, |
| 2467 | /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL); |
| 2468 | } |
| 2469 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2470 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2471 | clip_x11_request_selection_cb( |
| 2472 | Widget w UNUSED, |
| 2473 | XtPointer success, |
| 2474 | Atom *sel_atom, |
| 2475 | Atom *type, |
| 2476 | XtPointer value, |
| 2477 | long_u *length, |
| 2478 | int *format) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2479 | { |
Bram Moolenaar | d44347f | 2011-06-19 01:14:29 +0200 | [diff] [blame] | 2480 | int motion_type = MAUTO; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2481 | long_u len; |
| 2482 | char_u *p; |
| 2483 | char **text_list = NULL; |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2484 | Clipboard_T *cbd; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2485 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2486 | |
| 2487 | if (*sel_atom == clip_plus.sel_atom) |
| 2488 | cbd = &clip_plus; |
| 2489 | else |
| 2490 | cbd = &clip_star; |
| 2491 | |
| 2492 | if (value == NULL || *length == 0) |
| 2493 | { |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2494 | clip_free_selection(cbd); /* nothing received, clear register */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2495 | *(int *)success = FALSE; |
| 2496 | return; |
| 2497 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2498 | p = (char_u *)value; |
| 2499 | len = *length; |
| 2500 | if (*type == vim_atom) |
| 2501 | { |
| 2502 | motion_type = *p++; |
| 2503 | len--; |
| 2504 | } |
| 2505 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2506 | else if (*type == vimenc_atom) |
| 2507 | { |
| 2508 | char_u *enc; |
| 2509 | vimconv_T conv; |
| 2510 | int convlen; |
| 2511 | |
| 2512 | motion_type = *p++; |
| 2513 | --len; |
| 2514 | |
| 2515 | enc = p; |
| 2516 | p += STRLEN(p) + 1; |
| 2517 | len -= p - enc; |
| 2518 | |
| 2519 | /* If the encoding of the text is different from 'encoding', attempt |
| 2520 | * converting it. */ |
| 2521 | conv.vc_type = CONV_NONE; |
| 2522 | convert_setup(&conv, enc, p_enc); |
| 2523 | if (conv.vc_type != CONV_NONE) |
| 2524 | { |
| 2525 | convlen = len; /* Need to use an int here. */ |
| 2526 | tmpbuf = string_convert(&conv, p, &convlen); |
| 2527 | len = convlen; |
| 2528 | if (tmpbuf != NULL) |
| 2529 | p = tmpbuf; |
| 2530 | convert_setup(&conv, NULL, NULL); |
| 2531 | } |
| 2532 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2533 | |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2534 | else if (*type == compound_text_atom |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2535 | || *type == utf8_atom |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2536 | || (enc_dbcs != 0 && *type == text_atom)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2537 | { |
| 2538 | XTextProperty text_prop; |
| 2539 | int n_text = 0; |
| 2540 | int status; |
| 2541 | |
| 2542 | text_prop.value = (unsigned char *)value; |
| 2543 | text_prop.encoding = *type; |
| 2544 | text_prop.format = *format; |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2545 | text_prop.nitems = len; |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2546 | #if defined(X_HAVE_UTF8_STRING) |
Bram Moolenaar | e2e663f | 2013-03-07 18:02:30 +0100 | [diff] [blame] | 2547 | if (*type == utf8_atom) |
| 2548 | status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop, |
| 2549 | &text_list, &n_text); |
| 2550 | else |
| 2551 | #endif |
| 2552 | status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2553 | &text_list, &n_text); |
| 2554 | if (status != Success || n_text < 1) |
| 2555 | { |
| 2556 | *(int *)success = FALSE; |
| 2557 | return; |
| 2558 | } |
| 2559 | p = (char_u *)text_list[0]; |
| 2560 | len = STRLEN(p); |
| 2561 | } |
| 2562 | clip_yank_selection(motion_type, p, (long)len, cbd); |
| 2563 | |
| 2564 | if (text_list != NULL) |
| 2565 | XFreeStringList(text_list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2566 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2567 | XtFree((char *)value); |
| 2568 | *(int *)success = TRUE; |
| 2569 | } |
| 2570 | |
| 2571 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2572 | clip_x11_request_selection( |
| 2573 | Widget myShell, |
| 2574 | Display *dpy, |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2575 | Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2576 | { |
| 2577 | XEvent event; |
| 2578 | Atom type; |
| 2579 | static int success; |
| 2580 | int i; |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2581 | time_t start_time; |
| 2582 | int timed_out = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2583 | |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2584 | for (i = 0; i < 6; i++) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2585 | { |
| 2586 | switch (i) |
| 2587 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2588 | case 0: type = vimenc_atom; break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2589 | case 1: type = vim_atom; break; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2590 | case 2: type = utf8_atom; break; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2591 | case 3: type = compound_text_atom; break; |
| 2592 | case 4: type = text_atom; break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2593 | default: type = XA_STRING; |
| 2594 | } |
Bram Moolenaar | 8185111 | 2013-04-12 12:27:30 +0200 | [diff] [blame] | 2595 | if (type == utf8_atom |
| 2596 | # if defined(X_HAVE_UTF8_STRING) |
| 2597 | && !enc_utf8 |
| 2598 | # endif |
| 2599 | ) |
| 2600 | /* Only request utf-8 when 'encoding' is utf8 and |
| 2601 | * Xutf8TextPropertyToTextList is available. */ |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2602 | continue; |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2603 | success = MAYBE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2604 | XtGetSelectionValue(myShell, cbd->sel_atom, type, |
| 2605 | clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime); |
| 2606 | |
| 2607 | /* Make sure the request for the selection goes out before waiting for |
| 2608 | * a response. */ |
| 2609 | XFlush(dpy); |
| 2610 | |
| 2611 | /* |
| 2612 | * Wait for result of selection request, otherwise if we type more |
| 2613 | * characters, then they will appear before the one that requested the |
| 2614 | * paste! Don't worry, we will catch up with any other events later. |
| 2615 | */ |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2616 | start_time = time(NULL); |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2617 | while (success == MAYBE) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2618 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2619 | if (XCheckTypedEvent(dpy, PropertyNotify, &event) |
| 2620 | || XCheckTypedEvent(dpy, SelectionNotify, &event) |
| 2621 | || XCheckTypedEvent(dpy, SelectionRequest, &event)) |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2622 | { |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2623 | /* This is where clip_x11_request_selection_cb() should be |
| 2624 | * called. It may actually happen a bit later, so we loop |
| 2625 | * until "success" changes. |
| 2626 | * We may get a SelectionRequest here and if we don't handle |
| 2627 | * it we hang. KDE klipper does this, for example. |
| 2628 | * We need to handle a PropertyNotify for large selections. */ |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2629 | XtDispatchEvent(&event); |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2630 | continue; |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2631 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2632 | |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2633 | /* Time out after 2 to 3 seconds to avoid that we hang when the |
| 2634 | * other process doesn't respond. Note that the SelectionNotify |
| 2635 | * event may still come later when the selection owner comes back |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2636 | * to life and the text gets inserted unexpectedly. Don't know |
| 2637 | * why that happens or how to avoid that :-(. */ |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2638 | if (time(NULL) > start_time + 2) |
| 2639 | { |
| 2640 | timed_out = TRUE; |
| 2641 | break; |
| 2642 | } |
| 2643 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2644 | /* Do we need this? Probably not. */ |
| 2645 | XSync(dpy, False); |
| 2646 | |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2647 | /* Wait for 1 msec to avoid that we eat up all CPU time. */ |
| 2648 | ui_delay(1L, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2649 | } |
| 2650 | |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2651 | if (success == TRUE) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2652 | return; |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2653 | |
| 2654 | /* don't do a retry with another type after timing out, otherwise we |
| 2655 | * hang for 15 seconds. */ |
| 2656 | if (timed_out) |
| 2657 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2658 | } |
| 2659 | |
| 2660 | /* Final fallback position - use the X CUT_BUFFER0 store */ |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2661 | yank_cut_buffer0(dpy, cbd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2662 | } |
| 2663 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2664 | static Boolean |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2665 | clip_x11_convert_selection_cb( |
| 2666 | Widget w UNUSED, |
| 2667 | Atom *sel_atom, |
| 2668 | Atom *target, |
| 2669 | Atom *type, |
| 2670 | XtPointer *value, |
| 2671 | long_u *length, |
| 2672 | int *format) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2673 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2674 | static char_u *save_result = NULL; |
| 2675 | static long_u save_length = 0; |
| 2676 | char_u *string; |
| 2677 | int motion_type; |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2678 | Clipboard_T *cbd; |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2679 | int i; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2680 | |
| 2681 | if (*sel_atom == clip_plus.sel_atom) |
| 2682 | cbd = &clip_plus; |
| 2683 | else |
| 2684 | cbd = &clip_star; |
| 2685 | |
| 2686 | if (!cbd->owned) |
| 2687 | return False; /* Shouldn't ever happen */ |
| 2688 | |
| 2689 | /* requestor wants to know what target types we support */ |
| 2690 | if (*target == targets_atom) |
| 2691 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2692 | static Atom array[7]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2693 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2694 | *value = (XtPointer)array; |
| 2695 | i = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2696 | array[i++] = targets_atom; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2697 | array[i++] = vimenc_atom; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2698 | array[i++] = vim_atom; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2699 | if (enc_utf8) |
| 2700 | array[i++] = utf8_atom; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2701 | array[i++] = XA_STRING; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2702 | array[i++] = text_atom; |
| 2703 | array[i++] = compound_text_atom; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2704 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2705 | *type = XA_ATOM; |
| 2706 | /* This used to be: *format = sizeof(Atom) * 8; but that caused |
| 2707 | * crashes on 64 bit machines. (Peter Derr) */ |
| 2708 | *format = 32; |
| 2709 | *length = i; |
| 2710 | return True; |
| 2711 | } |
| 2712 | |
| 2713 | if ( *target != XA_STRING |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2714 | && *target != vimenc_atom |
Bram Moolenaar | 980e58f | 2014-06-12 13:28:30 +0200 | [diff] [blame] | 2715 | && (*target != utf8_atom || !enc_utf8) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2716 | && *target != vim_atom |
| 2717 | && *target != text_atom |
| 2718 | && *target != compound_text_atom) |
| 2719 | return False; |
| 2720 | |
| 2721 | clip_get_selection(cbd); |
| 2722 | motion_type = clip_convert_selection(&string, length, cbd); |
| 2723 | if (motion_type < 0) |
| 2724 | return False; |
| 2725 | |
| 2726 | /* For our own format, the first byte contains the motion type */ |
| 2727 | if (*target == vim_atom) |
| 2728 | (*length)++; |
| 2729 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2730 | /* Our own format with encoding: motion 'encoding' NUL text */ |
| 2731 | if (*target == vimenc_atom) |
| 2732 | *length += STRLEN(p_enc) + 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2733 | |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2734 | if (save_length < *length || save_length / 2 >= *length) |
| 2735 | *value = XtRealloc((char *)save_result, (Cardinal)*length + 1); |
| 2736 | else |
| 2737 | *value = save_result; |
| 2738 | if (*value == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2739 | { |
| 2740 | vim_free(string); |
| 2741 | return False; |
| 2742 | } |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2743 | save_result = (char_u *)*value; |
| 2744 | save_length = *length; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2745 | |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2746 | if (*target == XA_STRING || (*target == utf8_atom && enc_utf8)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2747 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2748 | mch_memmove(save_result, string, (size_t)(*length)); |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2749 | *type = *target; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2750 | } |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2751 | else if (*target == compound_text_atom || *target == text_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2752 | { |
| 2753 | XTextProperty text_prop; |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2754 | char *string_nt = (char *)save_result; |
Bram Moolenaar | fe17e76 | 2013-06-29 14:17:02 +0200 | [diff] [blame] | 2755 | int conv_result; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2756 | |
| 2757 | /* create NUL terminated string which XmbTextListToTextProperty wants */ |
| 2758 | mch_memmove(string_nt, string, (size_t)*length); |
| 2759 | string_nt[*length] = NUL; |
Bram Moolenaar | fe17e76 | 2013-06-29 14:17:02 +0200 | [diff] [blame] | 2760 | conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt, |
| 2761 | 1, XCompoundTextStyle, &text_prop); |
Bram Moolenaar | fe17e76 | 2013-06-29 14:17:02 +0200 | [diff] [blame] | 2762 | if (conv_result != Success) |
| 2763 | { |
| 2764 | vim_free(string); |
| 2765 | return False; |
| 2766 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2767 | *value = (XtPointer)(text_prop.value); /* from plain text */ |
| 2768 | *length = text_prop.nitems; |
| 2769 | *type = compound_text_atom; |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2770 | XtFree((char *)save_result); |
| 2771 | save_result = (char_u *)*value; |
| 2772 | save_length = *length; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2773 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2774 | else if (*target == vimenc_atom) |
| 2775 | { |
| 2776 | int l = STRLEN(p_enc); |
| 2777 | |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2778 | save_result[0] = motion_type; |
| 2779 | STRCPY(save_result + 1, p_enc); |
| 2780 | mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2781 | *type = vimenc_atom; |
| 2782 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2783 | else |
| 2784 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2785 | save_result[0] = motion_type; |
| 2786 | mch_memmove(save_result + 1, string, (size_t)(*length - 1)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2787 | *type = vim_atom; |
| 2788 | } |
| 2789 | *format = 8; /* 8 bits per char */ |
| 2790 | vim_free(string); |
| 2791 | return True; |
| 2792 | } |
| 2793 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2794 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2795 | clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2796 | { |
| 2797 | if (*sel_atom == clip_plus.sel_atom) |
| 2798 | clip_lose_selection(&clip_plus); |
| 2799 | else |
| 2800 | clip_lose_selection(&clip_star); |
| 2801 | } |
| 2802 | |
| 2803 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2804 | clip_x11_lose_selection(Widget myShell, Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2805 | { |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 2806 | XtDisownSelection(myShell, cbd->sel_atom, |
| 2807 | XtLastTimestampProcessed(XtDisplay(myShell))); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2808 | } |
| 2809 | |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2810 | static void |
| 2811 | clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED) |
| 2812 | { |
| 2813 | /* To prevent automatically freeing the selection value. */ |
| 2814 | } |
| 2815 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2816 | int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2817 | clip_x11_own_selection(Widget myShell, Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2818 | { |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 2819 | /* When using the GUI we have proper timestamps, use the one of the last |
| 2820 | * event. When in the console we don't get events (the terminal gets |
| 2821 | * them), Get the time by a zero-length append, clip_x11_timestamp_cb will |
| 2822 | * be called with the current timestamp. */ |
| 2823 | #ifdef FEAT_GUI |
| 2824 | if (gui.in_use) |
| 2825 | { |
| 2826 | if (XtOwnSelection(myShell, cbd->sel_atom, |
| 2827 | XtLastTimestampProcessed(XtDisplay(myShell)), |
| 2828 | clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb, |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2829 | clip_x11_notify_cb) == False) |
Bram Moolenaar | b8ff1fb | 2012-02-04 21:59:01 +0100 | [diff] [blame] | 2830 | return FAIL; |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 2831 | } |
| 2832 | else |
| 2833 | #endif |
| 2834 | { |
| 2835 | if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell), |
| 2836 | cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0)) |
Bram Moolenaar | b8ff1fb | 2012-02-04 21:59:01 +0100 | [diff] [blame] | 2837 | return FAIL; |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 2838 | } |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2839 | /* Flush is required in a terminal as nothing else is doing it. */ |
| 2840 | XFlush(XtDisplay(myShell)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2841 | return OK; |
| 2842 | } |
| 2843 | |
| 2844 | /* |
| 2845 | * Send the current selection to the clipboard. Do nothing for X because we |
| 2846 | * will fill in the selection only when requested by another app. |
| 2847 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2848 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2849 | clip_x11_set_selection(Clipboard_T *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2850 | { |
| 2851 | } |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 2852 | |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 2853 | #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) \ |
| 2854 | || defined(PROTO) |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 2855 | static int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2856 | clip_x11_owner_exists(Clipboard_T *cbd) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 2857 | { |
| 2858 | return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None; |
| 2859 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2860 | #endif |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 2861 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2862 | |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2863 | #if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \ |
| 2864 | || defined(FEAT_GUI_GTK) || defined(PROTO) |
| 2865 | /* |
| 2866 | * Get the contents of the X CUT_BUFFER0 and put it in "cbd". |
| 2867 | */ |
| 2868 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2869 | yank_cut_buffer0(Display *dpy, Clipboard_T *cbd) |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2870 | { |
| 2871 | int nbytes = 0; |
| 2872 | char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0); |
| 2873 | |
| 2874 | if (nbytes > 0) |
| 2875 | { |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2876 | int done = FALSE; |
| 2877 | |
| 2878 | /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when |
| 2879 | * using a multi-byte encoding. Conversion between two 8-bit |
| 2880 | * character sets usually fails and the text might actually be in |
| 2881 | * 'enc' anyway. */ |
| 2882 | if (has_mbyte) |
| 2883 | { |
Bram Moolenaar | 2660c0e | 2010-01-19 14:59:56 +0100 | [diff] [blame] | 2884 | char_u *conv_buf; |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2885 | vimconv_T vc; |
| 2886 | |
| 2887 | vc.vc_type = CONV_NONE; |
| 2888 | if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK) |
| 2889 | { |
| 2890 | conv_buf = string_convert(&vc, buffer, &nbytes); |
| 2891 | if (conv_buf != NULL) |
| 2892 | { |
| 2893 | clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd); |
| 2894 | vim_free(conv_buf); |
| 2895 | done = TRUE; |
| 2896 | } |
| 2897 | convert_setup(&vc, NULL, NULL); |
| 2898 | } |
| 2899 | } |
| 2900 | if (!done) /* use the text without conversion */ |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2901 | clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd); |
| 2902 | XFree((void *)buffer); |
| 2903 | if (p_verbose > 0) |
| 2904 | { |
| 2905 | verbose_enter(); |
Bram Moolenaar | 32526b3 | 2019-01-19 17:43:09 +0100 | [diff] [blame] | 2906 | verb_msg(_("Used CUT_BUFFER0 instead of empty selection")); |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2907 | verbose_leave(); |
| 2908 | } |
| 2909 | } |
| 2910 | } |
| 2911 | #endif |
| 2912 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2913 | #if defined(FEAT_MOUSE) || defined(PROTO) |
| 2914 | |
| 2915 | /* |
| 2916 | * Move the cursor to the specified row and column on the screen. |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 2917 | * Change current window if necessary. Returns an integer with the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2918 | * CURSOR_MOVED bit set if the cursor has moved or unset otherwise. |
| 2919 | * |
| 2920 | * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column. |
| 2921 | * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column. |
| 2922 | * |
| 2923 | * If flags has MOUSE_FOCUS, then the current window will not be changed, and |
| 2924 | * if the mouse is outside the window then the text will scroll, or if the |
| 2925 | * mouse was previously on a status line, then the status line may be dragged. |
| 2926 | * |
| 2927 | * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the |
| 2928 | * cursor is moved unless the cursor was on a status line. |
| 2929 | * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or |
| 2930 | * IN_SEP_LINE depending on where the cursor was clicked. |
| 2931 | * |
| 2932 | * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless |
| 2933 | * the mouse is on the status line of the same window. |
| 2934 | * |
| 2935 | * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since |
| 2936 | * the last call. |
| 2937 | * |
| 2938 | * If flags has MOUSE_SETPOS, nothing is done, only the current position is |
| 2939 | * remembered. |
| 2940 | */ |
| 2941 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2942 | jump_to_mouse( |
| 2943 | int flags, |
| 2944 | int *inclusive, /* used for inclusive operator, can be NULL */ |
| 2945 | int which_button) /* MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2946 | { |
| 2947 | static int on_status_line = 0; /* #lines below bottom of window */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2948 | static int on_sep_line = 0; /* on separator right of window */ |
Bram Moolenaar | eb163d7 | 2017-09-23 15:08:17 +0200 | [diff] [blame] | 2949 | #ifdef FEAT_MENU |
| 2950 | static int in_winbar = FALSE; |
| 2951 | #endif |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 2952 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 2953 | static int in_popup_win = FALSE; |
Bram Moolenaar | 2e62b56 | 2019-06-30 18:07:00 +0200 | [diff] [blame] | 2954 | static win_T *click_in_popup_win = NULL; |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 2955 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2956 | static int prev_row = -1; |
| 2957 | static int prev_col = -1; |
| 2958 | static win_T *dragwin = NULL; /* window being dragged */ |
| 2959 | static int did_drag = FALSE; /* drag was noticed */ |
| 2960 | |
| 2961 | win_T *wp, *old_curwin; |
| 2962 | pos_T old_cursor; |
| 2963 | int count; |
| 2964 | int first; |
| 2965 | int row = mouse_row; |
| 2966 | int col = mouse_col; |
| 2967 | #ifdef FEAT_FOLDING |
| 2968 | int mouse_char; |
| 2969 | #endif |
| 2970 | |
| 2971 | mouse_past_bottom = FALSE; |
| 2972 | mouse_past_eol = FALSE; |
| 2973 | |
| 2974 | if (flags & MOUSE_RELEASED) |
| 2975 | { |
| 2976 | /* On button release we may change window focus if positioned on a |
| 2977 | * status line and no dragging happened. */ |
| 2978 | if (dragwin != NULL && !did_drag) |
| 2979 | flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE); |
| 2980 | dragwin = NULL; |
| 2981 | did_drag = FALSE; |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 2982 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | 2e62b56 | 2019-06-30 18:07:00 +0200 | [diff] [blame] | 2983 | if (click_in_popup_win != NULL && popup_dragwin == NULL) |
| 2984 | popup_close_for_mouse_click(click_in_popup_win); |
| 2985 | |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 2986 | popup_dragwin = NULL; |
Bram Moolenaar | 2e62b56 | 2019-06-30 18:07:00 +0200 | [diff] [blame] | 2987 | click_in_popup_win = NULL; |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 2988 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2989 | } |
| 2990 | |
| 2991 | if ((flags & MOUSE_DID_MOVE) |
| 2992 | && prev_row == mouse_row |
| 2993 | && prev_col == mouse_col) |
| 2994 | { |
| 2995 | retnomove: |
Bram Moolenaar | 4932594 | 2007-05-10 19:19:59 +0000 | [diff] [blame] | 2996 | /* before moving the cursor for a left click which is NOT in a status |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2997 | * line, stop Visual mode */ |
| 2998 | if (on_status_line) |
| 2999 | return IN_STATUS_LINE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3000 | if (on_sep_line) |
| 3001 | return IN_SEP_LINE; |
Bram Moolenaar | d327b0c | 2017-11-12 16:56:12 +0100 | [diff] [blame] | 3002 | #ifdef FEAT_MENU |
| 3003 | if (in_winbar) |
| 3004 | { |
| 3005 | /* A quick second click may arrive as a double-click, but we use it |
| 3006 | * as a second click in the WinBar. */ |
| 3007 | if ((mod_mask & MOD_MASK_MULTI_CLICK) && !(flags & MOUSE_RELEASED)) |
| 3008 | { |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3009 | wp = mouse_find_win(&row, &col, FAIL_POPUP); |
Bram Moolenaar | d327b0c | 2017-11-12 16:56:12 +0100 | [diff] [blame] | 3010 | if (wp == NULL) |
| 3011 | return IN_UNKNOWN; |
| 3012 | winbar_click(wp, col); |
| 3013 | } |
| 3014 | return IN_OTHER_WIN | MOUSE_WINBAR; |
| 3015 | } |
| 3016 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3017 | if (flags & MOUSE_MAY_STOP_VIS) |
| 3018 | { |
| 3019 | end_visual_mode(); |
| 3020 | redraw_curbuf_later(INVERTED); /* delete the inversion */ |
| 3021 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3022 | #if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD) |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3023 | // Continue a modeless selection in another window. |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 3024 | if (cmdwin_type != 0 && row < curwin->w_winrow) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3025 | return IN_OTHER_WIN; |
| 3026 | #endif |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3027 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | f9c85f5 | 2019-06-29 07:41:35 +0200 | [diff] [blame] | 3028 | // Continue a modeless selection in a popup window or dragging it. |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3029 | if (in_popup_win) |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3030 | { |
Bram Moolenaar | 2e62b56 | 2019-06-30 18:07:00 +0200 | [diff] [blame] | 3031 | click_in_popup_win = NULL; // don't close it on release |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3032 | if (popup_dragwin != NULL) |
| 3033 | { |
| 3034 | // dragging a popup window |
| 3035 | popup_drag(popup_dragwin); |
| 3036 | return IN_UNKNOWN; |
| 3037 | } |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3038 | return IN_OTHER_WIN; |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3039 | } |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3040 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3041 | return IN_BUFFER; |
| 3042 | } |
| 3043 | |
| 3044 | prev_row = mouse_row; |
| 3045 | prev_col = mouse_col; |
| 3046 | |
| 3047 | if (flags & MOUSE_SETPOS) |
| 3048 | goto retnomove; /* ugly goto... */ |
| 3049 | |
| 3050 | #ifdef FEAT_FOLDING |
| 3051 | /* Remember the character under the mouse, it might be a '-' or '+' in the |
| 3052 | * fold column. */ |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 3053 | if (row >= 0 && row < Rows && col >= 0 && col <= Columns |
| 3054 | && ScreenLines != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3055 | mouse_char = ScreenLines[LineOffset[row] + col]; |
| 3056 | else |
| 3057 | mouse_char = ' '; |
| 3058 | #endif |
| 3059 | |
| 3060 | old_curwin = curwin; |
| 3061 | old_cursor = curwin->w_cursor; |
| 3062 | |
| 3063 | if (!(flags & MOUSE_FOCUS)) |
| 3064 | { |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3065 | if (row < 0 || col < 0) // check if it makes sense |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3066 | return IN_UNKNOWN; |
| 3067 | |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3068 | // find the window where the row is in |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3069 | wp = mouse_find_win(&row, &col, FIND_POPUP); |
Bram Moolenaar | 989a70c | 2017-08-16 22:46:01 +0200 | [diff] [blame] | 3070 | if (wp == NULL) |
| 3071 | return IN_UNKNOWN; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3072 | dragwin = NULL; |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 3073 | |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3074 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3075 | // Click in a popup window may start dragging or modeless selection, |
| 3076 | // but not much else. |
Bram Moolenaar | 5b8cfed | 2019-06-30 22:16:10 +0200 | [diff] [blame] | 3077 | if (WIN_IS_POPUP(wp)) |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3078 | { |
| 3079 | on_sep_line = 0; |
| 3080 | in_popup_win = TRUE; |
Bram Moolenaar | 2e62b56 | 2019-06-30 18:07:00 +0200 | [diff] [blame] | 3081 | if (wp->w_popup_close == POPCLOSE_BUTTON |
| 3082 | && which_button == MOUSE_LEFT |
| 3083 | && popup_on_X_button(wp, row, col)) |
| 3084 | { |
| 3085 | popup_close_for_mouse_click(wp); |
| 3086 | return IN_UNKNOWN; |
| 3087 | } |
Bram Moolenaar | 9bcb70c | 2019-08-01 21:11:05 +0200 | [diff] [blame] | 3088 | else if ((wp->w_popup_flags & (POPF_DRAG | POPF_RESIZE)) |
| 3089 | && popup_on_border(wp, row, col)) |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3090 | { |
| 3091 | popup_dragwin = wp; |
Bram Moolenaar | 9bcb70c | 2019-08-01 21:11:05 +0200 | [diff] [blame] | 3092 | popup_start_drag(wp, row, col); |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3093 | return IN_UNKNOWN; |
| 3094 | } |
Bram Moolenaar | 2e62b56 | 2019-06-30 18:07:00 +0200 | [diff] [blame] | 3095 | // Only close on release, otherwise it's not possible to drag or do |
| 3096 | // modeless selection. |
| 3097 | else if (wp->w_popup_close == POPCLOSE_CLICK |
| 3098 | && which_button == MOUSE_LEFT) |
| 3099 | { |
| 3100 | click_in_popup_win = wp; |
| 3101 | } |
| 3102 | else if (which_button == MOUSE_LEFT) |
Bram Moolenaar | f9c85f5 | 2019-06-29 07:41:35 +0200 | [diff] [blame] | 3103 | // If the click is in the scrollbar, may scroll up/down. |
| 3104 | popup_handle_scrollbar_click(wp, row, col); |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3105 | # ifdef FEAT_CLIPBOARD |
| 3106 | return IN_OTHER_WIN; |
| 3107 | # else |
| 3108 | return IN_UNKNOWN; |
| 3109 | # endif |
| 3110 | } |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3111 | in_popup_win = FALSE; |
| 3112 | popup_dragwin = NULL; |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3113 | #endif |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 3114 | #ifdef FEAT_MENU |
| 3115 | if (row == -1) |
| 3116 | { |
| 3117 | /* A click in the window toolbar does not enter another window or |
| 3118 | * change Visual highlighting. */ |
| 3119 | winbar_click(wp, col); |
Bram Moolenaar | eb163d7 | 2017-09-23 15:08:17 +0200 | [diff] [blame] | 3120 | in_winbar = TRUE; |
| 3121 | return IN_OTHER_WIN | MOUSE_WINBAR; |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 3122 | } |
Bram Moolenaar | eb163d7 | 2017-09-23 15:08:17 +0200 | [diff] [blame] | 3123 | in_winbar = FALSE; |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 3124 | #endif |
| 3125 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3126 | /* |
| 3127 | * winpos and height may change in win_enter()! |
| 3128 | */ |
| 3129 | if (row >= wp->w_height) /* In (or below) status line */ |
| 3130 | { |
| 3131 | on_status_line = row - wp->w_height + 1; |
| 3132 | dragwin = wp; |
| 3133 | } |
| 3134 | else |
| 3135 | on_status_line = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3136 | if (col >= wp->w_width) /* In separator line */ |
| 3137 | { |
| 3138 | on_sep_line = col - wp->w_width + 1; |
| 3139 | dragwin = wp; |
| 3140 | } |
| 3141 | else |
| 3142 | on_sep_line = 0; |
| 3143 | |
| 3144 | /* The rightmost character of the status line might be a vertical |
| 3145 | * separator character if there is no connecting window to the right. */ |
| 3146 | if (on_status_line && on_sep_line) |
| 3147 | { |
| 3148 | if (stl_connected(wp)) |
| 3149 | on_sep_line = 0; |
| 3150 | else |
| 3151 | on_status_line = 0; |
| 3152 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3153 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3154 | /* Before jumping to another buffer, or moving the cursor for a left |
| 3155 | * click, stop Visual mode. */ |
| 3156 | if (VIsual_active |
| 3157 | && (wp->w_buffer != curwin->w_buffer |
Bram Moolenaar | 4033c55 | 2017-09-16 20:54:51 +0200 | [diff] [blame] | 3158 | || (!on_status_line && !on_sep_line |
Bram Moolenaar | f7ff6e8 | 2014-03-23 15:13:05 +0100 | [diff] [blame] | 3159 | #ifdef FEAT_FOLDING |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3160 | && ( |
Bram Moolenaar | f7ff6e8 | 2014-03-23 15:13:05 +0100 | [diff] [blame] | 3161 | # ifdef FEAT_RIGHTLEFT |
Bram Moolenaar | 0263146 | 2017-09-22 15:20:32 +0200 | [diff] [blame] | 3162 | wp->w_p_rl ? col < wp->w_width - wp->w_p_fdc : |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3163 | # endif |
Bram Moolenaar | f7ff6e8 | 2014-03-23 15:13:05 +0100 | [diff] [blame] | 3164 | col >= wp->w_p_fdc |
| 3165 | # ifdef FEAT_CMDWIN |
| 3166 | + (cmdwin_type == 0 && wp == curwin ? 0 : 1) |
| 3167 | # endif |
| 3168 | ) |
| 3169 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3170 | && (flags & MOUSE_MAY_STOP_VIS)))) |
| 3171 | { |
| 3172 | end_visual_mode(); |
| 3173 | redraw_curbuf_later(INVERTED); /* delete the inversion */ |
| 3174 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3175 | #ifdef FEAT_CMDWIN |
| 3176 | if (cmdwin_type != 0 && wp != curwin) |
| 3177 | { |
| 3178 | /* A click outside the command-line window: Use modeless |
Bram Moolenaar | f679a43 | 2010-03-02 18:16:09 +0100 | [diff] [blame] | 3179 | * selection if possible. Allow dragging the status lines. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3180 | on_sep_line = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3181 | # ifdef FEAT_CLIPBOARD |
| 3182 | if (on_status_line) |
| 3183 | return IN_STATUS_LINE; |
| 3184 | return IN_OTHER_WIN; |
| 3185 | # else |
| 3186 | row = 0; |
| 3187 | col += wp->w_wincol; |
| 3188 | wp = curwin; |
| 3189 | # endif |
| 3190 | } |
| 3191 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3192 | /* Only change window focus when not clicking on or dragging the |
| 3193 | * status line. Do change focus when releasing the mouse button |
| 3194 | * (MOUSE_FOCUS was set above if we dragged first). */ |
| 3195 | if (dragwin == NULL || (flags & MOUSE_RELEASED)) |
| 3196 | win_enter(wp, TRUE); /* can make wp invalid! */ |
Bram Moolenaar | c48369c | 2018-03-11 19:30:45 +0100 | [diff] [blame] | 3197 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3198 | if (curwin != old_curwin) |
Bram Moolenaar | c48369c | 2018-03-11 19:30:45 +0100 | [diff] [blame] | 3199 | { |
| 3200 | #ifdef CHECK_DOUBLE_CLICK |
| 3201 | /* set topline, to be able to check for double click ourselves */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3202 | set_mouse_topline(curwin); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3203 | #endif |
Bram Moolenaar | c48369c | 2018-03-11 19:30:45 +0100 | [diff] [blame] | 3204 | #ifdef FEAT_TERMINAL |
| 3205 | /* when entering a terminal window may change state */ |
| 3206 | term_win_entered(); |
| 3207 | #endif |
| 3208 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3209 | if (on_status_line) /* In (or below) status line */ |
| 3210 | { |
| 3211 | /* Don't use start_arrow() if we're in the same window */ |
| 3212 | if (curwin == old_curwin) |
| 3213 | return IN_STATUS_LINE; |
| 3214 | else |
| 3215 | return IN_STATUS_LINE | CURSOR_MOVED; |
| 3216 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3217 | if (on_sep_line) /* In (or below) status line */ |
| 3218 | { |
| 3219 | /* Don't use start_arrow() if we're in the same window */ |
| 3220 | if (curwin == old_curwin) |
| 3221 | return IN_SEP_LINE; |
| 3222 | else |
| 3223 | return IN_SEP_LINE | CURSOR_MOVED; |
| 3224 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3225 | |
| 3226 | curwin->w_cursor.lnum = curwin->w_topline; |
| 3227 | #ifdef FEAT_GUI |
| 3228 | /* remember topline, needed for double click */ |
| 3229 | gui_prev_topline = curwin->w_topline; |
| 3230 | # ifdef FEAT_DIFF |
| 3231 | gui_prev_topfill = curwin->w_topfill; |
| 3232 | # endif |
| 3233 | #endif |
| 3234 | } |
| 3235 | else if (on_status_line && which_button == MOUSE_LEFT) |
| 3236 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3237 | if (dragwin != NULL) |
| 3238 | { |
| 3239 | /* Drag the status line */ |
| 3240 | count = row - dragwin->w_winrow - dragwin->w_height + 1 |
| 3241 | - on_status_line; |
| 3242 | win_drag_status_line(dragwin, count); |
| 3243 | did_drag |= count; |
| 3244 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3245 | return IN_STATUS_LINE; /* Cursor didn't move */ |
| 3246 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3247 | else if (on_sep_line && which_button == MOUSE_LEFT) |
| 3248 | { |
| 3249 | if (dragwin != NULL) |
| 3250 | { |
| 3251 | /* Drag the separator column */ |
| 3252 | count = col - dragwin->w_wincol - dragwin->w_width + 1 |
| 3253 | - on_sep_line; |
| 3254 | win_drag_vsep_line(dragwin, count); |
| 3255 | did_drag |= count; |
| 3256 | } |
| 3257 | return IN_SEP_LINE; /* Cursor didn't move */ |
| 3258 | } |
Bram Moolenaar | eb163d7 | 2017-09-23 15:08:17 +0200 | [diff] [blame] | 3259 | #ifdef FEAT_MENU |
| 3260 | else if (in_winbar) |
| 3261 | { |
| 3262 | /* After a click on the window toolbar don't start Visual mode. */ |
| 3263 | return IN_OTHER_WIN | MOUSE_WINBAR; |
| 3264 | } |
| 3265 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3266 | else /* keep_window_focus must be TRUE */ |
| 3267 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3268 | /* before moving the cursor for a left click, stop Visual mode */ |
| 3269 | if (flags & MOUSE_MAY_STOP_VIS) |
| 3270 | { |
| 3271 | end_visual_mode(); |
| 3272 | redraw_curbuf_later(INVERTED); /* delete the inversion */ |
| 3273 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3274 | |
| 3275 | #if defined(FEAT_CMDWIN) && defined(FEAT_CLIPBOARD) |
| 3276 | /* Continue a modeless selection in another window. */ |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 3277 | if (cmdwin_type != 0 && row < curwin->w_winrow) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3278 | return IN_OTHER_WIN; |
| 3279 | #endif |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3280 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3281 | if (in_popup_win) |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3282 | { |
| 3283 | if (popup_dragwin != NULL) |
| 3284 | { |
| 3285 | // dragging a popup window |
| 3286 | popup_drag(popup_dragwin); |
| 3287 | return IN_UNKNOWN; |
| 3288 | } |
| 3289 | // continue a modeless selection in a popup window |
Bram Moolenaar | 2e62b56 | 2019-06-30 18:07:00 +0200 | [diff] [blame] | 3290 | click_in_popup_win = NULL; |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3291 | return IN_OTHER_WIN; |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 3292 | } |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3293 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3294 | |
| 3295 | row -= W_WINROW(curwin); |
Bram Moolenaar | 53f8174 | 2017-09-22 14:35:51 +0200 | [diff] [blame] | 3296 | col -= curwin->w_wincol; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3297 | |
| 3298 | /* |
| 3299 | * When clicking beyond the end of the window, scroll the screen. |
| 3300 | * Scroll by however many rows outside the window we are. |
| 3301 | */ |
| 3302 | if (row < 0) |
| 3303 | { |
| 3304 | count = 0; |
| 3305 | for (first = TRUE; curwin->w_topline > 1; ) |
| 3306 | { |
| 3307 | #ifdef FEAT_DIFF |
| 3308 | if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)) |
| 3309 | ++count; |
| 3310 | else |
| 3311 | #endif |
| 3312 | count += plines(curwin->w_topline - 1); |
| 3313 | if (!first && count > -row) |
| 3314 | break; |
| 3315 | first = FALSE; |
| 3316 | #ifdef FEAT_FOLDING |
Bram Moolenaar | cde8854 | 2015-08-11 19:14:00 +0200 | [diff] [blame] | 3317 | (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3318 | #endif |
| 3319 | #ifdef FEAT_DIFF |
| 3320 | if (curwin->w_topfill < diff_check(curwin, curwin->w_topline)) |
| 3321 | ++curwin->w_topfill; |
| 3322 | else |
| 3323 | #endif |
| 3324 | { |
| 3325 | --curwin->w_topline; |
| 3326 | #ifdef FEAT_DIFF |
| 3327 | curwin->w_topfill = 0; |
| 3328 | #endif |
| 3329 | } |
| 3330 | } |
| 3331 | #ifdef FEAT_DIFF |
| 3332 | check_topfill(curwin, FALSE); |
| 3333 | #endif |
| 3334 | curwin->w_valid &= |
| 3335 | ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP); |
| 3336 | redraw_later(VALID); |
| 3337 | row = 0; |
| 3338 | } |
| 3339 | else if (row >= curwin->w_height) |
| 3340 | { |
| 3341 | count = 0; |
| 3342 | for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; ) |
| 3343 | { |
| 3344 | #ifdef FEAT_DIFF |
| 3345 | if (curwin->w_topfill > 0) |
| 3346 | ++count; |
| 3347 | else |
| 3348 | #endif |
| 3349 | count += plines(curwin->w_topline); |
| 3350 | if (!first && count > row - curwin->w_height + 1) |
| 3351 | break; |
| 3352 | first = FALSE; |
| 3353 | #ifdef FEAT_FOLDING |
| 3354 | if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline) |
| 3355 | && curwin->w_topline == curbuf->b_ml.ml_line_count) |
| 3356 | break; |
| 3357 | #endif |
| 3358 | #ifdef FEAT_DIFF |
| 3359 | if (curwin->w_topfill > 0) |
| 3360 | --curwin->w_topfill; |
| 3361 | else |
| 3362 | #endif |
| 3363 | { |
| 3364 | ++curwin->w_topline; |
| 3365 | #ifdef FEAT_DIFF |
| 3366 | curwin->w_topfill = |
| 3367 | diff_check_fill(curwin, curwin->w_topline); |
| 3368 | #endif |
| 3369 | } |
| 3370 | } |
| 3371 | #ifdef FEAT_DIFF |
| 3372 | check_topfill(curwin, FALSE); |
| 3373 | #endif |
| 3374 | redraw_later(VALID); |
| 3375 | curwin->w_valid &= |
| 3376 | ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP); |
| 3377 | row = curwin->w_height - 1; |
| 3378 | } |
| 3379 | else if (row == 0) |
| 3380 | { |
| 3381 | /* When dragging the mouse, while the text has been scrolled up as |
| 3382 | * far as it goes, moving the mouse in the top line should scroll |
| 3383 | * the text down (done later when recomputing w_topline). */ |
Bram Moolenaar | 8cfdc0d | 2007-05-06 14:12:36 +0000 | [diff] [blame] | 3384 | if (mouse_dragging > 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3385 | && curwin->w_cursor.lnum |
| 3386 | == curwin->w_buffer->b_ml.ml_line_count |
| 3387 | && curwin->w_cursor.lnum == curwin->w_topline) |
| 3388 | curwin->w_valid &= ~(VALID_TOPLINE); |
| 3389 | } |
| 3390 | } |
| 3391 | |
| 3392 | #ifdef FEAT_FOLDING |
| 3393 | /* Check for position outside of the fold column. */ |
| 3394 | if ( |
| 3395 | # ifdef FEAT_RIGHTLEFT |
Bram Moolenaar | 0263146 | 2017-09-22 15:20:32 +0200 | [diff] [blame] | 3396 | curwin->w_p_rl ? col < curwin->w_width - curwin->w_p_fdc : |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3397 | # endif |
| 3398 | col >= curwin->w_p_fdc |
| 3399 | # ifdef FEAT_CMDWIN |
| 3400 | + (cmdwin_type == 0 ? 0 : 1) |
| 3401 | # endif |
| 3402 | ) |
| 3403 | mouse_char = ' '; |
| 3404 | #endif |
| 3405 | |
| 3406 | /* compute the position in the buffer line from the posn on the screen */ |
Bram Moolenaar | 9d5ffce | 2019-07-26 21:01:29 +0200 | [diff] [blame] | 3407 | if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum, NULL)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3408 | mouse_past_bottom = TRUE; |
| 3409 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3410 | /* Start Visual mode before coladvance(), for when 'sel' != "old" */ |
| 3411 | if ((flags & MOUSE_MAY_VIS) && !VIsual_active) |
| 3412 | { |
| 3413 | check_visual_highlight(); |
| 3414 | VIsual = old_cursor; |
| 3415 | VIsual_active = TRUE; |
| 3416 | VIsual_reselect = TRUE; |
| 3417 | /* if 'selectmode' contains "mouse", start Select mode */ |
| 3418 | may_start_select('o'); |
| 3419 | setmouse(); |
Bram Moolenaar | 7df351e | 2006-01-23 22:30:28 +0000 | [diff] [blame] | 3420 | if (p_smd && msg_silent == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3421 | redraw_cmdline = TRUE; /* show visual mode later */ |
| 3422 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3423 | |
| 3424 | curwin->w_curswant = col; |
| 3425 | curwin->w_set_curswant = FALSE; /* May still have been TRUE */ |
| 3426 | if (coladvance(col) == FAIL) /* Mouse click beyond end of line */ |
| 3427 | { |
| 3428 | if (inclusive != NULL) |
| 3429 | *inclusive = TRUE; |
| 3430 | mouse_past_eol = TRUE; |
| 3431 | } |
| 3432 | else if (inclusive != NULL) |
| 3433 | *inclusive = FALSE; |
| 3434 | |
| 3435 | count = IN_BUFFER; |
| 3436 | if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum |
| 3437 | || curwin->w_cursor.col != old_cursor.col) |
| 3438 | count |= CURSOR_MOVED; /* Cursor has moved */ |
| 3439 | |
Bram Moolenaar | 4c063a0 | 2019-06-10 21:24:12 +0200 | [diff] [blame] | 3440 | # ifdef FEAT_FOLDING |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3441 | if (mouse_char == '+') |
| 3442 | count |= MOUSE_FOLD_OPEN; |
| 3443 | else if (mouse_char != ' ') |
| 3444 | count |= MOUSE_FOLD_CLOSE; |
Bram Moolenaar | 4c063a0 | 2019-06-10 21:24:12 +0200 | [diff] [blame] | 3445 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3446 | |
| 3447 | return count; |
| 3448 | } |
Bram Moolenaar | 4c063a0 | 2019-06-10 21:24:12 +0200 | [diff] [blame] | 3449 | #endif |
| 3450 | |
| 3451 | // Functions also used for popup windows. |
| 3452 | #if defined(FEAT_MOUSE) || defined(FEAT_TEXT_PROP) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3453 | |
| 3454 | /* |
Bram Moolenaar | 9d5ffce | 2019-07-26 21:01:29 +0200 | [diff] [blame] | 3455 | * Compute the buffer line position from the screen position "rowp" / "colp" in |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3456 | * window "win". |
Bram Moolenaar | 9d5ffce | 2019-07-26 21:01:29 +0200 | [diff] [blame] | 3457 | * "plines_cache" can be NULL (no cache) or an array with "win->w_height" |
| 3458 | * entries that caches the plines_win() result from a previous call. Entry is |
| 3459 | * zero if not computed yet. There must be no text or setting changes since |
| 3460 | * the entry is put in the cache. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3461 | * Returns TRUE if the position is below the last line. |
| 3462 | */ |
| 3463 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 3464 | mouse_comp_pos( |
| 3465 | win_T *win, |
| 3466 | int *rowp, |
| 3467 | int *colp, |
Bram Moolenaar | 9d5ffce | 2019-07-26 21:01:29 +0200 | [diff] [blame] | 3468 | linenr_T *lnump, |
| 3469 | int *plines_cache) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3470 | { |
| 3471 | int col = *colp; |
| 3472 | int row = *rowp; |
| 3473 | linenr_T lnum; |
| 3474 | int retval = FALSE; |
| 3475 | int off; |
| 3476 | int count; |
| 3477 | |
| 3478 | #ifdef FEAT_RIGHTLEFT |
| 3479 | if (win->w_p_rl) |
Bram Moolenaar | 0263146 | 2017-09-22 15:20:32 +0200 | [diff] [blame] | 3480 | col = win->w_width - 1 - col; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3481 | #endif |
| 3482 | |
| 3483 | lnum = win->w_topline; |
| 3484 | |
| 3485 | while (row > 0) |
| 3486 | { |
Bram Moolenaar | 9d5ffce | 2019-07-26 21:01:29 +0200 | [diff] [blame] | 3487 | int cache_idx = lnum - win->w_topline; |
| 3488 | |
| 3489 | if (plines_cache != NULL && plines_cache[cache_idx] > 0) |
| 3490 | count = plines_cache[cache_idx]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3491 | else |
Bram Moolenaar | 9d5ffce | 2019-07-26 21:01:29 +0200 | [diff] [blame] | 3492 | { |
| 3493 | #ifdef FEAT_DIFF |
| 3494 | /* Don't include filler lines in "count" */ |
| 3495 | if (win->w_p_diff |
| 3496 | # ifdef FEAT_FOLDING |
| 3497 | && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL) |
| 3498 | # endif |
| 3499 | ) |
| 3500 | { |
| 3501 | if (lnum == win->w_topline) |
| 3502 | row -= win->w_topfill; |
| 3503 | else |
| 3504 | row -= diff_check_fill(win, lnum); |
| 3505 | count = plines_win_nofill(win, lnum, TRUE); |
| 3506 | } |
| 3507 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3508 | #endif |
Bram Moolenaar | 9d5ffce | 2019-07-26 21:01:29 +0200 | [diff] [blame] | 3509 | count = plines_win(win, lnum, TRUE); |
| 3510 | if (plines_cache != NULL) |
| 3511 | plines_cache[cache_idx] = count; |
| 3512 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3513 | if (count > row) |
| 3514 | break; /* Position is in this buffer line. */ |
| 3515 | #ifdef FEAT_FOLDING |
| 3516 | (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL); |
| 3517 | #endif |
| 3518 | if (lnum == win->w_buffer->b_ml.ml_line_count) |
| 3519 | { |
| 3520 | retval = TRUE; |
| 3521 | break; /* past end of file */ |
| 3522 | } |
| 3523 | row -= count; |
| 3524 | ++lnum; |
| 3525 | } |
| 3526 | |
| 3527 | if (!retval) |
| 3528 | { |
| 3529 | /* Compute the column without wrapping. */ |
| 3530 | off = win_col_off(win) - win_col_off2(win); |
| 3531 | if (col < off) |
| 3532 | col = off; |
Bram Moolenaar | 0263146 | 2017-09-22 15:20:32 +0200 | [diff] [blame] | 3533 | col += row * (win->w_width - off); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3534 | /* add skip column (for long wrapping line) */ |
| 3535 | col += win->w_skipcol; |
| 3536 | } |
| 3537 | |
| 3538 | if (!win->w_p_wrap) |
| 3539 | col += win->w_leftcol; |
| 3540 | |
| 3541 | /* skip line number and fold column in front of the line */ |
| 3542 | col -= win_col_off(win); |
| 3543 | if (col < 0) |
| 3544 | { |
| 3545 | #ifdef FEAT_NETBEANS_INTG |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 3546 | netbeans_gutter_click(lnum); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3547 | #endif |
| 3548 | col = 0; |
| 3549 | } |
| 3550 | |
| 3551 | *colp = col; |
| 3552 | *rowp = row; |
| 3553 | *lnump = lnum; |
| 3554 | return retval; |
| 3555 | } |
| 3556 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3557 | /* |
| 3558 | * Find the window at screen position "*rowp" and "*colp". The positions are |
| 3559 | * updated to become relative to the top-left of the window. |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3560 | * When "popup" is FAIL_POPUP and the position is in a popup window then NULL |
| 3561 | * is returned. When "popup" is IGNORE_POPUP then do not even check popup |
| 3562 | * windows. |
Bram Moolenaar | 989a70c | 2017-08-16 22:46:01 +0200 | [diff] [blame] | 3563 | * Returns NULL when something is wrong. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3564 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3565 | win_T * |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3566 | mouse_find_win(int *rowp, int *colp, mouse_find_T popup UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3567 | { |
| 3568 | frame_T *fp; |
Bram Moolenaar | 989a70c | 2017-08-16 22:46:01 +0200 | [diff] [blame] | 3569 | win_T *wp; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3570 | |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3571 | #ifdef FEAT_TEXT_PROP |
| 3572 | win_T *pwp = NULL; |
| 3573 | |
| 3574 | if (popup != IGNORE_POPUP) |
| 3575 | { |
| 3576 | popup_reset_handled(); |
| 3577 | while ((wp = find_next_popup(TRUE)) != NULL) |
| 3578 | { |
| 3579 | if (*rowp >= wp->w_winrow && *rowp < wp->w_winrow + popup_height(wp) |
| 3580 | && *colp >= wp->w_wincol |
Bram Moolenaar | f9c85f5 | 2019-06-29 07:41:35 +0200 | [diff] [blame] | 3581 | && *colp < wp->w_wincol + popup_width(wp)) |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3582 | pwp = wp; |
| 3583 | } |
| 3584 | if (pwp != NULL) |
| 3585 | { |
| 3586 | if (popup == FAIL_POPUP) |
| 3587 | return NULL; |
| 3588 | *rowp -= pwp->w_winrow; |
| 3589 | *colp -= pwp->w_wincol; |
| 3590 | return pwp; |
| 3591 | } |
| 3592 | } |
| 3593 | #endif |
| 3594 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3595 | fp = topframe; |
Bram Moolenaar | 1d2ba7f | 2006-02-14 22:29:30 +0000 | [diff] [blame] | 3596 | *rowp -= firstwin->w_winrow; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3597 | for (;;) |
| 3598 | { |
| 3599 | if (fp->fr_layout == FR_LEAF) |
| 3600 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3601 | if (fp->fr_layout == FR_ROW) |
| 3602 | { |
| 3603 | for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next) |
| 3604 | { |
| 3605 | if (*colp < fp->fr_width) |
| 3606 | break; |
| 3607 | *colp -= fp->fr_width; |
| 3608 | } |
| 3609 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3610 | else /* fr_layout == FR_COL */ |
| 3611 | { |
| 3612 | for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next) |
| 3613 | { |
| 3614 | if (*rowp < fp->fr_height) |
| 3615 | break; |
| 3616 | *rowp -= fp->fr_height; |
| 3617 | } |
| 3618 | } |
| 3619 | } |
Bram Moolenaar | 989a70c | 2017-08-16 22:46:01 +0200 | [diff] [blame] | 3620 | /* When using a timer that closes a window the window might not actually |
| 3621 | * exist. */ |
| 3622 | FOR_ALL_WINDOWS(wp) |
| 3623 | if (wp == fp->fr_win) |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 3624 | { |
| 3625 | #ifdef FEAT_MENU |
| 3626 | *rowp -= wp->w_winbar_height; |
| 3627 | #endif |
Bram Moolenaar | 989a70c | 2017-08-16 22:46:01 +0200 | [diff] [blame] | 3628 | return wp; |
Bram Moolenaar | 1b9645d | 2017-09-17 23:03:31 +0200 | [diff] [blame] | 3629 | } |
Bram Moolenaar | 989a70c | 2017-08-16 22:46:01 +0200 | [diff] [blame] | 3630 | return NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3631 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3632 | |
Bram Moolenaar | 860cae1 | 2010-06-05 23:22:07 +0200 | [diff] [blame] | 3633 | #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3634 | || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \ |
Bram Moolenaar | 658a154 | 2018-03-03 19:29:43 +0100 | [diff] [blame] | 3635 | || defined(FEAT_GUI_PHOTON) || defined(FEAT_TERM_POPUP_MENU) \ |
| 3636 | || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3637 | /* |
| 3638 | * Translate window coordinates to buffer position without any side effects |
| 3639 | */ |
| 3640 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 3641 | get_fpos_of_mouse(pos_T *mpos) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3642 | { |
| 3643 | win_T *wp; |
| 3644 | int row = mouse_row; |
| 3645 | int col = mouse_col; |
| 3646 | |
| 3647 | if (row < 0 || col < 0) /* check if it makes sense */ |
| 3648 | return IN_UNKNOWN; |
| 3649 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3650 | /* find the window where the row is in */ |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 3651 | wp = mouse_find_win(&row, &col, FAIL_POPUP); |
Bram Moolenaar | 989a70c | 2017-08-16 22:46:01 +0200 | [diff] [blame] | 3652 | if (wp == NULL) |
| 3653 | return IN_UNKNOWN; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3654 | /* |
| 3655 | * winpos and height may change in win_enter()! |
| 3656 | */ |
| 3657 | if (row >= wp->w_height) /* In (or below) status line */ |
| 3658 | return IN_STATUS_LINE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3659 | if (col >= wp->w_width) /* In vertical separator line */ |
| 3660 | return IN_SEP_LINE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3661 | |
| 3662 | if (wp != curwin) |
| 3663 | return IN_UNKNOWN; |
| 3664 | |
| 3665 | /* compute the position in the buffer line from the posn on the screen */ |
Bram Moolenaar | 9d5ffce | 2019-07-26 21:01:29 +0200 | [diff] [blame] | 3666 | if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum, NULL)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3667 | return IN_STATUS_LINE; /* past bottom */ |
| 3668 | |
| 3669 | mpos->col = vcol2col(wp, mpos->lnum, col); |
| 3670 | |
| 3671 | if (mpos->col > 0) |
| 3672 | --mpos->col; |
Bram Moolenaar | a9d52e3 | 2010-07-31 16:44:19 +0200 | [diff] [blame] | 3673 | mpos->coladd = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3674 | return IN_BUFFER; |
| 3675 | } |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 3676 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3677 | |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 3678 | #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MAC) \ |
| 3679 | || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_MSWIN) \ |
Bram Moolenaar | 3767b61 | 2018-03-03 19:51:58 +0100 | [diff] [blame] | 3680 | || defined(FEAT_GUI_PHOTON) || defined(FEAT_BEVAL) \ |
| 3681 | || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3682 | /* |
| 3683 | * Convert a virtual (screen) column to a character column. |
| 3684 | * The first column is one. |
| 3685 | */ |
| 3686 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 3687 | vcol2col(win_T *wp, linenr_T lnum, int vcol) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3688 | { |
| 3689 | /* try to advance to the specified column */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3690 | int count = 0; |
| 3691 | char_u *ptr; |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 3692 | char_u *line; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3693 | |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 3694 | line = ptr = ml_get_buf(wp->w_buffer, lnum, FALSE); |
Bram Moolenaar | b6101cf | 2012-10-21 00:58:39 +0200 | [diff] [blame] | 3695 | while (count < vcol && *ptr != NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3696 | { |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 3697 | count += win_lbr_chartabsize(wp, line, ptr, count, NULL); |
Bram Moolenaar | 91acfff | 2017-03-12 19:22:36 +0100 | [diff] [blame] | 3698 | MB_PTR_ADV(ptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3699 | } |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 3700 | return (int)(ptr - line); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3701 | } |
| 3702 | #endif |
| 3703 | |
| 3704 | #endif /* FEAT_MOUSE */ |
| 3705 | |
Bram Moolenaar | 4f97475 | 2019-02-17 17:44:42 +0100 | [diff] [blame] | 3706 | #if defined(FEAT_GUI) || defined(MSWIN) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3707 | /* |
| 3708 | * Called when focus changed. Used for the GUI or for systems where this can |
| 3709 | * be done in the console (Win32). |
| 3710 | */ |
| 3711 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 3712 | ui_focus_change( |
| 3713 | int in_focus) /* TRUE if focus gained. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3714 | { |
| 3715 | static time_t last_time = (time_t)0; |
| 3716 | int need_redraw = FALSE; |
| 3717 | |
| 3718 | /* When activated: Check if any file was modified outside of Vim. |
| 3719 | * Only do this when not done within the last two seconds (could get |
| 3720 | * several events in a row). */ |
| 3721 | if (in_focus && last_time + 2 < time(NULL)) |
| 3722 | { |
| 3723 | need_redraw = check_timestamps( |
| 3724 | # ifdef FEAT_GUI |
| 3725 | gui.in_use |
| 3726 | # else |
| 3727 | FALSE |
| 3728 | # endif |
| 3729 | ); |
| 3730 | last_time = time(NULL); |
| 3731 | } |
| 3732 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3733 | /* |
| 3734 | * Fire the focus gained/lost autocommand. |
| 3735 | */ |
| 3736 | need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED |
| 3737 | : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3738 | |
| 3739 | if (need_redraw) |
| 3740 | { |
| 3741 | /* Something was executed, make sure the cursor is put back where it |
| 3742 | * belongs. */ |
| 3743 | need_wait_return = FALSE; |
| 3744 | |
| 3745 | if (State & CMDLINE) |
| 3746 | redrawcmdline(); |
| 3747 | else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE |
| 3748 | || State == EXTERNCMD || State == CONFIRM || exmode_active) |
| 3749 | repeat_message(); |
| 3750 | else if ((State & NORMAL) || (State & INSERT)) |
| 3751 | { |
| 3752 | if (must_redraw != 0) |
| 3753 | update_screen(0); |
| 3754 | setcursor(); |
| 3755 | } |
| 3756 | cursor_on(); /* redrawing may have switched it off */ |
Bram Moolenaar | a338adc | 2018-01-31 20:51:47 +0100 | [diff] [blame] | 3757 | out_flush_cursor(FALSE, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3758 | # ifdef FEAT_GUI |
| 3759 | if (gui.in_use) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3760 | gui_update_scrollbars(FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3761 | # endif |
| 3762 | } |
| 3763 | #ifdef FEAT_TITLE |
| 3764 | /* File may have been changed from 'readonly' to 'noreadonly' */ |
| 3765 | if (need_maketitle) |
| 3766 | maketitle(); |
| 3767 | #endif |
| 3768 | } |
| 3769 | #endif |
| 3770 | |
Bram Moolenaar | f2bd8ef | 2018-03-04 18:08:14 +0100 | [diff] [blame] | 3771 | #if defined(HAVE_INPUT_METHOD) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3772 | /* |
| 3773 | * Save current Input Method status to specified place. |
| 3774 | */ |
| 3775 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 3776 | im_save_status(long *psave) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3777 | { |
| 3778 | /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always |
| 3779 | * disabled then (but might start later). |
| 3780 | * Also don't save when inside a mapping, vgetc_im_active has not been set |
| 3781 | * then. |
| 3782 | * And don't save when the keys were stuffed (e.g., for a "." command). |
| 3783 | * And don't save when the GUI is running but our window doesn't have |
| 3784 | * input focus (e.g., when a find dialog is open). */ |
| 3785 | if (!p_imdisable && KeyTyped && !KeyStuffed |
| 3786 | # ifdef FEAT_XIM |
| 3787 | && xic != NULL |
| 3788 | # endif |
| 3789 | # ifdef FEAT_GUI |
| 3790 | && (!gui.in_use || gui.in_focus) |
| 3791 | # endif |
| 3792 | ) |
| 3793 | { |
| 3794 | /* Do save when IM is on, or IM is off and saved status is on. */ |
| 3795 | if (vgetc_im_active) |
| 3796 | *psave = B_IMODE_IM; |
| 3797 | else if (*psave == B_IMODE_IM) |
| 3798 | *psave = B_IMODE_NONE; |
| 3799 | } |
| 3800 | } |
| 3801 | #endif |