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; |
Bram Moolenaar | 6cdce2a | 2019-09-07 23:25:09 +0200 | [diff] [blame] | 482 | # ifdef FEAT_JOB_CHANNEL |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 483 | brief_wait = TRUE; |
Bram Moolenaar | 6cdce2a | 2019-09-07 23:25:09 +0200 | [diff] [blame] | 484 | # endif |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 485 | } |
| 486 | # endif |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 487 | if (wait_func(due_time, interrupted, ignore_input)) |
| 488 | return OK; |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 489 | if ((interrupted != NULL && *interrupted) |
| 490 | # ifdef FEAT_JOB_CHANNEL |
| 491 | || brief_wait |
| 492 | # endif |
| 493 | ) |
| 494 | // Nothing available, but need to return so that side effects get |
| 495 | // handled, such as handling a message on a channel. |
Bram Moolenaar | a338adc | 2018-01-31 20:51:47 +0100 | [diff] [blame] | 496 | return FAIL; |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 497 | if (wtime > 0) |
| 498 | remaining -= due_time; |
| 499 | } |
| 500 | return FAIL; |
| 501 | } |
| 502 | #endif |
| 503 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 504 | /* |
Bram Moolenaar | c46af53 | 2019-01-09 22:24:49 +0100 | [diff] [blame] | 505 | * Return non-zero if a character is available. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 506 | */ |
| 507 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 508 | ui_char_avail(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 509 | { |
| 510 | #ifdef FEAT_GUI |
| 511 | if (gui.in_use) |
| 512 | { |
| 513 | gui_mch_update(); |
| 514 | return input_available(); |
| 515 | } |
| 516 | #endif |
| 517 | #ifndef NO_CONSOLE |
| 518 | # ifdef NO_CONSOLE_INPUT |
| 519 | if (no_console_input()) |
| 520 | return 0; |
| 521 | # endif |
| 522 | return mch_char_avail(); |
| 523 | #else |
| 524 | return 0; |
| 525 | #endif |
| 526 | } |
| 527 | |
| 528 | /* |
| 529 | * Delay for the given number of milliseconds. If ignoreinput is FALSE then we |
| 530 | * cancel the delay if a key is hit. |
| 531 | */ |
| 532 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 533 | ui_delay(long msec, int ignoreinput) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 534 | { |
| 535 | #ifdef FEAT_GUI |
| 536 | if (gui.in_use && !ignoreinput) |
Bram Moolenaar | c9e649a | 2017-12-18 18:14:47 +0100 | [diff] [blame] | 537 | gui_wait_for_chars(msec, typebuf.tb_change_cnt); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 538 | else |
| 539 | #endif |
| 540 | mch_delay(msec, ignoreinput); |
| 541 | } |
| 542 | |
| 543 | /* |
| 544 | * If the machine has job control, use it to suspend the program, |
| 545 | * otherwise fake it by starting a new shell. |
| 546 | * When running the GUI iconify the window. |
| 547 | */ |
| 548 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 549 | ui_suspend(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 550 | { |
| 551 | #ifdef FEAT_GUI |
| 552 | if (gui.in_use) |
| 553 | { |
| 554 | gui_mch_iconify(); |
| 555 | return; |
| 556 | } |
| 557 | #endif |
| 558 | mch_suspend(); |
| 559 | } |
| 560 | |
| 561 | #if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__) |
| 562 | /* |
| 563 | * When the OS can't really suspend, call this function to start a shell. |
| 564 | * This is never called in the GUI. |
| 565 | */ |
| 566 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 567 | suspend_shell(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 568 | { |
| 569 | if (*p_sh == NUL) |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 570 | emsg(_(e_shellempty)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 571 | else |
| 572 | { |
Bram Moolenaar | 32526b3 | 2019-01-19 17:43:09 +0100 | [diff] [blame] | 573 | msg_puts(_("new shell started\n")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 574 | do_shell(NULL, 0); |
| 575 | } |
| 576 | } |
| 577 | #endif |
| 578 | |
| 579 | /* |
| 580 | * Try to get the current Vim shell size. Put the result in Rows and Columns. |
| 581 | * Use the new sizes as defaults for 'columns' and 'lines'. |
| 582 | * Return OK when size could be determined, FAIL otherwise. |
| 583 | */ |
| 584 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 585 | ui_get_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 586 | { |
| 587 | int retval; |
| 588 | |
| 589 | #ifdef FEAT_GUI |
| 590 | if (gui.in_use) |
| 591 | retval = gui_get_shellsize(); |
| 592 | else |
| 593 | #endif |
| 594 | retval = mch_get_shellsize(); |
| 595 | |
| 596 | check_shellsize(); |
| 597 | |
| 598 | /* adjust the default for 'lines' and 'columns' */ |
| 599 | if (retval == OK) |
| 600 | { |
| 601 | set_number_default("lines", Rows); |
| 602 | set_number_default("columns", Columns); |
| 603 | } |
| 604 | return retval; |
| 605 | } |
| 606 | |
| 607 | /* |
| 608 | * Set the size of the Vim shell according to Rows and Columns, if possible. |
| 609 | * The gui_set_shellsize() or mch_set_shellsize() function will try to set the |
| 610 | * new size. If this is not possible, it will adjust Rows and Columns. |
| 611 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 612 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 613 | ui_set_shellsize( |
| 614 | int mustset UNUSED) /* set by the user */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 615 | { |
| 616 | #ifdef FEAT_GUI |
| 617 | if (gui.in_use) |
Bram Moolenaar | 8968a31 | 2013-07-03 16:58:44 +0200 | [diff] [blame] | 618 | gui_set_shellsize(mustset, TRUE, RESIZE_BOTH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 619 | else |
| 620 | #endif |
| 621 | mch_set_shellsize(); |
| 622 | } |
| 623 | |
| 624 | /* |
| 625 | * Called when Rows and/or Columns changed. Adjust scroll region and mouse |
| 626 | * region. |
| 627 | */ |
| 628 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 629 | ui_new_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 630 | { |
| 631 | if (full_screen && !exiting) |
| 632 | { |
| 633 | #ifdef FEAT_GUI |
| 634 | if (gui.in_use) |
| 635 | gui_new_shellsize(); |
| 636 | else |
| 637 | #endif |
| 638 | mch_new_shellsize(); |
| 639 | } |
| 640 | } |
| 641 | |
Bram Moolenaar | 6bc9305 | 2019-04-06 20:00:19 +0200 | [diff] [blame] | 642 | #if ((defined(FEAT_EVAL) || defined(FEAT_TERMINAL)) \ |
Bram Moolenaar | 3d3f217 | 2019-04-06 17:56:05 +0200 | [diff] [blame] | 643 | && (defined(FEAT_GUI) \ |
Bram Moolenaar | 16c34c3 | 2019-04-06 22:01:24 +0200 | [diff] [blame] | 644 | || defined(MSWIN) \ |
Bram Moolenaar | 3d3f217 | 2019-04-06 17:56:05 +0200 | [diff] [blame] | 645 | || (defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)))) \ |
Bram Moolenaar | fa1e90c | 2019-04-06 17:47:40 +0200 | [diff] [blame] | 646 | || defined(PROTO) |
| 647 | /* |
| 648 | * Get the window position in pixels, if possible. |
| 649 | * Return FAIL when not possible. |
| 650 | */ |
| 651 | int |
Bram Moolenaar | bd67aac | 2019-09-21 23:09:04 +0200 | [diff] [blame] | 652 | ui_get_winpos(int *x, int *y, varnumber_T timeout UNUSED) |
Bram Moolenaar | fa1e90c | 2019-04-06 17:47:40 +0200 | [diff] [blame] | 653 | { |
| 654 | # ifdef FEAT_GUI |
| 655 | if (gui.in_use) |
| 656 | return gui_mch_get_winpos(x, y); |
| 657 | # endif |
Bram Moolenaar | afde13b | 2019-04-28 19:46:49 +0200 | [diff] [blame] | 658 | # if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL)) |
Bram Moolenaar | 16c34c3 | 2019-04-06 22:01:24 +0200 | [diff] [blame] | 659 | return mch_get_winpos(x, y); |
Bram Moolenaar | 6bc9305 | 2019-04-06 20:00:19 +0200 | [diff] [blame] | 660 | # else |
Bram Moolenaar | 16c34c3 | 2019-04-06 22:01:24 +0200 | [diff] [blame] | 661 | # if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE) |
| 662 | return term_get_winpos(x, y, timeout); |
| 663 | # else |
Bram Moolenaar | 6bc9305 | 2019-04-06 20:00:19 +0200 | [diff] [blame] | 664 | return FAIL; |
Bram Moolenaar | 16c34c3 | 2019-04-06 22:01:24 +0200 | [diff] [blame] | 665 | # endif |
Bram Moolenaar | fa1e90c | 2019-04-06 17:47:40 +0200 | [diff] [blame] | 666 | # endif |
| 667 | } |
| 668 | #endif |
| 669 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 670 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 671 | ui_breakcheck(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 672 | { |
Bram Moolenaar | b9c31e7 | 2016-09-29 15:18:57 +0200 | [diff] [blame] | 673 | ui_breakcheck_force(FALSE); |
| 674 | } |
| 675 | |
| 676 | /* |
| 677 | * When "force" is true also check when the terminal is not in raw mode. |
| 678 | * This is useful to read input on channels. |
| 679 | */ |
| 680 | void |
| 681 | ui_breakcheck_force(int force) |
| 682 | { |
Bram Moolenaar | 48d23bb | 2018-11-20 02:42:43 +0100 | [diff] [blame] | 683 | static int recursive = FALSE; |
| 684 | int save_updating_screen = updating_screen; |
Bram Moolenaar | e3caa11 | 2017-01-31 22:07:42 +0100 | [diff] [blame] | 685 | |
Bram Moolenaar | 48d23bb | 2018-11-20 02:42:43 +0100 | [diff] [blame] | 686 | // We could be called recursively if stderr is redirected, calling |
| 687 | // fill_input_buf() calls settmode() when stdin isn't a tty. settmode() |
| 688 | // calls vgetorpeek() which calls ui_breakcheck() again. |
| 689 | if (recursive) |
| 690 | return; |
| 691 | recursive = TRUE; |
| 692 | |
| 693 | // We do not want gui_resize_shell() to redraw the screen here. |
Bram Moolenaar | e3caa11 | 2017-01-31 22:07:42 +0100 | [diff] [blame] | 694 | ++updating_screen; |
| 695 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 696 | #ifdef FEAT_GUI |
| 697 | if (gui.in_use) |
| 698 | gui_mch_update(); |
| 699 | else |
| 700 | #endif |
Bram Moolenaar | b9c31e7 | 2016-09-29 15:18:57 +0200 | [diff] [blame] | 701 | mch_breakcheck(force); |
Bram Moolenaar | e3caa11 | 2017-01-31 22:07:42 +0100 | [diff] [blame] | 702 | |
Bram Moolenaar | 42335f5 | 2018-09-13 15:33:43 +0200 | [diff] [blame] | 703 | if (save_updating_screen) |
| 704 | updating_screen = TRUE; |
Bram Moolenaar | 0cb8ac7 | 2018-05-11 22:01:51 +0200 | [diff] [blame] | 705 | else |
Bram Moolenaar | 68a4b04 | 2019-05-29 22:28:29 +0200 | [diff] [blame] | 706 | after_updating_screen(FALSE); |
Bram Moolenaar | 48d23bb | 2018-11-20 02:42:43 +0100 | [diff] [blame] | 707 | |
| 708 | recursive = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | /***************************************************************************** |
| 712 | * Functions for copying and pasting text between applications. |
| 713 | * This is always included in a GUI version, but may also be included when the |
| 714 | * clipboard and mouse is available to a terminal version such as xterm. |
| 715 | * Note: there are some more functions in ops.c that handle selection stuff. |
| 716 | * |
| 717 | * Also note that the majority of functions here deal with the X 'primary' |
| 718 | * (visible - for Visual mode use) selection, and only that. There are no |
| 719 | * versions of these for the 'clipboard' selection, as Visual mode has no use |
| 720 | * for them. |
| 721 | */ |
| 722 | |
| 723 | #if defined(FEAT_CLIPBOARD) || defined(PROTO) |
| 724 | |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 725 | static void clip_gen_lose_selection(Clipboard_T *cbd); |
| 726 | static int clip_gen_own_selection(Clipboard_T *cbd); |
| 727 | #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM) |
| 728 | static int clip_x11_owner_exists(Clipboard_T *cbd); |
| 729 | #endif |
| 730 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 731 | /* |
| 732 | * Selection stuff using Visual mode, for cutting and pasting text to other |
| 733 | * windows. |
| 734 | */ |
| 735 | |
| 736 | /* |
| 737 | * Call this to initialise the clipboard. Pass it FALSE if the clipboard code |
| 738 | * is included, but the clipboard can not be used, or TRUE if the clipboard can |
| 739 | * be used. Eg unix may call this with FALSE, then call it again with TRUE if |
| 740 | * the GUI starts. |
| 741 | */ |
| 742 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 743 | clip_init(int can_use) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 744 | { |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 745 | Clipboard_T *cb; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 746 | |
| 747 | cb = &clip_star; |
| 748 | for (;;) |
| 749 | { |
| 750 | cb->available = can_use; |
| 751 | cb->owned = FALSE; |
| 752 | cb->start.lnum = 0; |
| 753 | cb->start.col = 0; |
| 754 | cb->end.lnum = 0; |
| 755 | cb->end.col = 0; |
| 756 | cb->state = SELECT_CLEARED; |
| 757 | |
| 758 | if (cb == &clip_plus) |
| 759 | break; |
| 760 | cb = &clip_plus; |
| 761 | } |
| 762 | } |
| 763 | |
| 764 | /* |
| 765 | * Check whether the VIsual area has changed, and if so try to become the owner |
| 766 | * of the selection, and free any old converted selection we may still have |
| 767 | * lying around. If the VIsual mode has ended, make a copy of what was |
| 768 | * selected so we can still give it to others. Will probably have to make sure |
| 769 | * this is called whenever VIsual mode is ended. |
| 770 | */ |
| 771 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 772 | clip_update_selection(Clipboard_T *clip) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 773 | { |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 774 | pos_T start, end; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 775 | |
| 776 | /* If visual mode is only due to a redo command ("."), then ignore it */ |
| 777 | if (!redo_VIsual_busy && VIsual_active && (State & NORMAL)) |
| 778 | { |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 779 | if (LT_POS(VIsual, curwin->w_cursor)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 780 | { |
| 781 | start = VIsual; |
| 782 | end = curwin->w_cursor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 783 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 784 | end.col += (*mb_ptr2len)(ml_get_cursor()) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 785 | } |
| 786 | else |
| 787 | { |
| 788 | start = curwin->w_cursor; |
| 789 | end = VIsual; |
| 790 | } |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 791 | if (!EQUAL_POS(clip->start, start) |
| 792 | || !EQUAL_POS(clip->end, end) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 793 | || clip->vmode != VIsual_mode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 794 | { |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 795 | clip_clear_selection(clip); |
| 796 | clip->start = start; |
| 797 | clip->end = end; |
| 798 | clip->vmode = VIsual_mode; |
| 799 | clip_free_selection(clip); |
| 800 | clip_own_selection(clip); |
| 801 | clip_gen_set_selection(clip); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 802 | } |
| 803 | } |
| 804 | } |
| 805 | |
| 806 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 807 | clip_own_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 808 | { |
| 809 | /* |
| 810 | * Also want to check somehow that we are reading from the keyboard rather |
| 811 | * than a mapping etc. |
| 812 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 813 | #ifdef FEAT_X11 |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 814 | /* Always own the selection, we might have lost it without being |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 815 | * notified, e.g. during a ":sh" command. */ |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 816 | if (cbd->available) |
| 817 | { |
| 818 | int was_owned = cbd->owned; |
| 819 | |
| 820 | cbd->owned = (clip_gen_own_selection(cbd) == OK); |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 821 | if (!was_owned && (cbd == &clip_star || cbd == &clip_plus)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 822 | { |
Bram Moolenaar | ebefac6 | 2005-12-28 22:39:57 +0000 | [diff] [blame] | 823 | /* May have to show a different kind of highlighting for the |
| 824 | * selected area. There is no specific redraw command for this, |
| 825 | * just redraw all windows on the current buffer. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 826 | if (cbd->owned |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 827 | && (get_real_state() == VISUAL |
| 828 | || get_real_state() == SELECTMODE) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 829 | && (cbd == &clip_star ? clip_isautosel_star() |
| 830 | : clip_isautosel_plus()) |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 831 | && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 832 | redraw_curbuf_later(INVERTED_ALL); |
| 833 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 834 | } |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 835 | #else |
Bram Moolenaar | b6101cf | 2012-10-21 00:58:39 +0200 | [diff] [blame] | 836 | /* Only own the clipboard when we didn't own it yet. */ |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 837 | if (!cbd->owned && cbd->available) |
| 838 | cbd->owned = (clip_gen_own_selection(cbd) == OK); |
| 839 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 843 | clip_lose_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 844 | { |
| 845 | #ifdef FEAT_X11 |
| 846 | int was_owned = cbd->owned; |
| 847 | #endif |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 848 | int visual_selection = FALSE; |
| 849 | |
| 850 | if (cbd == &clip_star || cbd == &clip_plus) |
| 851 | visual_selection = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 852 | |
| 853 | clip_free_selection(cbd); |
| 854 | cbd->owned = FALSE; |
| 855 | if (visual_selection) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 856 | clip_clear_selection(cbd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 857 | clip_gen_lose_selection(cbd); |
| 858 | #ifdef FEAT_X11 |
| 859 | if (visual_selection) |
| 860 | { |
| 861 | /* May have to show a different kind of highlighting for the selected |
| 862 | * area. There is no specific redraw command for this, just redraw all |
| 863 | * windows on the current buffer. */ |
| 864 | if (was_owned |
Bram Moolenaar | b3656ed | 2006-03-20 21:59:49 +0000 | [diff] [blame] | 865 | && (get_real_state() == VISUAL |
| 866 | || get_real_state() == SELECTMODE) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 867 | && (cbd == &clip_star ? |
| 868 | clip_isautosel_star() : clip_isautosel_plus()) |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 869 | && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 870 | { |
| 871 | update_curbuf(INVERTED_ALL); |
| 872 | setcursor(); |
| 873 | cursor_on(); |
Bram Moolenaar | a338adc | 2018-01-31 20:51:47 +0100 | [diff] [blame] | 874 | out_flush_cursor(TRUE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 875 | } |
| 876 | } |
| 877 | #endif |
| 878 | } |
| 879 | |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 880 | static void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 881 | clip_copy_selection(Clipboard_T *clip) |
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 | if (VIsual_active && (State & NORMAL) && clip->available) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 884 | { |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 885 | clip_update_selection(clip); |
| 886 | clip_free_selection(clip); |
| 887 | clip_own_selection(clip); |
| 888 | if (clip->owned) |
| 889 | clip_get_selection(clip); |
| 890 | clip_gen_set_selection(clip); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 891 | } |
| 892 | } |
| 893 | |
| 894 | /* |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 895 | * Save and restore clip_unnamed before doing possibly many changes. This |
| 896 | * prevents accessing the clipboard very often which might slow down Vim |
| 897 | * considerably. |
| 898 | */ |
Bram Moolenaar | 73a156b | 2015-01-27 21:39:05 +0100 | [diff] [blame] | 899 | 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] | 900 | static int clipboard_needs_update = FALSE; /* clipboard needs to be updated */ |
| 901 | static int clip_did_set_selection = TRUE; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 902 | |
| 903 | /* |
| 904 | * Save clip_unnamed and reset it. |
| 905 | */ |
| 906 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 907 | start_global_changes(void) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 908 | { |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 909 | if (++global_change_count > 1) |
| 910 | return; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 911 | clip_unnamed_saved = clip_unnamed; |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 912 | clipboard_needs_update = FALSE; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 913 | |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 914 | if (clip_did_set_selection) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 915 | { |
| 916 | clip_unnamed = FALSE; |
| 917 | clip_did_set_selection = FALSE; |
| 918 | } |
| 919 | } |
| 920 | |
| 921 | /* |
Bram Moolenaar | 3fcfa35 | 2017-03-29 19:20:41 +0200 | [diff] [blame] | 922 | * Return TRUE if setting the clipboard was postponed, it already contains the |
| 923 | * right text. |
| 924 | */ |
| 925 | int |
| 926 | is_clipboard_needs_update() |
| 927 | { |
| 928 | return clipboard_needs_update; |
| 929 | } |
| 930 | |
| 931 | /* |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 932 | * Restore clip_unnamed and set the selection when needed. |
| 933 | */ |
| 934 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 935 | end_global_changes(void) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 936 | { |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 937 | if (--global_change_count > 0) |
| 938 | /* recursive */ |
| 939 | return; |
| 940 | if (!clip_did_set_selection) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 941 | { |
| 942 | clip_did_set_selection = TRUE; |
| 943 | clip_unnamed = clip_unnamed_saved; |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 944 | clip_unnamed_saved = FALSE; |
| 945 | if (clipboard_needs_update) |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 946 | { |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 947 | /* only store something in the clipboard, |
| 948 | * if we have yanked anything to it */ |
| 949 | if (clip_unnamed & CLIP_UNNAMED) |
| 950 | { |
| 951 | clip_own_selection(&clip_star); |
| 952 | clip_gen_set_selection(&clip_star); |
| 953 | } |
| 954 | if (clip_unnamed & CLIP_UNNAMED_PLUS) |
| 955 | { |
| 956 | clip_own_selection(&clip_plus); |
| 957 | clip_gen_set_selection(&clip_plus); |
| 958 | } |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 959 | } |
| 960 | } |
Bram Moolenaar | 3fcfa35 | 2017-03-29 19:20:41 +0200 | [diff] [blame] | 961 | clipboard_needs_update = FALSE; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 962 | } |
| 963 | |
| 964 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 965 | * Called when Visual mode is ended: update the selection. |
| 966 | */ |
| 967 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 968 | clip_auto_select(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 969 | { |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 970 | if (clip_isautosel_star()) |
| 971 | clip_copy_selection(&clip_star); |
| 972 | if (clip_isautosel_plus()) |
| 973 | clip_copy_selection(&clip_plus); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 974 | } |
| 975 | |
| 976 | /* |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 977 | * Return TRUE if automatic selection of Visual area is desired for the * |
| 978 | * register. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 979 | */ |
| 980 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 981 | clip_isautosel_star(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 982 | { |
| 983 | return ( |
| 984 | #ifdef FEAT_GUI |
| 985 | gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) : |
| 986 | #endif |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 987 | clip_autoselect_star); |
| 988 | } |
| 989 | |
| 990 | /* |
| 991 | * Return TRUE if automatic selection of Visual area is desired for the + |
| 992 | * register. |
| 993 | */ |
| 994 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 995 | clip_isautosel_plus(void) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 996 | { |
| 997 | return ( |
| 998 | #ifdef FEAT_GUI |
| 999 | gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) : |
| 1000 | #endif |
| 1001 | clip_autoselect_plus); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1002 | } |
| 1003 | |
| 1004 | |
| 1005 | /* |
| 1006 | * Stuff for general mouse selection, without using Visual mode. |
| 1007 | */ |
| 1008 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1009 | static void clip_invert_area(Clipboard_T *, int, int, int, int, int how); |
| 1010 | 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] | 1011 | static void clip_get_word_boundaries(Clipboard_T *, int, int); |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1012 | static int clip_get_line_end(Clipboard_T *, int); |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1013 | static void clip_update_modeless_selection(Clipboard_T *, int, int, int, int); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1014 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1015 | // "how" flags for clip_invert_area() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1016 | #define CLIP_CLEAR 1 |
| 1017 | #define CLIP_SET 2 |
| 1018 | #define CLIP_TOGGLE 3 |
| 1019 | |
| 1020 | /* |
| 1021 | * Start, continue or end a modeless selection. Used when editing the |
Bram Moolenaar | b53fb31 | 2019-06-13 23:59:52 +0200 | [diff] [blame] | 1022 | * 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] | 1023 | */ |
| 1024 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1025 | clip_modeless(int button, int is_click, int is_drag) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1026 | { |
| 1027 | int repeat; |
| 1028 | |
| 1029 | repeat = ((clip_star.mode == SELECT_MODE_CHAR |
| 1030 | || clip_star.mode == SELECT_MODE_LINE) |
| 1031 | && (mod_mask & MOD_MASK_2CLICK)) |
| 1032 | || (clip_star.mode == SELECT_MODE_WORD |
| 1033 | && (mod_mask & MOD_MASK_3CLICK)); |
| 1034 | if (is_click && button == MOUSE_RIGHT) |
| 1035 | { |
| 1036 | /* Right mouse button: If there was no selection, start one. |
| 1037 | * Otherwise extend the existing selection. */ |
| 1038 | if (clip_star.state == SELECT_CLEARED) |
| 1039 | clip_start_selection(mouse_col, mouse_row, FALSE); |
| 1040 | clip_process_selection(button, mouse_col, mouse_row, repeat); |
| 1041 | } |
| 1042 | else if (is_click) |
| 1043 | clip_start_selection(mouse_col, mouse_row, repeat); |
| 1044 | else if (is_drag) |
| 1045 | { |
| 1046 | /* Don't try extending a selection if there isn't one. Happens when |
| 1047 | * button-down is in the cmdline and them moving mouse upwards. */ |
| 1048 | if (clip_star.state != SELECT_CLEARED) |
| 1049 | clip_process_selection(button, mouse_col, mouse_row, repeat); |
| 1050 | } |
| 1051 | else /* release */ |
| 1052 | clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE); |
| 1053 | } |
| 1054 | |
| 1055 | /* |
| 1056 | * Compare two screen positions ala strcmp() |
| 1057 | */ |
| 1058 | static int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1059 | clip_compare_pos( |
| 1060 | int row1, |
| 1061 | int col1, |
| 1062 | int row2, |
| 1063 | int col2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1064 | { |
| 1065 | if (row1 > row2) return(1); |
| 1066 | if (row1 < row2) return(-1); |
| 1067 | if (col1 > col2) return(1); |
| 1068 | if (col1 < col2) return(-1); |
Bram Moolenaar | 9e34110 | 2016-02-23 23:04:36 +0100 | [diff] [blame] | 1069 | return(0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1070 | } |
| 1071 | |
| 1072 | /* |
| 1073 | * Start the selection |
| 1074 | */ |
| 1075 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1076 | clip_start_selection(int col, int row, int repeated_click) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1077 | { |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1078 | Clipboard_T *cb = &clip_star; |
Bram Moolenaar | 13b11ed | 2019-08-01 15:52:45 +0200 | [diff] [blame] | 1079 | #ifdef FEAT_TEXT_PROP |
| 1080 | win_T *wp; |
| 1081 | int row_cp = row; |
| 1082 | int col_cp = col; |
| 1083 | |
| 1084 | wp = mouse_find_win(&row_cp, &col_cp, FIND_POPUP); |
| 1085 | if (wp != NULL && WIN_IS_POPUP(wp) |
| 1086 | && popup_is_in_scrollbar(wp, row_cp, col_cp)) |
| 1087 | // click or double click in scrollbar does not start a selection |
| 1088 | return; |
| 1089 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1090 | |
| 1091 | if (cb->state == SELECT_DONE) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1092 | clip_clear_selection(cb); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1093 | |
| 1094 | row = check_row(row); |
| 1095 | col = check_col(col); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1096 | col = mb_fix_col(col, row); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1097 | |
| 1098 | cb->start.lnum = row; |
| 1099 | cb->start.col = col; |
| 1100 | cb->end = cb->start; |
| 1101 | cb->origin_row = (short_u)cb->start.lnum; |
| 1102 | cb->state = SELECT_IN_PROGRESS; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1103 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | 13b11ed | 2019-08-01 15:52:45 +0200 | [diff] [blame] | 1104 | if (wp != NULL && WIN_IS_POPUP(wp)) |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1105 | { |
Bram Moolenaar | 13b11ed | 2019-08-01 15:52:45 +0200 | [diff] [blame] | 1106 | // Click in a popup window restricts selection to that window, |
| 1107 | // excluding the border. |
| 1108 | cb->min_col = wp->w_wincol + wp->w_popup_border[3]; |
Bram Moolenaar | 4dd751b | 2019-08-17 19:10:53 +0200 | [diff] [blame] | 1109 | cb->max_col = wp->w_wincol + popup_width(wp) |
| 1110 | - wp->w_popup_border[1] - wp->w_has_scrollbar; |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1111 | if (cb->max_col > screen_Columns) |
| 1112 | cb->max_col = screen_Columns; |
Bram Moolenaar | 13b11ed | 2019-08-01 15:52:45 +0200 | [diff] [blame] | 1113 | cb->min_row = wp->w_winrow + wp->w_popup_border[0]; |
| 1114 | cb->max_row = wp->w_winrow + popup_height(wp) - 1 |
| 1115 | - wp->w_popup_border[2]; |
| 1116 | } |
| 1117 | else |
| 1118 | { |
| 1119 | cb->min_col = 0; |
| 1120 | cb->max_col = screen_Columns; |
| 1121 | cb->min_row = 0; |
| 1122 | cb->max_row = screen_Rows; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1123 | } |
| 1124 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1125 | |
| 1126 | if (repeated_click) |
| 1127 | { |
| 1128 | if (++cb->mode > SELECT_MODE_LINE) |
| 1129 | cb->mode = SELECT_MODE_CHAR; |
| 1130 | } |
| 1131 | else |
| 1132 | cb->mode = SELECT_MODE_CHAR; |
| 1133 | |
| 1134 | #ifdef FEAT_GUI |
| 1135 | /* clear the cursor until the selection is made */ |
| 1136 | if (gui.in_use) |
| 1137 | gui_undraw_cursor(); |
| 1138 | #endif |
| 1139 | |
| 1140 | switch (cb->mode) |
| 1141 | { |
| 1142 | case SELECT_MODE_CHAR: |
| 1143 | cb->origin_start_col = cb->start.col; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1144 | 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] | 1145 | break; |
| 1146 | |
| 1147 | case SELECT_MODE_WORD: |
| 1148 | clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col); |
| 1149 | cb->origin_start_col = cb->word_start_col; |
| 1150 | cb->origin_end_col = cb->word_end_col; |
| 1151 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1152 | clip_invert_area(cb, (int)cb->start.lnum, cb->word_start_col, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1153 | (int)cb->end.lnum, cb->word_end_col, CLIP_SET); |
| 1154 | cb->start.col = cb->word_start_col; |
| 1155 | cb->end.col = cb->word_end_col; |
| 1156 | break; |
| 1157 | |
| 1158 | case SELECT_MODE_LINE: |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1159 | 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] | 1160 | (int)Columns, CLIP_SET); |
| 1161 | cb->start.col = 0; |
| 1162 | cb->end.col = Columns; |
| 1163 | break; |
| 1164 | } |
| 1165 | |
| 1166 | cb->prev = cb->start; |
| 1167 | |
| 1168 | #ifdef DEBUG_SELECTION |
| 1169 | printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col); |
| 1170 | #endif |
| 1171 | } |
| 1172 | |
| 1173 | /* |
| 1174 | * Continue processing the selection |
| 1175 | */ |
| 1176 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1177 | clip_process_selection( |
| 1178 | int button, |
| 1179 | int col, |
| 1180 | int row, |
| 1181 | int_u repeated_click) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1182 | { |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1183 | Clipboard_T *cb = &clip_star; |
| 1184 | int diff; |
| 1185 | int slen = 1; // cursor shape width |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1186 | |
| 1187 | if (button == MOUSE_RELEASE) |
| 1188 | { |
Bram Moolenaar | 741ea17 | 2019-08-24 14:16:32 +0200 | [diff] [blame] | 1189 | if (cb->state != SELECT_IN_PROGRESS) |
| 1190 | return; |
| 1191 | |
| 1192 | // Check to make sure we have something selected |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1193 | if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col) |
| 1194 | { |
| 1195 | #ifdef FEAT_GUI |
| 1196 | if (gui.in_use) |
| 1197 | gui_update_cursor(FALSE, FALSE); |
| 1198 | #endif |
| 1199 | cb->state = SELECT_CLEARED; |
| 1200 | return; |
| 1201 | } |
| 1202 | |
| 1203 | #ifdef DEBUG_SELECTION |
| 1204 | printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum, |
| 1205 | cb->start.col, cb->end.lnum, cb->end.col); |
| 1206 | #endif |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1207 | if (clip_isautosel_star() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1208 | || ( |
| 1209 | #ifdef FEAT_GUI |
| 1210 | gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) : |
| 1211 | #endif |
| 1212 | clip_autoselectml)) |
| 1213 | clip_copy_modeless_selection(FALSE); |
| 1214 | #ifdef FEAT_GUI |
| 1215 | if (gui.in_use) |
| 1216 | gui_update_cursor(FALSE, FALSE); |
| 1217 | #endif |
| 1218 | |
| 1219 | cb->state = SELECT_DONE; |
| 1220 | return; |
| 1221 | } |
| 1222 | |
| 1223 | row = check_row(row); |
| 1224 | col = check_col(col); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1225 | col = mb_fix_col(col, row); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1226 | |
| 1227 | if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click) |
| 1228 | return; |
| 1229 | |
| 1230 | /* |
| 1231 | * When extending the selection with the right mouse button, swap the |
| 1232 | * start and end if the position is before half the selection |
| 1233 | */ |
| 1234 | if (cb->state == SELECT_DONE && button == MOUSE_RIGHT) |
| 1235 | { |
| 1236 | /* |
| 1237 | * If the click is before the start, or the click is inside the |
| 1238 | * selection and the start is the closest side, set the origin to the |
| 1239 | * end of the selection. |
| 1240 | */ |
| 1241 | if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0 |
| 1242 | || (clip_compare_pos(row, col, |
| 1243 | (int)cb->end.lnum, cb->end.col) < 0 |
| 1244 | && (((cb->start.lnum == cb->end.lnum |
| 1245 | && cb->end.col - col > col - cb->start.col)) |
| 1246 | || ((diff = (cb->end.lnum - row) - |
| 1247 | (row - cb->start.lnum)) > 0 |
| 1248 | || (diff == 0 && col < (int)(cb->start.col + |
| 1249 | cb->end.col) / 2))))) |
| 1250 | { |
| 1251 | cb->origin_row = (short_u)cb->end.lnum; |
| 1252 | cb->origin_start_col = cb->end.col - 1; |
| 1253 | cb->origin_end_col = cb->end.col; |
| 1254 | } |
| 1255 | else |
| 1256 | { |
| 1257 | cb->origin_row = (short_u)cb->start.lnum; |
| 1258 | cb->origin_start_col = cb->start.col; |
| 1259 | cb->origin_end_col = cb->start.col; |
| 1260 | } |
| 1261 | if (cb->mode == SELECT_MODE_WORD && !repeated_click) |
| 1262 | cb->mode = SELECT_MODE_CHAR; |
| 1263 | } |
| 1264 | |
| 1265 | /* set state, for when using the right mouse button */ |
| 1266 | cb->state = SELECT_IN_PROGRESS; |
| 1267 | |
| 1268 | #ifdef DEBUG_SELECTION |
| 1269 | printf("Selection extending to (%d,%d)\n", row, col); |
| 1270 | #endif |
| 1271 | |
| 1272 | if (repeated_click && ++cb->mode > SELECT_MODE_LINE) |
| 1273 | cb->mode = SELECT_MODE_CHAR; |
| 1274 | |
| 1275 | switch (cb->mode) |
| 1276 | { |
| 1277 | case SELECT_MODE_CHAR: |
| 1278 | /* If we're on a different line, find where the line ends */ |
| 1279 | if (row != cb->prev.lnum) |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1280 | cb->word_end_col = clip_get_line_end(cb, row); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1281 | |
| 1282 | /* See if we are before or after the origin of the selection */ |
| 1283 | if (clip_compare_pos(row, col, cb->origin_row, |
| 1284 | cb->origin_start_col) >= 0) |
| 1285 | { |
| 1286 | if (col >= (int)cb->word_end_col) |
| 1287 | clip_update_modeless_selection(cb, cb->origin_row, |
| 1288 | cb->origin_start_col, row, (int)Columns); |
| 1289 | else |
| 1290 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1291 | if (has_mbyte && mb_lefthalve(row, col)) |
| 1292 | slen = 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1293 | clip_update_modeless_selection(cb, cb->origin_row, |
| 1294 | cb->origin_start_col, row, col + slen); |
| 1295 | } |
| 1296 | } |
| 1297 | else |
| 1298 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1299 | if (has_mbyte |
| 1300 | && mb_lefthalve(cb->origin_row, cb->origin_start_col)) |
| 1301 | slen = 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1302 | if (col >= (int)cb->word_end_col) |
| 1303 | clip_update_modeless_selection(cb, row, cb->word_end_col, |
| 1304 | cb->origin_row, cb->origin_start_col + slen); |
| 1305 | else |
| 1306 | clip_update_modeless_selection(cb, row, col, |
| 1307 | cb->origin_row, cb->origin_start_col + slen); |
| 1308 | } |
| 1309 | break; |
| 1310 | |
| 1311 | case SELECT_MODE_WORD: |
| 1312 | /* If we are still within the same word, do nothing */ |
| 1313 | if (row == cb->prev.lnum && col >= (int)cb->word_start_col |
| 1314 | && col < (int)cb->word_end_col && !repeated_click) |
| 1315 | return; |
| 1316 | |
| 1317 | /* Get new word boundaries */ |
| 1318 | clip_get_word_boundaries(cb, row, col); |
| 1319 | |
| 1320 | /* Handle being after the origin point of selection */ |
| 1321 | if (clip_compare_pos(row, col, cb->origin_row, |
| 1322 | cb->origin_start_col) >= 0) |
| 1323 | clip_update_modeless_selection(cb, cb->origin_row, |
| 1324 | cb->origin_start_col, row, cb->word_end_col); |
| 1325 | else |
| 1326 | clip_update_modeless_selection(cb, row, cb->word_start_col, |
| 1327 | cb->origin_row, cb->origin_end_col); |
| 1328 | break; |
| 1329 | |
| 1330 | case SELECT_MODE_LINE: |
| 1331 | if (row == cb->prev.lnum && !repeated_click) |
| 1332 | return; |
| 1333 | |
| 1334 | if (clip_compare_pos(row, col, cb->origin_row, |
| 1335 | cb->origin_start_col) >= 0) |
| 1336 | clip_update_modeless_selection(cb, cb->origin_row, 0, row, |
| 1337 | (int)Columns); |
| 1338 | else |
| 1339 | clip_update_modeless_selection(cb, row, 0, cb->origin_row, |
| 1340 | (int)Columns); |
| 1341 | break; |
| 1342 | } |
| 1343 | |
| 1344 | cb->prev.lnum = row; |
| 1345 | cb->prev.col = col; |
| 1346 | |
| 1347 | #ifdef DEBUG_SELECTION |
| 1348 | printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum, |
| 1349 | cb->start.col, cb->end.lnum, cb->end.col); |
| 1350 | #endif |
| 1351 | } |
| 1352 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1353 | # if defined(FEAT_GUI) || defined(PROTO) |
| 1354 | /* |
| 1355 | * Redraw part of the selection if character at "row,col" is inside of it. |
| 1356 | * Only used for the GUI. |
| 1357 | */ |
| 1358 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1359 | clip_may_redraw_selection(int row, int col, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1360 | { |
| 1361 | int start = col; |
| 1362 | int end = col + len; |
| 1363 | |
| 1364 | if (clip_star.state != SELECT_CLEARED |
| 1365 | && row >= clip_star.start.lnum |
| 1366 | && row <= clip_star.end.lnum) |
| 1367 | { |
| 1368 | if (row == clip_star.start.lnum && start < (int)clip_star.start.col) |
| 1369 | start = clip_star.start.col; |
| 1370 | if (row == clip_star.end.lnum && end > (int)clip_star.end.col) |
| 1371 | end = clip_star.end.col; |
| 1372 | if (end > start) |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1373 | clip_invert_area(&clip_star, row, start, row, end, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1374 | } |
| 1375 | } |
| 1376 | # endif |
| 1377 | |
| 1378 | /* |
| 1379 | * Called from outside to clear selected region from the display |
| 1380 | */ |
| 1381 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1382 | clip_clear_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1383 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1384 | |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1385 | if (cbd->state == SELECT_CLEARED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1386 | return; |
| 1387 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1388 | clip_invert_area(cbd, (int)cbd->start.lnum, cbd->start.col, |
| 1389 | (int)cbd->end.lnum, cbd->end.col, CLIP_CLEAR); |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1390 | cbd->state = SELECT_CLEARED; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1391 | } |
| 1392 | |
| 1393 | /* |
| 1394 | * Clear the selection if any lines from "row1" to "row2" are inside of it. |
| 1395 | */ |
| 1396 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1397 | clip_may_clear_selection(int row1, int row2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1398 | { |
| 1399 | if (clip_star.state == SELECT_DONE |
| 1400 | && row2 >= clip_star.start.lnum |
| 1401 | && row1 <= clip_star.end.lnum) |
Bram Moolenaar | c0885aa | 2012-07-10 16:49:23 +0200 | [diff] [blame] | 1402 | clip_clear_selection(&clip_star); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | /* |
| 1406 | * Called before the screen is scrolled up or down. Adjusts the line numbers |
| 1407 | * of the selection. Call with big number when clearing the screen. |
| 1408 | */ |
| 1409 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1410 | clip_scroll_selection( |
| 1411 | int rows) /* negative for scroll down */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1412 | { |
| 1413 | int lnum; |
| 1414 | |
| 1415 | if (clip_star.state == SELECT_CLEARED) |
| 1416 | return; |
| 1417 | |
| 1418 | lnum = clip_star.start.lnum - rows; |
| 1419 | if (lnum <= 0) |
| 1420 | clip_star.start.lnum = 0; |
| 1421 | else if (lnum >= screen_Rows) /* scrolled off of the screen */ |
| 1422 | clip_star.state = SELECT_CLEARED; |
| 1423 | else |
| 1424 | clip_star.start.lnum = lnum; |
| 1425 | |
| 1426 | lnum = clip_star.end.lnum - rows; |
| 1427 | if (lnum < 0) /* scrolled off of the screen */ |
| 1428 | clip_star.state = SELECT_CLEARED; |
| 1429 | else if (lnum >= screen_Rows) |
| 1430 | clip_star.end.lnum = screen_Rows - 1; |
| 1431 | else |
| 1432 | clip_star.end.lnum = lnum; |
| 1433 | } |
| 1434 | |
| 1435 | /* |
| 1436 | * Invert a region of the display between a starting and ending row and column |
| 1437 | * Values for "how": |
| 1438 | * CLIP_CLEAR: undo inversion |
| 1439 | * CLIP_SET: set inversion |
| 1440 | * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise. |
| 1441 | * 0: invert (GUI only). |
| 1442 | */ |
| 1443 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1444 | clip_invert_area( |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1445 | Clipboard_T *cbd, |
| 1446 | int row1, |
| 1447 | int col1, |
| 1448 | int row2, |
| 1449 | int col2, |
| 1450 | int how) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1451 | { |
| 1452 | int invert = FALSE; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1453 | int max_col; |
| 1454 | |
| 1455 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1456 | max_col = cbd->max_col - 1; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1457 | #else |
| 1458 | max_col = Columns - 1; |
| 1459 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1460 | |
| 1461 | if (how == CLIP_SET) |
| 1462 | invert = TRUE; |
| 1463 | |
| 1464 | /* Swap the from and to positions so the from is always before */ |
| 1465 | if (clip_compare_pos(row1, col1, row2, col2) > 0) |
| 1466 | { |
| 1467 | int tmp_row, tmp_col; |
| 1468 | |
| 1469 | tmp_row = row1; |
| 1470 | tmp_col = col1; |
| 1471 | row1 = row2; |
| 1472 | col1 = col2; |
| 1473 | row2 = tmp_row; |
| 1474 | col2 = tmp_col; |
| 1475 | } |
| 1476 | else if (how == CLIP_TOGGLE) |
| 1477 | invert = TRUE; |
| 1478 | |
| 1479 | /* If all on the same line, do it the easy way */ |
| 1480 | if (row1 == row2) |
| 1481 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1482 | clip_invert_rectangle(cbd, row1, col1, 1, col2 - col1, invert); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1483 | } |
| 1484 | else |
| 1485 | { |
| 1486 | /* Handle a piece of the first line */ |
| 1487 | if (col1 > 0) |
| 1488 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1489 | clip_invert_rectangle(cbd, row1, col1, 1, |
| 1490 | (int)Columns - col1, invert); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1491 | row1++; |
| 1492 | } |
| 1493 | |
| 1494 | /* Handle a piece of the last line */ |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1495 | if (col2 < max_col) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1496 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1497 | clip_invert_rectangle(cbd, row2, 0, 1, col2, invert); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1498 | row2--; |
| 1499 | } |
| 1500 | |
| 1501 | /* Handle the rectangle thats left */ |
| 1502 | if (row2 >= row1) |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1503 | clip_invert_rectangle(cbd, row1, 0, row2 - row1 + 1, |
| 1504 | (int)Columns, invert); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1505 | } |
| 1506 | } |
| 1507 | |
| 1508 | /* |
| 1509 | * Invert or un-invert a rectangle of the screen. |
| 1510 | * "invert" is true if the result is inverted. |
| 1511 | */ |
| 1512 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1513 | clip_invert_rectangle( |
Bram Moolenaar | 405bb42 | 2019-06-21 00:12:29 +0200 | [diff] [blame] | 1514 | Clipboard_T *cbd UNUSED, |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1515 | int row_arg, |
| 1516 | int col_arg, |
| 1517 | int height_arg, |
| 1518 | int width_arg, |
| 1519 | int invert) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1520 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1521 | int row = row_arg; |
| 1522 | int col = col_arg; |
| 1523 | int height = height_arg; |
| 1524 | int width = width_arg; |
| 1525 | |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 1526 | #ifdef FEAT_TEXT_PROP |
| 1527 | // this goes on top of all popup windows |
Bram Moolenaar | c662ec9 | 2019-06-23 00:15:57 +0200 | [diff] [blame] | 1528 | screen_zindex = CLIP_ZINDEX; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1529 | |
| 1530 | if (col < cbd->min_col) |
| 1531 | { |
| 1532 | width -= cbd->min_col - col; |
| 1533 | col = cbd->min_col; |
| 1534 | } |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1535 | if (width > cbd->max_col - col) |
| 1536 | width = cbd->max_col - col; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1537 | if (row < cbd->min_row) |
| 1538 | { |
| 1539 | height -= cbd->min_row - row; |
| 1540 | row = cbd->min_row; |
| 1541 | } |
| 1542 | if (height > cbd->max_row - row + 1) |
| 1543 | height = cbd->max_row - row + 1; |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 1544 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1545 | #ifdef FEAT_GUI |
| 1546 | if (gui.in_use) |
| 1547 | gui_mch_invert_rectangle(row, col, height, width); |
| 1548 | else |
| 1549 | #endif |
| 1550 | screen_draw_rectangle(row, col, height, width, invert); |
Bram Moolenaar | 451d4b5 | 2019-06-12 20:22:27 +0200 | [diff] [blame] | 1551 | #ifdef FEAT_TEXT_PROP |
| 1552 | screen_zindex = 0; |
| 1553 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1554 | } |
| 1555 | |
| 1556 | /* |
| 1557 | * Copy the currently selected area into the '*' register so it will be |
| 1558 | * available for pasting. |
| 1559 | * When "both" is TRUE also copy to the '+' register. |
| 1560 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1561 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1562 | clip_copy_modeless_selection(int both UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1563 | { |
| 1564 | char_u *buffer; |
| 1565 | char_u *bufp; |
| 1566 | int row; |
| 1567 | int start_col; |
| 1568 | int end_col; |
| 1569 | int line_end_col; |
| 1570 | int add_newline_flag = FALSE; |
| 1571 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1572 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1573 | int row1 = clip_star.start.lnum; |
| 1574 | int col1 = clip_star.start.col; |
| 1575 | int row2 = clip_star.end.lnum; |
| 1576 | int col2 = clip_star.end.col; |
| 1577 | |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 1578 | /* Can't use ScreenLines unless initialized */ |
| 1579 | if (ScreenLines == NULL) |
| 1580 | return; |
| 1581 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1582 | /* |
| 1583 | * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2. |
| 1584 | */ |
| 1585 | if (row1 > row2) |
| 1586 | { |
| 1587 | row = row1; row1 = row2; row2 = row; |
| 1588 | row = col1; col1 = col2; col2 = row; |
| 1589 | } |
| 1590 | else if (row1 == row2 && col1 > col2) |
| 1591 | { |
| 1592 | row = col1; col1 = col2; col2 = row; |
| 1593 | } |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1594 | #ifdef FEAT_TEXT_PROP |
| 1595 | if (col1 < clip_star.min_col) |
| 1596 | col1 = clip_star.min_col; |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1597 | if (col2 > clip_star.max_col) |
| 1598 | col2 = clip_star.max_col; |
Bram Moolenaar | 741ea17 | 2019-08-24 14:16:32 +0200 | [diff] [blame] | 1599 | if (row1 > clip_star.max_row || row2 < clip_star.min_row) |
| 1600 | return; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1601 | if (row1 < clip_star.min_row) |
| 1602 | row1 = clip_star.min_row; |
| 1603 | if (row2 > clip_star.max_row) |
| 1604 | row2 = clip_star.max_row; |
| 1605 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1606 | /* correct starting point for being on right halve of double-wide char */ |
| 1607 | p = ScreenLines + LineOffset[row1]; |
| 1608 | if (enc_dbcs != 0) |
| 1609 | col1 -= (*mb_head_off)(p, p + col1); |
| 1610 | else if (enc_utf8 && p[col1] == 0) |
| 1611 | --col1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1612 | |
| 1613 | /* Create a temporary buffer for storing the text */ |
| 1614 | len = (row2 - row1 + 1) * Columns + 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1615 | if (enc_dbcs != 0) |
| 1616 | len *= 2; /* max. 2 bytes per display cell */ |
| 1617 | else if (enc_utf8) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1618 | len *= MB_MAXBYTES; |
Bram Moolenaar | 18a4ba2 | 2019-05-24 19:39:03 +0200 | [diff] [blame] | 1619 | buffer = alloc(len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1620 | if (buffer == NULL) /* out of memory */ |
| 1621 | return; |
| 1622 | |
| 1623 | /* Process each row in the selection */ |
| 1624 | for (bufp = buffer, row = row1; row <= row2; row++) |
| 1625 | { |
| 1626 | if (row == row1) |
| 1627 | start_col = col1; |
| 1628 | else |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1629 | #ifdef FEAT_TEXT_PROP |
| 1630 | start_col = clip_star.min_col; |
| 1631 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1632 | start_col = 0; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1633 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1634 | |
| 1635 | if (row == row2) |
| 1636 | end_col = col2; |
Bram Moolenaar | d5cf898 | 2019-08-16 23:09:11 +0200 | [diff] [blame] | 1637 | else |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1638 | #ifdef FEAT_TEXT_PROP |
| 1639 | end_col = clip_star.max_col; |
| 1640 | #else |
Bram Moolenaar | d5cf898 | 2019-08-16 23:09:11 +0200 | [diff] [blame] | 1641 | end_col = Columns; |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1642 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1643 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1644 | line_end_col = clip_get_line_end(&clip_star, row); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1645 | |
| 1646 | /* See if we need to nuke some trailing whitespace */ |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1647 | if (end_col >= |
| 1648 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1649 | clip_star.max_col |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1650 | #else |
| 1651 | Columns |
| 1652 | #endif |
| 1653 | && (row < row2 || end_col > line_end_col)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1654 | { |
| 1655 | /* Get rid of trailing whitespace */ |
| 1656 | end_col = line_end_col; |
| 1657 | if (end_col < start_col) |
| 1658 | end_col = start_col; |
| 1659 | |
| 1660 | /* If the last line extended to the end, add an extra newline */ |
| 1661 | if (row == row2) |
| 1662 | add_newline_flag = TRUE; |
| 1663 | } |
| 1664 | |
| 1665 | /* If after the first row, we need to always add a newline */ |
| 1666 | if (row > row1 && !LineWraps[row - 1]) |
| 1667 | *bufp++ = NL; |
| 1668 | |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1669 | // Safetey check for in case resizing went wrong |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1670 | if (row < screen_Rows && end_col <= screen_Columns) |
| 1671 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1672 | if (enc_dbcs != 0) |
| 1673 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 1674 | int i; |
| 1675 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1676 | p = ScreenLines + LineOffset[row]; |
| 1677 | for (i = start_col; i < end_col; ++i) |
| 1678 | if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e) |
| 1679 | { |
| 1680 | /* single-width double-byte char */ |
| 1681 | *bufp++ = 0x8e; |
| 1682 | *bufp++ = ScreenLines2[LineOffset[row] + i]; |
| 1683 | } |
| 1684 | else |
| 1685 | { |
| 1686 | *bufp++ = p[i]; |
| 1687 | if (MB_BYTE2LEN(p[i]) == 2) |
| 1688 | *bufp++ = p[++i]; |
| 1689 | } |
| 1690 | } |
| 1691 | else if (enc_utf8) |
| 1692 | { |
| 1693 | int off; |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1694 | int i; |
Bram Moolenaar | 34e9e2f | 2006-03-14 23:07:19 +0000 | [diff] [blame] | 1695 | int ci; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1696 | |
| 1697 | off = LineOffset[row]; |
| 1698 | for (i = start_col; i < end_col; ++i) |
| 1699 | { |
| 1700 | /* The base character is either in ScreenLinesUC[] or |
| 1701 | * ScreenLines[]. */ |
| 1702 | if (ScreenLinesUC[off + i] == 0) |
| 1703 | *bufp++ = ScreenLines[off + i]; |
| 1704 | else |
| 1705 | { |
| 1706 | bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp); |
Bram Moolenaar | 34e9e2f | 2006-03-14 23:07:19 +0000 | [diff] [blame] | 1707 | for (ci = 0; ci < Screen_mco; ++ci) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1708 | { |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1709 | /* Add a composing character. */ |
Bram Moolenaar | 34e9e2f | 2006-03-14 23:07:19 +0000 | [diff] [blame] | 1710 | if (ScreenLinesC[ci][off + i] == 0) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 1711 | break; |
Bram Moolenaar | 34e9e2f | 2006-03-14 23:07:19 +0000 | [diff] [blame] | 1712 | bufp += utf_char2bytes(ScreenLinesC[ci][off + i], |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1713 | bufp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1714 | } |
| 1715 | } |
| 1716 | /* Skip right halve of double-wide character. */ |
| 1717 | if (ScreenLines[off + i + 1] == 0) |
| 1718 | ++i; |
| 1719 | } |
| 1720 | } |
| 1721 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1722 | { |
| 1723 | STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col, |
| 1724 | end_col - start_col); |
| 1725 | bufp += end_col - start_col; |
| 1726 | } |
| 1727 | } |
| 1728 | } |
| 1729 | |
| 1730 | /* Add a newline at the end if the selection ended there */ |
| 1731 | if (add_newline_flag) |
| 1732 | *bufp++ = NL; |
| 1733 | |
| 1734 | /* First cleanup any old selection and become the owner. */ |
| 1735 | clip_free_selection(&clip_star); |
| 1736 | clip_own_selection(&clip_star); |
| 1737 | |
| 1738 | /* Yank the text into the '*' register. */ |
| 1739 | clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star); |
| 1740 | |
| 1741 | /* Make the register contents available to the outside world. */ |
| 1742 | clip_gen_set_selection(&clip_star); |
| 1743 | |
| 1744 | #ifdef FEAT_X11 |
| 1745 | if (both) |
| 1746 | { |
| 1747 | /* Do the same for the '+' register. */ |
| 1748 | clip_free_selection(&clip_plus); |
| 1749 | clip_own_selection(&clip_plus); |
| 1750 | clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus); |
| 1751 | clip_gen_set_selection(&clip_plus); |
| 1752 | } |
| 1753 | #endif |
| 1754 | vim_free(buffer); |
| 1755 | } |
| 1756 | |
| 1757 | /* |
| 1758 | * Find the starting and ending positions of the word at the given row and |
| 1759 | * column. Only white-separated words are recognized here. |
| 1760 | */ |
| 1761 | #define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c)) |
| 1762 | |
| 1763 | static void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1764 | clip_get_word_boundaries(Clipboard_T *cb, int row, int col) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1765 | { |
| 1766 | int start_class; |
| 1767 | int temp_col; |
| 1768 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1769 | int mboff; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1770 | |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 1771 | if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1772 | return; |
| 1773 | |
| 1774 | p = ScreenLines + LineOffset[row]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1775 | /* Correct for starting in the right halve of a double-wide char */ |
| 1776 | if (enc_dbcs != 0) |
| 1777 | col -= dbcs_screen_head_off(p, p + col); |
| 1778 | else if (enc_utf8 && p[col] == 0) |
| 1779 | --col; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1780 | start_class = CHAR_CLASS(p[col]); |
| 1781 | |
| 1782 | temp_col = col; |
| 1783 | for ( ; temp_col > 0; temp_col--) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1784 | if (enc_dbcs != 0 |
| 1785 | && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0) |
| 1786 | temp_col -= mboff; |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 1787 | else if (CHAR_CLASS(p[temp_col - 1]) != start_class |
| 1788 | && !(enc_utf8 && p[temp_col - 1] == 0)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1789 | break; |
| 1790 | cb->word_start_col = temp_col; |
| 1791 | |
| 1792 | temp_col = col; |
| 1793 | for ( ; temp_col < screen_Columns; temp_col++) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1794 | if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2) |
| 1795 | ++temp_col; |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 1796 | else if (CHAR_CLASS(p[temp_col]) != start_class |
| 1797 | && !(enc_utf8 && p[temp_col] == 0)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1798 | break; |
| 1799 | cb->word_end_col = temp_col; |
| 1800 | } |
| 1801 | |
| 1802 | /* |
| 1803 | * 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] | 1804 | * line at or before start_col. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1805 | */ |
| 1806 | static int |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1807 | clip_get_line_end(Clipboard_T *cbd UNUSED, int row) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1808 | { |
| 1809 | int i; |
| 1810 | |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 1811 | if (row >= screen_Rows || ScreenLines == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1812 | return 0; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1813 | for (i = |
| 1814 | #ifdef FEAT_TEXT_PROP |
Bram Moolenaar | ff9f27c | 2019-08-17 16:15:53 +0200 | [diff] [blame] | 1815 | cbd->max_col; |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1816 | #else |
| 1817 | screen_Columns; |
| 1818 | #endif |
| 1819 | i > 0; i--) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1820 | if (ScreenLines[LineOffset[row] + i - 1] != ' ') |
| 1821 | break; |
| 1822 | return i; |
| 1823 | } |
| 1824 | |
| 1825 | /* |
| 1826 | * Update the currently selected region by adding and/or subtracting from the |
| 1827 | * beginning or end and inverting the changed area(s). |
| 1828 | */ |
| 1829 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1830 | clip_update_modeless_selection( |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1831 | Clipboard_T *cb, |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1832 | int row1, |
| 1833 | int col1, |
| 1834 | int row2, |
| 1835 | int col2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1836 | { |
| 1837 | /* See if we changed at the beginning of the selection */ |
| 1838 | if (row1 != cb->start.lnum || col1 != (int)cb->start.col) |
| 1839 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1840 | 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] | 1841 | CLIP_TOGGLE); |
| 1842 | cb->start.lnum = row1; |
| 1843 | cb->start.col = col1; |
| 1844 | } |
| 1845 | |
| 1846 | /* See if we changed at the end of the selection */ |
| 1847 | if (row2 != cb->end.lnum || col2 != (int)cb->end.col) |
| 1848 | { |
Bram Moolenaar | bd75b53 | 2019-06-14 23:41:55 +0200 | [diff] [blame] | 1849 | 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] | 1850 | CLIP_TOGGLE); |
| 1851 | cb->end.lnum = row2; |
| 1852 | cb->end.col = col2; |
| 1853 | } |
| 1854 | } |
| 1855 | |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 1856 | static int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1857 | clip_gen_own_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1858 | { |
| 1859 | #ifdef FEAT_XCLIPBOARD |
| 1860 | # ifdef FEAT_GUI |
| 1861 | if (gui.in_use) |
| 1862 | return clip_mch_own_selection(cbd); |
| 1863 | else |
| 1864 | # endif |
| 1865 | return clip_xterm_own_selection(cbd); |
| 1866 | #else |
| 1867 | return clip_mch_own_selection(cbd); |
| 1868 | #endif |
| 1869 | } |
| 1870 | |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 1871 | static void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1872 | clip_gen_lose_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1873 | { |
| 1874 | #ifdef FEAT_XCLIPBOARD |
| 1875 | # ifdef FEAT_GUI |
| 1876 | if (gui.in_use) |
| 1877 | clip_mch_lose_selection(cbd); |
| 1878 | else |
| 1879 | # endif |
| 1880 | clip_xterm_lose_selection(cbd); |
| 1881 | #else |
| 1882 | clip_mch_lose_selection(cbd); |
| 1883 | #endif |
| 1884 | } |
| 1885 | |
| 1886 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1887 | clip_gen_set_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1888 | { |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 1889 | if (!clip_did_set_selection) |
| 1890 | { |
| 1891 | /* Updating postponed, so that accessing the system clipboard won't |
Bram Moolenaar | bdace83 | 2019-03-02 10:13:42 +0100 | [diff] [blame] | 1892 | * 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] | 1893 | if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS)) |
| 1894 | || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED))) |
| 1895 | { |
| 1896 | clipboard_needs_update = TRUE; |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 1897 | return; |
Bram Moolenaar | 5c27fd1 | 2015-01-27 14:09:37 +0100 | [diff] [blame] | 1898 | } |
Bram Moolenaar | 6b1ee34 | 2014-08-06 18:17:11 +0200 | [diff] [blame] | 1899 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1900 | #ifdef FEAT_XCLIPBOARD |
| 1901 | # ifdef FEAT_GUI |
| 1902 | if (gui.in_use) |
| 1903 | clip_mch_set_selection(cbd); |
| 1904 | else |
| 1905 | # endif |
| 1906 | clip_xterm_set_selection(cbd); |
| 1907 | #else |
| 1908 | clip_mch_set_selection(cbd); |
| 1909 | #endif |
| 1910 | } |
| 1911 | |
| 1912 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1913 | clip_gen_request_selection(Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1914 | { |
| 1915 | #ifdef FEAT_XCLIPBOARD |
| 1916 | # ifdef FEAT_GUI |
| 1917 | if (gui.in_use) |
| 1918 | clip_mch_request_selection(cbd); |
| 1919 | else |
| 1920 | # endif |
| 1921 | clip_xterm_request_selection(cbd); |
| 1922 | #else |
| 1923 | clip_mch_request_selection(cbd); |
| 1924 | #endif |
| 1925 | } |
| 1926 | |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 1927 | #if (defined(FEAT_X11) && defined(USE_SYSTEM)) || defined(PROTO) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1928 | int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 1929 | clip_gen_owner_exists(Clipboard_T *cbd UNUSED) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1930 | { |
| 1931 | #ifdef FEAT_XCLIPBOARD |
| 1932 | # ifdef FEAT_GUI_GTK |
| 1933 | if (gui.in_use) |
| 1934 | return clip_gtk_owner_exists(cbd); |
| 1935 | else |
| 1936 | # endif |
| 1937 | return clip_x11_owner_exists(cbd); |
Bram Moolenaar | 690ae9c | 2013-07-13 20:58:11 +0200 | [diff] [blame] | 1938 | #else |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1939 | return TRUE; |
Bram Moolenaar | 690ae9c | 2013-07-13 20:58:11 +0200 | [diff] [blame] | 1940 | #endif |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1941 | } |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 1942 | #endif |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1943 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1944 | #endif /* FEAT_CLIPBOARD */ |
| 1945 | |
| 1946 | /***************************************************************************** |
| 1947 | * Functions that handle the input buffer. |
| 1948 | * This is used for any GUI version, and the unix terminal version. |
| 1949 | * |
| 1950 | * For Unix, the input characters are buffered to be able to check for a |
| 1951 | * CTRL-C. This should be done with signals, but I don't know how to do that |
| 1952 | * in a portable way for a tty in RAW mode. |
| 1953 | * |
| 1954 | * For the client-server code in the console the received keys are put in the |
| 1955 | * input buffer. |
| 1956 | */ |
| 1957 | |
| 1958 | #if defined(USE_INPUT_BUF) || defined(PROTO) |
| 1959 | |
| 1960 | /* |
| 1961 | * Internal typeahead buffer. Includes extra space for long key code |
| 1962 | * descriptions which would otherwise overflow. The buffer is considered full |
| 1963 | * when only this extra space (or part of it) remains. |
| 1964 | */ |
Bram Moolenaar | bb1969b | 2019-01-17 15:45:25 +0100 | [diff] [blame] | 1965 | #if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1966 | /* |
Bram Moolenaar | bb1969b | 2019-01-17 15:45:25 +0100 | [diff] [blame] | 1967 | * NetBeans stuffs debugger commands into the input buffer. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1968 | * This requires a larger buffer... |
| 1969 | * (Madsen) Go with this for remote input as well ... |
| 1970 | */ |
| 1971 | # define INBUFLEN 4096 |
| 1972 | #else |
| 1973 | # define INBUFLEN 250 |
| 1974 | #endif |
| 1975 | |
| 1976 | static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN]; |
| 1977 | static int inbufcount = 0; /* number of chars in inbuf[] */ |
| 1978 | |
| 1979 | /* |
| 1980 | * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and |
| 1981 | * trash_input_buf() are functions for manipulating the input buffer. These |
| 1982 | * are used by the gui_* calls when a GUI is used to handle keyboard input. |
| 1983 | */ |
| 1984 | |
| 1985 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1986 | vim_is_input_buf_full(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1987 | { |
| 1988 | return (inbufcount >= INBUFLEN); |
| 1989 | } |
| 1990 | |
| 1991 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1992 | vim_is_input_buf_empty(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1993 | { |
| 1994 | return (inbufcount == 0); |
| 1995 | } |
| 1996 | |
| 1997 | #if defined(FEAT_OLE) || defined(PROTO) |
| 1998 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 1999 | vim_free_in_input_buf(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2000 | { |
| 2001 | return (INBUFLEN - inbufcount); |
| 2002 | } |
| 2003 | #endif |
| 2004 | |
Bram Moolenaar | 241a8aa | 2005-12-06 20:04:44 +0000 | [diff] [blame] | 2005 | #if defined(FEAT_GUI_GTK) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2006 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2007 | vim_used_in_input_buf(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2008 | { |
| 2009 | return inbufcount; |
| 2010 | } |
| 2011 | #endif |
| 2012 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2013 | /* |
| 2014 | * Return the current contents of the input buffer and make it empty. |
| 2015 | * The returned pointer must be passed to set_input_buf() later. |
| 2016 | */ |
| 2017 | char_u * |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2018 | get_input_buf(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2019 | { |
| 2020 | garray_T *gap; |
| 2021 | |
| 2022 | /* We use a growarray to store the data pointer and the length. */ |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 2023 | gap = ALLOC_ONE(garray_T); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2024 | if (gap != NULL) |
| 2025 | { |
| 2026 | /* Add one to avoid a zero size. */ |
Bram Moolenaar | 18a4ba2 | 2019-05-24 19:39:03 +0200 | [diff] [blame] | 2027 | gap->ga_data = alloc(inbufcount + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2028 | if (gap->ga_data != NULL) |
| 2029 | mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount); |
| 2030 | gap->ga_len = inbufcount; |
| 2031 | } |
| 2032 | trash_input_buf(); |
| 2033 | return (char_u *)gap; |
| 2034 | } |
| 2035 | |
| 2036 | /* |
| 2037 | * Restore the input buffer with a pointer returned from get_input_buf(). |
| 2038 | * The allocated memory is freed, this only works once! |
| 2039 | */ |
| 2040 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2041 | set_input_buf(char_u *p) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2042 | { |
| 2043 | garray_T *gap = (garray_T *)p; |
| 2044 | |
| 2045 | if (gap != NULL) |
| 2046 | { |
| 2047 | if (gap->ga_data != NULL) |
| 2048 | { |
| 2049 | mch_memmove(inbuf, gap->ga_data, gap->ga_len); |
| 2050 | inbufcount = gap->ga_len; |
| 2051 | vim_free(gap->ga_data); |
| 2052 | } |
| 2053 | vim_free(gap); |
| 2054 | } |
| 2055 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2056 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2057 | /* |
| 2058 | * Add the given bytes to the input buffer |
| 2059 | * Special keys start with CSI. A real CSI must have been translated to |
| 2060 | * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation. |
| 2061 | */ |
| 2062 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2063 | add_to_input_buf(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2064 | { |
| 2065 | if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN) |
| 2066 | return; /* Shouldn't ever happen! */ |
| 2067 | |
| 2068 | #ifdef FEAT_HANGULIN |
| 2069 | if ((State & (INSERT|CMDLINE)) && hangul_input_state_get()) |
| 2070 | if ((len = hangul_input_process(s, len)) == 0) |
| 2071 | return; |
| 2072 | #endif |
| 2073 | |
| 2074 | while (len--) |
| 2075 | inbuf[inbufcount++] = *s++; |
| 2076 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2077 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2078 | /* |
| 2079 | * Add "str[len]" to the input buffer while escaping CSI bytes. |
| 2080 | */ |
| 2081 | void |
| 2082 | add_to_input_buf_csi(char_u *str, int len) |
| 2083 | { |
| 2084 | int i; |
| 2085 | char_u buf[2]; |
| 2086 | |
| 2087 | for (i = 0; i < len; ++i) |
| 2088 | { |
| 2089 | add_to_input_buf(str + i, 1); |
| 2090 | if (str[i] == CSI) |
| 2091 | { |
| 2092 | /* Turn CSI into K_CSI. */ |
| 2093 | buf[0] = KS_EXTRA; |
| 2094 | buf[1] = (int)KE_CSI; |
| 2095 | add_to_input_buf(buf, 2); |
| 2096 | } |
| 2097 | } |
| 2098 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2099 | |
| 2100 | #if defined(FEAT_HANGULIN) || defined(PROTO) |
| 2101 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2102 | push_raw_key(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2103 | { |
Bram Moolenaar | 72f4cc4 | 2015-11-10 14:35:18 +0100 | [diff] [blame] | 2104 | char_u *tmpbuf; |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2105 | char_u *inp = s; |
Bram Moolenaar | 72f4cc4 | 2015-11-10 14:35:18 +0100 | [diff] [blame] | 2106 | |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2107 | /* use the conversion result if possible */ |
Bram Moolenaar | 72f4cc4 | 2015-11-10 14:35:18 +0100 | [diff] [blame] | 2108 | tmpbuf = hangul_string_convert(s, &len); |
| 2109 | if (tmpbuf != NULL) |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2110 | inp = tmpbuf; |
Bram Moolenaar | 72f4cc4 | 2015-11-10 14:35:18 +0100 | [diff] [blame] | 2111 | |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2112 | for (; len--; inp++) |
| 2113 | { |
| 2114 | inbuf[inbufcount++] = *inp; |
| 2115 | if (*inp == CSI) |
Bram Moolenaar | 00ded43 | 2016-03-03 11:45:15 +0100 | [diff] [blame] | 2116 | { |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2117 | /* Turn CSI into K_CSI. */ |
| 2118 | inbuf[inbufcount++] = KS_EXTRA; |
| 2119 | inbuf[inbufcount++] = (int)KE_CSI; |
Bram Moolenaar | 00ded43 | 2016-03-03 11:45:15 +0100 | [diff] [blame] | 2120 | } |
Bram Moolenaar | 00ded43 | 2016-03-03 11:45:15 +0100 | [diff] [blame] | 2121 | } |
Bram Moolenaar | 179f1b9 | 2016-03-04 22:52:34 +0100 | [diff] [blame] | 2122 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2123 | } |
| 2124 | #endif |
| 2125 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2126 | /* Remove everything from the input buffer. Called when ^C is found */ |
| 2127 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2128 | trash_input_buf(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2129 | { |
| 2130 | inbufcount = 0; |
| 2131 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2132 | |
| 2133 | /* |
| 2134 | * Read as much data from the input buffer as possible up to maxlen, and store |
| 2135 | * it in buf. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2136 | */ |
| 2137 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2138 | read_from_input_buf(char_u *buf, long maxlen) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2139 | { |
| 2140 | if (inbufcount == 0) /* if the buffer is empty, fill it */ |
| 2141 | fill_input_buf(TRUE); |
| 2142 | if (maxlen > inbufcount) |
| 2143 | maxlen = inbufcount; |
| 2144 | mch_memmove(buf, inbuf, (size_t)maxlen); |
| 2145 | inbufcount -= maxlen; |
| 2146 | if (inbufcount) |
| 2147 | mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount); |
| 2148 | return (int)maxlen; |
| 2149 | } |
| 2150 | |
| 2151 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2152 | fill_input_buf(int exit_on_error UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2153 | { |
Bram Moolenaar | d057301 | 2017-10-28 21:11:06 +0200 | [diff] [blame] | 2154 | #if defined(UNIX) || defined(VMS) || defined(MACOS_X) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2155 | int len; |
| 2156 | int try; |
| 2157 | static int did_read_something = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2158 | static char_u *rest = NULL; /* unconverted rest of previous read */ |
| 2159 | static int restlen = 0; |
| 2160 | int unconverted; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2161 | #endif |
| 2162 | |
| 2163 | #ifdef FEAT_GUI |
Bram Moolenaar | 54ee775 | 2005-05-31 22:22:17 +0000 | [diff] [blame] | 2164 | if (gui.in_use |
| 2165 | # ifdef NO_CONSOLE_INPUT |
| 2166 | /* Don't use the GUI input when the window hasn't been opened yet. |
| 2167 | * We get here from ui_inchar() when we should try reading from stdin. */ |
| 2168 | && !no_console_input() |
| 2169 | # endif |
| 2170 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2171 | { |
| 2172 | gui_mch_update(); |
| 2173 | return; |
| 2174 | } |
| 2175 | #endif |
Bram Moolenaar | d057301 | 2017-10-28 21:11:06 +0200 | [diff] [blame] | 2176 | #if defined(UNIX) || defined(VMS) || defined(MACOS_X) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2177 | if (vim_is_input_buf_full()) |
| 2178 | return; |
| 2179 | /* |
| 2180 | * Fill_input_buf() is only called when we really need a character. |
| 2181 | * If we can't get any, but there is some in the buffer, just return. |
| 2182 | * If we can't get any, and there isn't any in the buffer, we give up and |
| 2183 | * exit Vim. |
| 2184 | */ |
| 2185 | # ifdef __BEOS__ |
| 2186 | /* |
| 2187 | * On the BeBox version (for now), all input is secretly performed within |
| 2188 | * beos_select() which is called from RealWaitForChar(). |
| 2189 | */ |
| 2190 | while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL)) |
| 2191 | ; |
| 2192 | len = inbufcount; |
| 2193 | inbufcount = 0; |
| 2194 | # else |
| 2195 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2196 | if (rest != NULL) |
| 2197 | { |
| 2198 | /* Use remainder of previous call, starts with an invalid character |
| 2199 | * that may become valid when reading more. */ |
| 2200 | if (restlen > INBUFLEN - inbufcount) |
| 2201 | unconverted = INBUFLEN - inbufcount; |
| 2202 | else |
| 2203 | unconverted = restlen; |
| 2204 | mch_memmove(inbuf + inbufcount, rest, unconverted); |
| 2205 | if (unconverted == restlen) |
Bram Moolenaar | d23a823 | 2018-02-10 18:45:26 +0100 | [diff] [blame] | 2206 | VIM_CLEAR(rest); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2207 | else |
| 2208 | { |
| 2209 | restlen -= unconverted; |
| 2210 | mch_memmove(rest, rest + unconverted, restlen); |
| 2211 | } |
| 2212 | inbufcount += unconverted; |
| 2213 | } |
| 2214 | else |
| 2215 | unconverted = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2216 | |
| 2217 | len = 0; /* to avoid gcc warning */ |
| 2218 | for (try = 0; try < 100; ++try) |
| 2219 | { |
Bram Moolenaar | 4e601e3 | 2018-04-24 13:29:51 +0200 | [diff] [blame] | 2220 | size_t readlen = (size_t)((INBUFLEN - inbufcount) |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2221 | / input_conv.vc_factor); |
Bram Moolenaar | 4e601e3 | 2018-04-24 13:29:51 +0200 | [diff] [blame] | 2222 | # ifdef VMS |
Bram Moolenaar | 4994373 | 2018-04-24 20:27:26 +0200 | [diff] [blame] | 2223 | len = vms_read((char *)inbuf + inbufcount, readlen); |
Bram Moolenaar | 4e601e3 | 2018-04-24 13:29:51 +0200 | [diff] [blame] | 2224 | # else |
| 2225 | len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2226 | # endif |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 2227 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2228 | if (len > 0 || got_int) |
| 2229 | break; |
| 2230 | /* |
| 2231 | * If reading stdin results in an error, continue reading stderr. |
| 2232 | * This helps when using "foo | xargs vim". |
| 2233 | */ |
| 2234 | if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0) |
| 2235 | { |
| 2236 | int m = cur_tmode; |
| 2237 | |
| 2238 | /* We probably set the wrong file descriptor to raw mode. Switch |
| 2239 | * back to cooked mode, use another descriptor and set the mode to |
| 2240 | * what it was. */ |
| 2241 | settmode(TMODE_COOK); |
| 2242 | #ifdef HAVE_DUP |
| 2243 | /* Use stderr for stdin, also works for shell commands. */ |
| 2244 | close(0); |
Bram Moolenaar | 42335f5 | 2018-09-13 15:33:43 +0200 | [diff] [blame] | 2245 | vim_ignored = dup(2); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2246 | #else |
| 2247 | read_cmd_fd = 2; /* read from stderr instead of stdin */ |
| 2248 | #endif |
| 2249 | settmode(m); |
| 2250 | } |
| 2251 | if (!exit_on_error) |
| 2252 | return; |
| 2253 | } |
| 2254 | # endif |
| 2255 | if (len <= 0 && !got_int) |
| 2256 | read_error_exit(); |
| 2257 | if (len > 0) |
| 2258 | did_read_something = TRUE; |
| 2259 | if (got_int) |
| 2260 | { |
| 2261 | /* Interrupted, pretend a CTRL-C was typed. */ |
| 2262 | inbuf[0] = 3; |
| 2263 | inbufcount = 1; |
| 2264 | } |
| 2265 | else |
| 2266 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2267 | /* |
| 2268 | * May perform conversion on the input characters. |
| 2269 | * Include the unconverted rest of the previous call. |
| 2270 | * If there is an incomplete char at the end it is kept for the next |
| 2271 | * time, reading more bytes should make conversion possible. |
| 2272 | * Don't do this in the unlikely event that the input buffer is too |
| 2273 | * small ("rest" still contains more bytes). |
| 2274 | */ |
| 2275 | if (input_conv.vc_type != CONV_NONE) |
| 2276 | { |
| 2277 | inbufcount -= unconverted; |
| 2278 | len = convert_input_safe(inbuf + inbufcount, |
| 2279 | len + unconverted, INBUFLEN - inbufcount, |
| 2280 | rest == NULL ? &rest : NULL, &restlen); |
| 2281 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2282 | while (len-- > 0) |
| 2283 | { |
| 2284 | /* |
| 2285 | * if a CTRL-C was typed, remove it from the buffer and set got_int |
| 2286 | */ |
| 2287 | if (inbuf[inbufcount] == 3 && ctrl_c_interrupts) |
| 2288 | { |
| 2289 | /* remove everything typed before the CTRL-C */ |
| 2290 | mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1)); |
| 2291 | inbufcount = 0; |
| 2292 | got_int = TRUE; |
| 2293 | } |
| 2294 | ++inbufcount; |
| 2295 | } |
| 2296 | } |
Bram Moolenaar | e7fedb6 | 2015-12-31 19:07:19 +0100 | [diff] [blame] | 2297 | #endif /* UNIX or VMS*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2298 | } |
Bram Moolenaar | e7fedb6 | 2015-12-31 19:07:19 +0100 | [diff] [blame] | 2299 | #endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2300 | |
| 2301 | /* |
| 2302 | * Exit because of an input read error. |
| 2303 | */ |
| 2304 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2305 | read_error_exit(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2306 | { |
| 2307 | if (silent_mode) /* Normal way to exit for "ex -s" */ |
| 2308 | getout(0); |
| 2309 | STRCPY(IObuff, _("Vim: Error reading input, exiting...\n")); |
| 2310 | preserve_exit(); |
| 2311 | } |
| 2312 | |
| 2313 | #if defined(CURSOR_SHAPE) || defined(PROTO) |
| 2314 | /* |
| 2315 | * May update the shape of the cursor. |
| 2316 | */ |
| 2317 | void |
Bram Moolenaar | 3cd43cc | 2017-08-12 19:51:41 +0200 | [diff] [blame] | 2318 | ui_cursor_shape_forced(int forced) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2319 | { |
| 2320 | # ifdef FEAT_GUI |
| 2321 | if (gui.in_use) |
| 2322 | gui_update_cursor_later(); |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2323 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2324 | # endif |
Bram Moolenaar | 3cd43cc | 2017-08-12 19:51:41 +0200 | [diff] [blame] | 2325 | term_cursor_mode(forced); |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2326 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2327 | # ifdef MCH_CURSOR_SHAPE |
| 2328 | mch_update_cursor(); |
| 2329 | # endif |
Bram Moolenaar | f5963f7 | 2010-07-23 22:10:27 +0200 | [diff] [blame] | 2330 | |
| 2331 | # ifdef FEAT_CONCEAL |
Bram Moolenaar | b946482 | 2018-05-10 15:09:49 +0200 | [diff] [blame] | 2332 | conceal_check_cursor_line(); |
Bram Moolenaar | f5963f7 | 2010-07-23 22:10:27 +0200 | [diff] [blame] | 2333 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2334 | } |
Bram Moolenaar | 3cd43cc | 2017-08-12 19:51:41 +0200 | [diff] [blame] | 2335 | |
| 2336 | void |
| 2337 | ui_cursor_shape(void) |
| 2338 | { |
| 2339 | ui_cursor_shape_forced(FALSE); |
| 2340 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2341 | #endif |
| 2342 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2343 | /* |
| 2344 | * Check bounds for column number |
| 2345 | */ |
| 2346 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2347 | check_col(int col) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2348 | { |
| 2349 | if (col < 0) |
| 2350 | return 0; |
| 2351 | if (col >= (int)screen_Columns) |
| 2352 | return (int)screen_Columns - 1; |
| 2353 | return col; |
| 2354 | } |
| 2355 | |
| 2356 | /* |
| 2357 | * Check bounds for row number |
| 2358 | */ |
| 2359 | int |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2360 | check_row(int row) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2361 | { |
| 2362 | if (row < 0) |
| 2363 | return 0; |
| 2364 | if (row >= (int)screen_Rows) |
| 2365 | return (int)screen_Rows - 1; |
| 2366 | return row; |
| 2367 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2368 | |
| 2369 | /* |
| 2370 | * Stuff for the X clipboard. Shared between VMS and Unix. |
| 2371 | */ |
| 2372 | |
| 2373 | #if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO) |
| 2374 | # include <X11/Xatom.h> |
| 2375 | # include <X11/Intrinsic.h> |
| 2376 | |
| 2377 | /* |
| 2378 | * Open the application context (if it hasn't been opened yet). |
| 2379 | * Used for Motif and Athena GUI and the xterm clipboard. |
| 2380 | */ |
| 2381 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2382 | open_app_context(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2383 | { |
| 2384 | if (app_context == NULL) |
| 2385 | { |
| 2386 | XtToolkitInitialize(); |
| 2387 | app_context = XtCreateApplicationContext(); |
| 2388 | } |
| 2389 | } |
| 2390 | |
| 2391 | static Atom vim_atom; /* Vim's own special selection format */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2392 | static Atom vimenc_atom; /* Vim's extended selection format */ |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2393 | static Atom utf8_atom; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2394 | static Atom compound_text_atom; |
| 2395 | static Atom text_atom; |
| 2396 | static Atom targets_atom; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2397 | static Atom timestamp_atom; /* Used to get a timestamp */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2398 | |
| 2399 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2400 | x11_setup_atoms(Display *dpy) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2401 | { |
| 2402 | vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2403 | vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False); |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2404 | utf8_atom = XInternAtom(dpy, "UTF8_STRING", False); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2405 | compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False); |
| 2406 | text_atom = XInternAtom(dpy, "TEXT", False); |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2407 | targets_atom = XInternAtom(dpy, "TARGETS", False); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2408 | clip_star.sel_atom = XA_PRIMARY; |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2409 | clip_plus.sel_atom = XInternAtom(dpy, "CLIPBOARD", False); |
| 2410 | timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2411 | } |
| 2412 | |
| 2413 | /* |
| 2414 | * X Selection stuff, for cutting and pasting text to other windows. |
| 2415 | */ |
| 2416 | |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2417 | static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format); |
| 2418 | static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom); |
| 2419 | 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] | 2420 | |
| 2421 | /* |
| 2422 | * Property callback to get a timestamp for XtOwnSelection. |
| 2423 | */ |
| 2424 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2425 | clip_x11_timestamp_cb( |
| 2426 | Widget w, |
| 2427 | XtPointer n UNUSED, |
| 2428 | XEvent *event, |
| 2429 | Boolean *cont UNUSED) |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2430 | { |
| 2431 | Atom actual_type; |
| 2432 | int format; |
| 2433 | unsigned long nitems, bytes_after; |
| 2434 | unsigned char *prop=NULL; |
| 2435 | XPropertyEvent *xproperty=&event->xproperty; |
| 2436 | |
| 2437 | /* Must be a property notify, state can't be Delete (True), has to be |
| 2438 | * one of the supported selection types. */ |
| 2439 | if (event->type != PropertyNotify || xproperty->state |
| 2440 | || (xproperty->atom != clip_star.sel_atom |
| 2441 | && xproperty->atom != clip_plus.sel_atom)) |
| 2442 | return; |
| 2443 | |
| 2444 | if (XGetWindowProperty(xproperty->display, xproperty->window, |
| 2445 | xproperty->atom, 0, 0, False, timestamp_atom, &actual_type, &format, |
| 2446 | &nitems, &bytes_after, &prop)) |
| 2447 | return; |
| 2448 | |
| 2449 | if (prop) |
| 2450 | XFree(prop); |
| 2451 | |
| 2452 | /* Make sure the property type is "TIMESTAMP" and it's 32 bits. */ |
| 2453 | if (actual_type != timestamp_atom || format != 32) |
| 2454 | return; |
| 2455 | |
| 2456 | /* Get the selection, using the event timestamp. */ |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 2457 | if (XtOwnSelection(w, xproperty->atom, xproperty->time, |
| 2458 | clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb, |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2459 | clip_x11_notify_cb) == OK) |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 2460 | { |
| 2461 | /* Set the "owned" flag now, there may have been a call to |
| 2462 | * lose_ownership_cb in between. */ |
| 2463 | if (xproperty->atom == clip_plus.sel_atom) |
| 2464 | clip_plus.owned = TRUE; |
| 2465 | else |
| 2466 | clip_star.owned = TRUE; |
| 2467 | } |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2468 | } |
| 2469 | |
| 2470 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2471 | x11_setup_selection(Widget w) |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2472 | { |
| 2473 | XtAddEventHandler(w, PropertyChangeMask, False, |
| 2474 | /*(XtEventHandler)*/clip_x11_timestamp_cb, (XtPointer)NULL); |
| 2475 | } |
| 2476 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2477 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2478 | clip_x11_request_selection_cb( |
| 2479 | Widget w UNUSED, |
| 2480 | XtPointer success, |
| 2481 | Atom *sel_atom, |
| 2482 | Atom *type, |
| 2483 | XtPointer value, |
| 2484 | long_u *length, |
| 2485 | int *format) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2486 | { |
Bram Moolenaar | d44347f | 2011-06-19 01:14:29 +0200 | [diff] [blame] | 2487 | int motion_type = MAUTO; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2488 | long_u len; |
| 2489 | char_u *p; |
| 2490 | char **text_list = NULL; |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2491 | Clipboard_T *cbd; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2492 | char_u *tmpbuf = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2493 | |
| 2494 | if (*sel_atom == clip_plus.sel_atom) |
| 2495 | cbd = &clip_plus; |
| 2496 | else |
| 2497 | cbd = &clip_star; |
| 2498 | |
| 2499 | if (value == NULL || *length == 0) |
| 2500 | { |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2501 | clip_free_selection(cbd); /* nothing received, clear register */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2502 | *(int *)success = FALSE; |
| 2503 | return; |
| 2504 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2505 | p = (char_u *)value; |
| 2506 | len = *length; |
| 2507 | if (*type == vim_atom) |
| 2508 | { |
| 2509 | motion_type = *p++; |
| 2510 | len--; |
| 2511 | } |
| 2512 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2513 | else if (*type == vimenc_atom) |
| 2514 | { |
| 2515 | char_u *enc; |
| 2516 | vimconv_T conv; |
| 2517 | int convlen; |
| 2518 | |
| 2519 | motion_type = *p++; |
| 2520 | --len; |
| 2521 | |
| 2522 | enc = p; |
| 2523 | p += STRLEN(p) + 1; |
| 2524 | len -= p - enc; |
| 2525 | |
| 2526 | /* If the encoding of the text is different from 'encoding', attempt |
| 2527 | * converting it. */ |
| 2528 | conv.vc_type = CONV_NONE; |
| 2529 | convert_setup(&conv, enc, p_enc); |
| 2530 | if (conv.vc_type != CONV_NONE) |
| 2531 | { |
| 2532 | convlen = len; /* Need to use an int here. */ |
| 2533 | tmpbuf = string_convert(&conv, p, &convlen); |
| 2534 | len = convlen; |
| 2535 | if (tmpbuf != NULL) |
| 2536 | p = tmpbuf; |
| 2537 | convert_setup(&conv, NULL, NULL); |
| 2538 | } |
| 2539 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2540 | |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2541 | else if (*type == compound_text_atom |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2542 | || *type == utf8_atom |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2543 | || (enc_dbcs != 0 && *type == text_atom)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2544 | { |
| 2545 | XTextProperty text_prop; |
| 2546 | int n_text = 0; |
| 2547 | int status; |
| 2548 | |
| 2549 | text_prop.value = (unsigned char *)value; |
| 2550 | text_prop.encoding = *type; |
| 2551 | text_prop.format = *format; |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2552 | text_prop.nitems = len; |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2553 | #if defined(X_HAVE_UTF8_STRING) |
Bram Moolenaar | e2e663f | 2013-03-07 18:02:30 +0100 | [diff] [blame] | 2554 | if (*type == utf8_atom) |
| 2555 | status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop, |
| 2556 | &text_list, &n_text); |
| 2557 | else |
| 2558 | #endif |
| 2559 | status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2560 | &text_list, &n_text); |
| 2561 | if (status != Success || n_text < 1) |
| 2562 | { |
| 2563 | *(int *)success = FALSE; |
| 2564 | return; |
| 2565 | } |
| 2566 | p = (char_u *)text_list[0]; |
| 2567 | len = STRLEN(p); |
| 2568 | } |
| 2569 | clip_yank_selection(motion_type, p, (long)len, cbd); |
| 2570 | |
| 2571 | if (text_list != NULL) |
| 2572 | XFreeStringList(text_list); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2573 | vim_free(tmpbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2574 | XtFree((char *)value); |
| 2575 | *(int *)success = TRUE; |
| 2576 | } |
| 2577 | |
| 2578 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2579 | clip_x11_request_selection( |
| 2580 | Widget myShell, |
| 2581 | Display *dpy, |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2582 | Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2583 | { |
| 2584 | XEvent event; |
| 2585 | Atom type; |
| 2586 | static int success; |
| 2587 | int i; |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2588 | time_t start_time; |
| 2589 | int timed_out = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2590 | |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2591 | for (i = 0; i < 6; i++) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2592 | { |
| 2593 | switch (i) |
| 2594 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2595 | case 0: type = vimenc_atom; break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2596 | case 1: type = vim_atom; break; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2597 | case 2: type = utf8_atom; break; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2598 | case 3: type = compound_text_atom; break; |
| 2599 | case 4: type = text_atom; break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2600 | default: type = XA_STRING; |
| 2601 | } |
Bram Moolenaar | 8185111 | 2013-04-12 12:27:30 +0200 | [diff] [blame] | 2602 | if (type == utf8_atom |
| 2603 | # if defined(X_HAVE_UTF8_STRING) |
| 2604 | && !enc_utf8 |
| 2605 | # endif |
| 2606 | ) |
| 2607 | /* Only request utf-8 when 'encoding' is utf8 and |
| 2608 | * Xutf8TextPropertyToTextList is available. */ |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2609 | continue; |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2610 | success = MAYBE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2611 | XtGetSelectionValue(myShell, cbd->sel_atom, type, |
| 2612 | clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime); |
| 2613 | |
| 2614 | /* Make sure the request for the selection goes out before waiting for |
| 2615 | * a response. */ |
| 2616 | XFlush(dpy); |
| 2617 | |
| 2618 | /* |
| 2619 | * Wait for result of selection request, otherwise if we type more |
| 2620 | * characters, then they will appear before the one that requested the |
| 2621 | * paste! Don't worry, we will catch up with any other events later. |
| 2622 | */ |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2623 | start_time = time(NULL); |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2624 | while (success == MAYBE) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2625 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2626 | if (XCheckTypedEvent(dpy, PropertyNotify, &event) |
| 2627 | || XCheckTypedEvent(dpy, SelectionNotify, &event) |
| 2628 | || XCheckTypedEvent(dpy, SelectionRequest, &event)) |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2629 | { |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2630 | /* This is where clip_x11_request_selection_cb() should be |
| 2631 | * called. It may actually happen a bit later, so we loop |
| 2632 | * until "success" changes. |
| 2633 | * We may get a SelectionRequest here and if we don't handle |
| 2634 | * it we hang. KDE klipper does this, for example. |
| 2635 | * We need to handle a PropertyNotify for large selections. */ |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2636 | XtDispatchEvent(&event); |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2637 | continue; |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2638 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2639 | |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2640 | /* Time out after 2 to 3 seconds to avoid that we hang when the |
| 2641 | * other process doesn't respond. Note that the SelectionNotify |
| 2642 | * event may still come later when the selection owner comes back |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2643 | * to life and the text gets inserted unexpectedly. Don't know |
| 2644 | * why that happens or how to avoid that :-(. */ |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2645 | if (time(NULL) > start_time + 2) |
| 2646 | { |
| 2647 | timed_out = TRUE; |
| 2648 | break; |
| 2649 | } |
| 2650 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2651 | /* Do we need this? Probably not. */ |
| 2652 | XSync(dpy, False); |
| 2653 | |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2654 | /* Wait for 1 msec to avoid that we eat up all CPU time. */ |
| 2655 | ui_delay(1L, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2656 | } |
| 2657 | |
Bram Moolenaar | 24d92ce | 2008-09-14 13:58:34 +0000 | [diff] [blame] | 2658 | if (success == TRUE) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2659 | return; |
Bram Moolenaar | 89417b9 | 2008-09-07 19:48:53 +0000 | [diff] [blame] | 2660 | |
| 2661 | /* don't do a retry with another type after timing out, otherwise we |
| 2662 | * hang for 15 seconds. */ |
| 2663 | if (timed_out) |
| 2664 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2665 | } |
| 2666 | |
| 2667 | /* Final fallback position - use the X CUT_BUFFER0 store */ |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2668 | yank_cut_buffer0(dpy, cbd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2669 | } |
| 2670 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2671 | static Boolean |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2672 | clip_x11_convert_selection_cb( |
| 2673 | Widget w UNUSED, |
| 2674 | Atom *sel_atom, |
| 2675 | Atom *target, |
| 2676 | Atom *type, |
| 2677 | XtPointer *value, |
| 2678 | long_u *length, |
| 2679 | int *format) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2680 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2681 | static char_u *save_result = NULL; |
| 2682 | static long_u save_length = 0; |
| 2683 | char_u *string; |
| 2684 | int motion_type; |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2685 | Clipboard_T *cbd; |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2686 | int i; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2687 | |
| 2688 | if (*sel_atom == clip_plus.sel_atom) |
| 2689 | cbd = &clip_plus; |
| 2690 | else |
| 2691 | cbd = &clip_star; |
| 2692 | |
| 2693 | if (!cbd->owned) |
| 2694 | return False; /* Shouldn't ever happen */ |
| 2695 | |
| 2696 | /* requestor wants to know what target types we support */ |
| 2697 | if (*target == targets_atom) |
| 2698 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2699 | static Atom array[7]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2700 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2701 | *value = (XtPointer)array; |
| 2702 | i = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2703 | array[i++] = targets_atom; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2704 | array[i++] = vimenc_atom; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2705 | array[i++] = vim_atom; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2706 | if (enc_utf8) |
| 2707 | array[i++] = utf8_atom; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2708 | array[i++] = XA_STRING; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2709 | array[i++] = text_atom; |
| 2710 | array[i++] = compound_text_atom; |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2711 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2712 | *type = XA_ATOM; |
| 2713 | /* This used to be: *format = sizeof(Atom) * 8; but that caused |
| 2714 | * crashes on 64 bit machines. (Peter Derr) */ |
| 2715 | *format = 32; |
| 2716 | *length = i; |
| 2717 | return True; |
| 2718 | } |
| 2719 | |
| 2720 | if ( *target != XA_STRING |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2721 | && *target != vimenc_atom |
Bram Moolenaar | 980e58f | 2014-06-12 13:28:30 +0200 | [diff] [blame] | 2722 | && (*target != utf8_atom || !enc_utf8) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2723 | && *target != vim_atom |
| 2724 | && *target != text_atom |
| 2725 | && *target != compound_text_atom) |
| 2726 | return False; |
| 2727 | |
| 2728 | clip_get_selection(cbd); |
| 2729 | motion_type = clip_convert_selection(&string, length, cbd); |
| 2730 | if (motion_type < 0) |
| 2731 | return False; |
| 2732 | |
| 2733 | /* For our own format, the first byte contains the motion type */ |
| 2734 | if (*target == vim_atom) |
| 2735 | (*length)++; |
| 2736 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2737 | /* Our own format with encoding: motion 'encoding' NUL text */ |
| 2738 | if (*target == vimenc_atom) |
| 2739 | *length += STRLEN(p_enc) + 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2740 | |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2741 | if (save_length < *length || save_length / 2 >= *length) |
| 2742 | *value = XtRealloc((char *)save_result, (Cardinal)*length + 1); |
| 2743 | else |
| 2744 | *value = save_result; |
| 2745 | if (*value == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2746 | { |
| 2747 | vim_free(string); |
| 2748 | return False; |
| 2749 | } |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2750 | save_result = (char_u *)*value; |
| 2751 | save_length = *length; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2752 | |
Bram Moolenaar | 264b74f | 2019-01-24 17:18:42 +0100 | [diff] [blame] | 2753 | if (*target == XA_STRING || (*target == utf8_atom && enc_utf8)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2754 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2755 | mch_memmove(save_result, string, (size_t)(*length)); |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2756 | *type = *target; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2757 | } |
Bram Moolenaar | efcb54b | 2012-02-12 01:35:10 +0100 | [diff] [blame] | 2758 | else if (*target == compound_text_atom || *target == text_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2759 | { |
| 2760 | XTextProperty text_prop; |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2761 | char *string_nt = (char *)save_result; |
Bram Moolenaar | fe17e76 | 2013-06-29 14:17:02 +0200 | [diff] [blame] | 2762 | int conv_result; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2763 | |
| 2764 | /* create NUL terminated string which XmbTextListToTextProperty wants */ |
| 2765 | mch_memmove(string_nt, string, (size_t)*length); |
| 2766 | string_nt[*length] = NUL; |
Bram Moolenaar | fe17e76 | 2013-06-29 14:17:02 +0200 | [diff] [blame] | 2767 | conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt, |
| 2768 | 1, XCompoundTextStyle, &text_prop); |
Bram Moolenaar | fe17e76 | 2013-06-29 14:17:02 +0200 | [diff] [blame] | 2769 | if (conv_result != Success) |
| 2770 | { |
| 2771 | vim_free(string); |
| 2772 | return False; |
| 2773 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2774 | *value = (XtPointer)(text_prop.value); /* from plain text */ |
| 2775 | *length = text_prop.nitems; |
| 2776 | *type = compound_text_atom; |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2777 | XtFree((char *)save_result); |
| 2778 | save_result = (char_u *)*value; |
| 2779 | save_length = *length; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2780 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2781 | else if (*target == vimenc_atom) |
| 2782 | { |
| 2783 | int l = STRLEN(p_enc); |
| 2784 | |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2785 | save_result[0] = motion_type; |
| 2786 | STRCPY(save_result + 1, p_enc); |
| 2787 | mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2788 | *type = vimenc_atom; |
| 2789 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2790 | else |
| 2791 | { |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2792 | save_result[0] = motion_type; |
| 2793 | mch_memmove(save_result + 1, string, (size_t)(*length - 1)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2794 | *type = vim_atom; |
| 2795 | } |
| 2796 | *format = 8; /* 8 bits per char */ |
| 2797 | vim_free(string); |
| 2798 | return True; |
| 2799 | } |
| 2800 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2801 | static void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2802 | clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2803 | { |
| 2804 | if (*sel_atom == clip_plus.sel_atom) |
| 2805 | clip_lose_selection(&clip_plus); |
| 2806 | else |
| 2807 | clip_lose_selection(&clip_star); |
| 2808 | } |
| 2809 | |
| 2810 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2811 | clip_x11_lose_selection(Widget myShell, Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2812 | { |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 2813 | XtDisownSelection(myShell, cbd->sel_atom, |
| 2814 | XtLastTimestampProcessed(XtDisplay(myShell))); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2815 | } |
| 2816 | |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2817 | static void |
| 2818 | clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED) |
| 2819 | { |
| 2820 | /* To prevent automatically freeing the selection value. */ |
| 2821 | } |
| 2822 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2823 | int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2824 | clip_x11_own_selection(Widget myShell, Clipboard_T *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2825 | { |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 2826 | /* When using the GUI we have proper timestamps, use the one of the last |
| 2827 | * event. When in the console we don't get events (the terminal gets |
| 2828 | * them), Get the time by a zero-length append, clip_x11_timestamp_cb will |
| 2829 | * be called with the current timestamp. */ |
| 2830 | #ifdef FEAT_GUI |
| 2831 | if (gui.in_use) |
| 2832 | { |
| 2833 | if (XtOwnSelection(myShell, cbd->sel_atom, |
| 2834 | XtLastTimestampProcessed(XtDisplay(myShell)), |
| 2835 | clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb, |
Bram Moolenaar | cdb7e1b | 2017-07-19 19:55:58 +0200 | [diff] [blame] | 2836 | clip_x11_notify_cb) == False) |
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 | } |
| 2839 | else |
| 2840 | #endif |
| 2841 | { |
| 2842 | if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell), |
| 2843 | cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0)) |
Bram Moolenaar | b8ff1fb | 2012-02-04 21:59:01 +0100 | [diff] [blame] | 2844 | return FAIL; |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 2845 | } |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 2846 | /* Flush is required in a terminal as nothing else is doing it. */ |
| 2847 | XFlush(XtDisplay(myShell)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2848 | return OK; |
| 2849 | } |
| 2850 | |
| 2851 | /* |
| 2852 | * Send the current selection to the clipboard. Do nothing for X because we |
| 2853 | * will fill in the selection only when requested by another app. |
| 2854 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2855 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2856 | clip_x11_set_selection(Clipboard_T *cbd UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2857 | { |
| 2858 | } |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 2859 | |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 2860 | #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) \ |
| 2861 | || defined(PROTO) |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 2862 | static int |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2863 | clip_x11_owner_exists(Clipboard_T *cbd) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 2864 | { |
| 2865 | return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None; |
| 2866 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2867 | #endif |
Bram Moolenaar | 113e107 | 2019-01-20 15:30:40 +0100 | [diff] [blame] | 2868 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2869 | |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2870 | #if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \ |
| 2871 | || defined(FEAT_GUI_GTK) || defined(PROTO) |
| 2872 | /* |
| 2873 | * Get the contents of the X CUT_BUFFER0 and put it in "cbd". |
| 2874 | */ |
| 2875 | void |
Bram Moolenaar | 0554fa4 | 2019-06-14 21:36:54 +0200 | [diff] [blame] | 2876 | yank_cut_buffer0(Display *dpy, Clipboard_T *cbd) |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2877 | { |
| 2878 | int nbytes = 0; |
| 2879 | char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0); |
| 2880 | |
| 2881 | if (nbytes > 0) |
| 2882 | { |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2883 | int done = FALSE; |
| 2884 | |
| 2885 | /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when |
| 2886 | * using a multi-byte encoding. Conversion between two 8-bit |
| 2887 | * character sets usually fails and the text might actually be in |
| 2888 | * 'enc' anyway. */ |
| 2889 | if (has_mbyte) |
| 2890 | { |
Bram Moolenaar | 2660c0e | 2010-01-19 14:59:56 +0100 | [diff] [blame] | 2891 | char_u *conv_buf; |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2892 | vimconv_T vc; |
| 2893 | |
| 2894 | vc.vc_type = CONV_NONE; |
| 2895 | if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK) |
| 2896 | { |
| 2897 | conv_buf = string_convert(&vc, buffer, &nbytes); |
| 2898 | if (conv_buf != NULL) |
| 2899 | { |
| 2900 | clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd); |
| 2901 | vim_free(conv_buf); |
| 2902 | done = TRUE; |
| 2903 | } |
| 2904 | convert_setup(&vc, NULL, NULL); |
| 2905 | } |
| 2906 | } |
| 2907 | if (!done) /* use the text without conversion */ |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2908 | clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd); |
| 2909 | XFree((void *)buffer); |
| 2910 | if (p_verbose > 0) |
| 2911 | { |
| 2912 | verbose_enter(); |
Bram Moolenaar | 32526b3 | 2019-01-19 17:43:09 +0100 | [diff] [blame] | 2913 | verb_msg(_("Used CUT_BUFFER0 instead of empty selection")); |
Bram Moolenaar | bbc936b | 2009-07-01 16:04:58 +0000 | [diff] [blame] | 2914 | verbose_leave(); |
| 2915 | } |
| 2916 | } |
| 2917 | } |
| 2918 | #endif |
| 2919 | |
Bram Moolenaar | 4f97475 | 2019-02-17 17:44:42 +0100 | [diff] [blame] | 2920 | #if defined(FEAT_GUI) || defined(MSWIN) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2921 | /* |
| 2922 | * Called when focus changed. Used for the GUI or for systems where this can |
| 2923 | * be done in the console (Win32). |
| 2924 | */ |
| 2925 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2926 | ui_focus_change( |
| 2927 | int in_focus) /* TRUE if focus gained. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2928 | { |
| 2929 | static time_t last_time = (time_t)0; |
| 2930 | int need_redraw = FALSE; |
| 2931 | |
| 2932 | /* When activated: Check if any file was modified outside of Vim. |
| 2933 | * Only do this when not done within the last two seconds (could get |
| 2934 | * several events in a row). */ |
| 2935 | if (in_focus && last_time + 2 < time(NULL)) |
| 2936 | { |
| 2937 | need_redraw = check_timestamps( |
| 2938 | # ifdef FEAT_GUI |
| 2939 | gui.in_use |
| 2940 | # else |
| 2941 | FALSE |
| 2942 | # endif |
| 2943 | ); |
| 2944 | last_time = time(NULL); |
| 2945 | } |
| 2946 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2947 | /* |
| 2948 | * Fire the focus gained/lost autocommand. |
| 2949 | */ |
| 2950 | need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED |
| 2951 | : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2952 | |
| 2953 | if (need_redraw) |
| 2954 | { |
| 2955 | /* Something was executed, make sure the cursor is put back where it |
| 2956 | * belongs. */ |
| 2957 | need_wait_return = FALSE; |
| 2958 | |
| 2959 | if (State & CMDLINE) |
| 2960 | redrawcmdline(); |
| 2961 | else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE |
| 2962 | || State == EXTERNCMD || State == CONFIRM || exmode_active) |
| 2963 | repeat_message(); |
| 2964 | else if ((State & NORMAL) || (State & INSERT)) |
| 2965 | { |
| 2966 | if (must_redraw != 0) |
| 2967 | update_screen(0); |
| 2968 | setcursor(); |
| 2969 | } |
| 2970 | cursor_on(); /* redrawing may have switched it off */ |
Bram Moolenaar | a338adc | 2018-01-31 20:51:47 +0100 | [diff] [blame] | 2971 | out_flush_cursor(FALSE, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2972 | # ifdef FEAT_GUI |
| 2973 | if (gui.in_use) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2974 | gui_update_scrollbars(FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2975 | # endif |
| 2976 | } |
| 2977 | #ifdef FEAT_TITLE |
| 2978 | /* File may have been changed from 'readonly' to 'noreadonly' */ |
| 2979 | if (need_maketitle) |
| 2980 | maketitle(); |
| 2981 | #endif |
| 2982 | } |
| 2983 | #endif |
| 2984 | |
Bram Moolenaar | f2bd8ef | 2018-03-04 18:08:14 +0100 | [diff] [blame] | 2985 | #if defined(HAVE_INPUT_METHOD) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2986 | /* |
| 2987 | * Save current Input Method status to specified place. |
| 2988 | */ |
| 2989 | void |
Bram Moolenaar | 764b23c | 2016-01-30 21:10:09 +0100 | [diff] [blame] | 2990 | im_save_status(long *psave) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2991 | { |
| 2992 | /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always |
| 2993 | * disabled then (but might start later). |
| 2994 | * Also don't save when inside a mapping, vgetc_im_active has not been set |
| 2995 | * then. |
| 2996 | * And don't save when the keys were stuffed (e.g., for a "." command). |
| 2997 | * And don't save when the GUI is running but our window doesn't have |
| 2998 | * input focus (e.g., when a find dialog is open). */ |
| 2999 | if (!p_imdisable && KeyTyped && !KeyStuffed |
| 3000 | # ifdef FEAT_XIM |
| 3001 | && xic != NULL |
| 3002 | # endif |
| 3003 | # ifdef FEAT_GUI |
| 3004 | && (!gui.in_use || gui.in_focus) |
| 3005 | # endif |
| 3006 | ) |
| 3007 | { |
| 3008 | /* Do save when IM is on, or IM is off and saved status is on. */ |
| 3009 | if (vgetc_im_active) |
| 3010 | *psave = B_IMODE_IM; |
| 3011 | else if (*psave == B_IMODE_IM) |
| 3012 | *psave = B_IMODE_NONE; |
| 3013 | } |
| 3014 | } |
| 3015 | #endif |