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