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