Mercurial > vim
annotate src/ui.c @ 18412:6208e5c2eee7 v8.1.2200
patch 8.1.2200: crash when memory allocation fails
Commit: https://github.com/vim/vim/commit/1cac70953d3c012453ea85b1308a8b1f94359c26
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 22 21:54:31 2019 +0200
patch 8.1.2200: crash when memory allocation fails
Problem: Crash when memory allocation fails.
Solution: Check for NULL curwin and curbuf. (Christian Brabandt,
closes #4839)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 22 Oct 2019 22:00:05 +0200 |
parents | 59bc3cd42cf5 |
children | 9e6d5a4abb1c |
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) | |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
35 gui_wait_for_chars(p_wd, typebuf.tb_change_cnt); |
7 | 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 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15665
diff
changeset
|
43 #if !defined(MSWIN) |
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 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15665
diff
changeset
|
57 # if !defined(MSWIN) |
7 | 58 if (output_conv.vc_type != CONV_NONE) |
59 vim_free(tofree); | |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
60 # endif |
7 | 61 } |
62 #endif | |
63 } | |
64 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15665
diff
changeset
|
65 #if defined(UNIX) || defined(VMS) || defined(PROTO) || defined(MSWIN) |
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); | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
133 VIM_CLEAR(ta_str); |
7 | 134 return ta_len; |
135 } | |
136 mch_memmove(buf, ta_str + ta_off, (size_t)maxlen); | |
137 ta_off += maxlen; | |
138 return maxlen; | |
139 } | |
140 #endif | |
141 | |
170 | 142 #ifdef FEAT_PROFILE |
791 | 143 if (do_profiling == PROF_YES && wtime != 0) |
170 | 144 prof_inchar_enter(); |
145 #endif | |
146 | |
7 | 147 #ifdef NO_CONSOLE_INPUT |
148 /* Don't wait for character input when the window hasn't been opened yet. | |
149 * Do try reading, this works when redirecting stdin from a file. | |
150 * Must return something, otherwise we'll loop forever. If we run into | |
151 * this very often we probably got stuck, exit Vim. */ | |
152 if (no_console_input()) | |
153 { | |
154 static int count = 0; | |
155 | |
156 # ifndef NO_CONSOLE | |
15075
fd9c4b1a71aa
patch 8.1.0548: crash when job callback unloads a buffer
Bram Moolenaar <Bram@vim.org>
parents:
15052
diff
changeset
|
157 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt); |
228 | 158 if (retval > 0 || typebuf_changed(tb_change_cnt) || wtime >= 0) |
170 | 159 goto theend; |
7 | 160 # endif |
161 if (wtime == -1 && ++count == 1000) | |
162 read_error_exit(); | |
163 buf[0] = CAR; | |
170 | 164 retval = 1; |
165 goto theend; | |
7 | 166 } |
167 #endif | |
168 | |
1086 | 169 /* If we are going to wait for some time or block... */ |
170 if (wtime == -1 || wtime > 100L) | |
171 { | |
172 /* ... allow signals to kill us. */ | |
173 (void)vim_handle_signal(SIGNAL_UNBLOCK); | |
174 | |
175 /* ... there is no need for CTRL-C to interrupt something, don't let | |
176 * it set got_int when it was mapped. */ | |
6491 | 177 if ((mapped_ctrl_c | curbuf->b_mapped_ctrl_c) & get_real_state()) |
1086 | 178 ctrl_c_interrupts = FALSE; |
179 } | |
7 | 180 |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
181 /* |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
182 * Here we call gui_inchar() or mch_inchar(), the GUI or machine-dependent |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
183 * input function. The functionality they implement is like this: |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
184 * |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
185 * while (not timed out) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
186 * { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
187 * handle-resize; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
188 * parse-queued-messages; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
189 * if (waited for 'updatetime') |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
190 * trigger-cursorhold; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
191 * ui_wait_for_chars_or_timer() |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
192 * if (character available) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
193 * break; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
194 * } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
195 * |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
196 * ui_wait_for_chars_or_timer() does: |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
197 * |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
198 * while (not timed out) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
199 * { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
200 * if (any-timer-triggered) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
201 * invoke-timer-callback; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
202 * wait-for-character(); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
203 * if (character available) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
204 * break; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
205 * } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
206 * |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
207 * wait-for-character() does: |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
208 * while (not timed out) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
209 * { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
210 * Wait for event; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
211 * if (something on channel) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
212 * read/write channel; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
213 * else if (resized) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
214 * handle_resize(); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
215 * else if (system event) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
216 * deal-with-system-event; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
217 * else if (character available) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
218 * break; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
219 * } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
220 * |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
221 */ |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
222 |
7 | 223 #ifdef FEAT_GUI |
224 if (gui.in_use) | |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
225 retval = gui_inchar(buf, maxlen, wtime, tb_change_cnt); |
7 | 226 #endif |
227 #ifndef NO_CONSOLE | |
228 # ifdef FEAT_GUI | |
229 else | |
230 # endif | |
231 retval = mch_inchar(buf, maxlen, wtime, tb_change_cnt); | |
232 #endif | |
233 | |
1086 | 234 if (wtime == -1 || wtime > 100L) |
235 /* block SIGHUP et al. */ | |
236 (void)vim_handle_signal(SIGNAL_BLOCK); | |
237 | |
7 | 238 ctrl_c_interrupts = TRUE; |
239 | |
170 | 240 #ifdef NO_CONSOLE_INPUT |
241 theend: | |
242 #endif | |
243 #ifdef FEAT_PROFILE | |
791 | 244 if (do_profiling == PROF_YES && wtime != 0) |
170 | 245 prof_inchar_exit(); |
246 #endif | |
7 | 247 return retval; |
248 } | |
249 | |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
250 #if defined(UNIX) || defined(FEAT_GUI) || defined(PROTO) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
251 /* |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
252 * Common code for mch_inchar() and gui_inchar(): Wait for a while or |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
253 * indefinitely until characters are available, dealing with timers and |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
254 * messages on channels. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
255 * |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
256 * "buf" may be NULL if the available characters are not to be returned, only |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
257 * check if they are available. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
258 * |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
259 * Return the number of characters that are available. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
260 * If "wtime" == 0 do not wait for characters. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
261 * If "wtime" == n wait a short time for characters. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
262 * If "wtime" == -1 wait forever for characters. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
263 */ |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
264 int |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
265 inchar_loop( |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
266 char_u *buf, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
267 int maxlen, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
268 long wtime, // don't use "time", MIPS cannot handle it |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
269 int tb_change_cnt, |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
270 int (*wait_func)(long wtime, int *interrupted, int ignore_input), |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
271 int (*resize_func)(int check_only)) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
272 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
273 int len; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
274 int interrupted = FALSE; |
15665
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15655
diff
changeset
|
275 int did_call_wait_func = FALSE; |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
276 int did_start_blocking = FALSE; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
277 long wait_time; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
278 long elapsed_time = 0; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
279 #ifdef ELAPSED_FUNC |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
280 elapsed_T start_tv; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
281 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
282 ELAPSED_INIT(start_tv); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
283 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
284 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
285 /* repeat until we got a character or waited long enough */ |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
286 for (;;) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
287 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
288 /* Check if window changed size while we were busy, perhaps the ":set |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
289 * columns=99" command was used. */ |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
290 if (resize_func != NULL) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
291 resize_func(FALSE); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
292 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
293 #ifdef MESSAGE_QUEUE |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
294 // Only process messages when waiting. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
295 if (wtime != 0) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
296 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
297 parse_queued_messages(); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
298 // If input was put directly in typeahead buffer bail out here. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
299 if (typebuf_changed(tb_change_cnt)) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
300 return 0; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
301 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
302 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
303 if (wtime < 0 && did_start_blocking) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
304 // blocking and already waited for p_ut |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
305 wait_time = -1; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
306 else |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
307 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
308 if (wtime >= 0) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
309 wait_time = wtime; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
310 else |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
311 // going to block after p_ut |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
312 wait_time = p_ut; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
313 #ifdef ELAPSED_FUNC |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
314 elapsed_time = ELAPSED_FUNC(start_tv); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
315 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
316 wait_time -= elapsed_time; |
15665
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15655
diff
changeset
|
317 |
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15655
diff
changeset
|
318 // If the waiting time is now zero or less, we timed out. However, |
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15655
diff
changeset
|
319 // loop at least once to check for characters and events. Matters |
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15655
diff
changeset
|
320 // when "wtime" is zero. |
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15655
diff
changeset
|
321 if (wait_time <= 0 && did_call_wait_func) |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
322 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
323 if (wtime >= 0) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
324 // no character available within "wtime" |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
325 return 0; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
326 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
327 // No character available within 'updatetime'. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
328 did_start_blocking = TRUE; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
329 if (trigger_cursorhold() && maxlen >= 3 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
330 && !typebuf_changed(tb_change_cnt)) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
331 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
332 // Put K_CURSORHOLD in the input buffer or return it. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
333 if (buf == NULL) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
334 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
335 char_u ibuf[3]; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
336 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
337 ibuf[0] = CSI; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
338 ibuf[1] = KS_EXTRA; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
339 ibuf[2] = (int)KE_CURSORHOLD; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
340 add_to_input_buf(ibuf, 3); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
341 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
342 else |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
343 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
344 buf[0] = K_SPECIAL; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
345 buf[1] = KS_EXTRA; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
346 buf[2] = (int)KE_CURSORHOLD; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
347 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
348 return 3; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
349 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
350 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
351 // There is no character available within 'updatetime' seconds: |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
352 // flush all the swap files to disk. Also done when |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
353 // interrupted by SIGWINCH. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
354 before_blocking(); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
355 continue; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
356 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
357 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
358 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
359 #ifdef FEAT_JOB_CHANNEL |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
360 if (wait_time < 0 || wait_time > 100L) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
361 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
362 // Checking if a job ended requires polling. Do this at least |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
363 // every 100 msec. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
364 if (has_pending_job()) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
365 wait_time = 100L; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
366 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
367 // If there is readahead then parse_queued_messages() timed out and |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
368 // we should call it again soon. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
369 if (channel_any_readahead()) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
370 wait_time = 10L; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
371 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
372 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
373 #ifdef FEAT_BEVAL_GUI |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
374 if (p_beval && wait_time > 100L) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
375 // The 'balloonexpr' may indirectly invoke a callback while waiting |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
376 // for a character, need to check often. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
377 wait_time = 100L; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
378 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
379 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
380 // Wait for a character to be typed or another event, such as the winch |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
381 // signal or an event on the monitored file descriptors. |
15665
31367ce5aac7
patch 8.1.0840: getchar(0) never returns a character in the terminal
Bram Moolenaar <Bram@vim.org>
parents:
15655
diff
changeset
|
382 did_call_wait_func = TRUE; |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
383 if (wait_func(wait_time, &interrupted, FALSE)) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
384 { |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
385 // If input was put directly in typeahead buffer bail out here. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
386 if (typebuf_changed(tb_change_cnt)) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
387 return 0; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
388 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
389 // We might have something to return now. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
390 if (buf == NULL) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
391 // "buf" is NULL, we were just waiting, not actually getting |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
392 // input. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
393 return input_available(); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
394 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
395 len = read_from_input_buf(buf, (long)maxlen); |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
396 if (len > 0) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
397 return len; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
398 continue; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
399 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
400 // Timed out or interrupted with no character available. |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
401 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
402 #ifndef ELAPSED_FUNC |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
403 // estimate the elapsed time |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
404 elapsed_time += wait_time; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
405 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
406 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
407 if ((resize_func != NULL && resize_func(TRUE)) |
15655
2202ab00e9f9
patch 8.1.0835: GUI build fails on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
15653
diff
changeset
|
408 #if defined(FEAT_CLIENTSERVER) && defined(UNIX) |
15653
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
409 || server_waiting() |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
410 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
411 #ifdef MESSAGE_QUEUE |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
412 || interrupted |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
413 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
414 || wait_time > 0 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
415 || (wtime < 0 && !did_start_blocking)) |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
416 // no character available, but something to be done, keep going |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
417 continue; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
418 |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
419 // no character available or interrupted, return zero |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
420 break; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
421 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
422 return 0; |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
423 } |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
424 #endif |
59a1ff689b4d
patch 8.1.0834: GUI may wait too long before dealing with messages
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
425 |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
426 #if defined(FEAT_TIMERS) || defined(PROTO) |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
427 /* |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
428 * Wait for a timer to fire or "wait_func" to return non-zero. |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
429 * Returns OK when something was read. |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
430 * Returns FAIL when it timed out or was interrupted. |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
431 */ |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
432 int |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
433 ui_wait_for_chars_or_timer( |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
434 long wtime, |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
435 int (*wait_func)(long wtime, int *interrupted, int ignore_input), |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
436 int *interrupted, |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
437 int ignore_input) |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
438 { |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
439 int due_time; |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
440 long remaining = wtime; |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
441 int tb_change_cnt = typebuf.tb_change_cnt; |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
442 # ifdef FEAT_JOB_CHANNEL |
15506
8b508af36a80
patch 8.1.0761: default value for brief_wait is wrong
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
443 int brief_wait = FALSE; |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
444 # endif |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
445 |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
446 // When waiting very briefly don't trigger timers. |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
447 if (wtime >= 0 && wtime < 10L) |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
448 return wait_func(wtime, NULL, ignore_input); |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
449 |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
450 while (wtime < 0 || remaining > 0) |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
451 { |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
452 // Trigger timers and then get the time in wtime until the next one is |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
453 // due. Wait up to that time. |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
454 due_time = check_due_timer(); |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
455 if (typebuf.tb_change_cnt != tb_change_cnt) |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
456 { |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
457 /* timer may have used feedkeys() */ |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
458 return FAIL; |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
459 } |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
460 if (due_time <= 0 || (wtime > 0 && due_time > remaining)) |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
461 due_time = remaining; |
17708
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
462 # if defined(FEAT_JOB_CHANNEL) || defined(FEAT_SOUND_CANBERRA) |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
463 if ((due_time < 0 || due_time > 10L) && ( |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
464 # if defined(FEAT_JOB_CHANNEL) |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
465 ( |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
466 # if defined(FEAT_GUI) |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
467 !gui.in_use && |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
468 # endif |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
469 (has_pending_job() || channel_any_readahead())) |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
470 # ifdef FEAT_SOUND_CANBERRA |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
471 || |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
472 # endif |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
473 # endif |
17708
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
474 # ifdef FEAT_SOUND_CANBERRA |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
475 has_any_sound_callback() |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
476 # endif |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17580
diff
changeset
|
477 )) |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
478 { |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
479 // There is a pending job or channel, should return soon in order |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
480 // to handle them ASAP. Do check for input briefly. |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
481 due_time = 10L; |
18021
e273e489acdf
patch 8.1.2006: build failure with huge features but without channel feature
Bram Moolenaar <Bram@vim.org>
parents:
17950
diff
changeset
|
482 # ifdef FEAT_JOB_CHANNEL |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
483 brief_wait = TRUE; |
18021
e273e489acdf
patch 8.1.2006: build failure with huge features but without channel feature
Bram Moolenaar <Bram@vim.org>
parents:
17950
diff
changeset
|
484 # endif |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
485 } |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
486 # endif |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
487 if (wait_func(due_time, interrupted, ignore_input)) |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
488 return OK; |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
489 if ((interrupted != NULL && *interrupted) |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
490 # ifdef FEAT_JOB_CHANNEL |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
491 || brief_wait |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
492 # endif |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
493 ) |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
494 // Nothing available, but need to return so that side effects get |
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
495 // handled, such as handling a message on a channel. |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
496 return FAIL; |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
497 if (wtime > 0) |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
498 remaining -= due_time; |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
499 } |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
500 return FAIL; |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
501 } |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
502 #endif |
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
503 |
7 | 504 /* |
15404
440e5071f3f8
patch 8.1.0710: when using timers may wait for job exit quite long
Bram Moolenaar <Bram@vim.org>
parents:
15075
diff
changeset
|
505 * Return non-zero if a character is available. |
7 | 506 */ |
507 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
508 ui_char_avail(void) |
7 | 509 { |
510 #ifdef FEAT_GUI | |
511 if (gui.in_use) | |
512 { | |
513 gui_mch_update(); | |
514 return input_available(); | |
515 } | |
516 #endif | |
517 #ifndef NO_CONSOLE | |
518 # ifdef NO_CONSOLE_INPUT | |
519 if (no_console_input()) | |
520 return 0; | |
521 # endif | |
522 return mch_char_avail(); | |
523 #else | |
524 return 0; | |
525 #endif | |
526 } | |
527 | |
528 /* | |
529 * Delay for the given number of milliseconds. If ignoreinput is FALSE then we | |
530 * cancel the delay if a key is hit. | |
531 */ | |
532 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
533 ui_delay(long msec, int ignoreinput) |
7 | 534 { |
535 #ifdef FEAT_GUI | |
536 if (gui.in_use && !ignoreinput) | |
13060
1bdc12630fc0
patch 8.0.1405: duplicated code for getting a typed character
Christian Brabandt <cb@256bit.org>
parents:
12924
diff
changeset
|
537 gui_wait_for_chars(msec, typebuf.tb_change_cnt); |
7 | 538 else |
539 #endif | |
540 mch_delay(msec, ignoreinput); | |
541 } | |
542 | |
543 /* | |
544 * If the machine has job control, use it to suspend the program, | |
545 * otherwise fake it by starting a new shell. | |
546 * When running the GUI iconify the window. | |
547 */ | |
548 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
549 ui_suspend(void) |
7 | 550 { |
551 #ifdef FEAT_GUI | |
552 if (gui.in_use) | |
553 { | |
554 gui_mch_iconify(); | |
555 return; | |
556 } | |
557 #endif | |
558 mch_suspend(); | |
559 } | |
560 | |
561 #if !defined(UNIX) || !defined(SIGTSTP) || defined(PROTO) || defined(__BEOS__) | |
562 /* | |
563 * When the OS can't really suspend, call this function to start a shell. | |
564 * This is never called in the GUI. | |
565 */ | |
566 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
567 suspend_shell(void) |
7 | 568 { |
569 if (*p_sh == NUL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15404
diff
changeset
|
570 emsg(_(e_shellempty)); |
7 | 571 else |
572 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
573 msg_puts(_("new shell started\n")); |
7 | 574 do_shell(NULL, 0); |
575 } | |
576 } | |
577 #endif | |
578 | |
579 /* | |
580 * Try to get the current Vim shell size. Put the result in Rows and Columns. | |
581 * Use the new sizes as defaults for 'columns' and 'lines'. | |
582 * Return OK when size could be determined, FAIL otherwise. | |
583 */ | |
584 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
585 ui_get_shellsize(void) |
7 | 586 { |
587 int retval; | |
588 | |
589 #ifdef FEAT_GUI | |
590 if (gui.in_use) | |
591 retval = gui_get_shellsize(); | |
592 else | |
593 #endif | |
594 retval = mch_get_shellsize(); | |
595 | |
596 check_shellsize(); | |
597 | |
598 /* adjust the default for 'lines' and 'columns' */ | |
599 if (retval == OK) | |
600 { | |
601 set_number_default("lines", Rows); | |
602 set_number_default("columns", Columns); | |
603 } | |
604 return retval; | |
605 } | |
606 | |
607 /* | |
608 * Set the size of the Vim shell according to Rows and Columns, if possible. | |
609 * The gui_set_shellsize() or mch_set_shellsize() function will try to set the | |
610 * new size. If this is not possible, it will adjust Rows and Columns. | |
611 */ | |
612 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
613 ui_set_shellsize( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
614 int mustset UNUSED) /* set by the user */ |
7 | 615 { |
616 #ifdef FEAT_GUI | |
617 if (gui.in_use) | |
5106
c3a82208e143
updated for version 7.3.1296
Bram Moolenaar <bram@vim.org>
parents:
5037
diff
changeset
|
618 gui_set_shellsize(mustset, TRUE, RESIZE_BOTH); |
7 | 619 else |
620 #endif | |
621 mch_set_shellsize(); | |
622 } | |
623 | |
624 /* | |
625 * Called when Rows and/or Columns changed. Adjust scroll region and mouse | |
626 * region. | |
627 */ | |
628 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
629 ui_new_shellsize(void) |
7 | 630 { |
631 if (full_screen && !exiting) | |
632 { | |
633 #ifdef FEAT_GUI | |
634 if (gui.in_use) | |
635 gui_new_shellsize(); | |
636 else | |
637 #endif | |
638 mch_new_shellsize(); | |
639 } | |
640 } | |
641 | |
16245
e0a6298bd70f
patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16243
diff
changeset
|
642 #if ((defined(FEAT_EVAL) || defined(FEAT_TERMINAL)) \ |
16243
3b79a3029947
patch 8.1.1126: build failure with +terminal but without tgetent
Bram Moolenaar <Bram@vim.org>
parents:
16241
diff
changeset
|
643 && (defined(FEAT_GUI) \ |
16253
f28ef3d27f91
patch 8.1.1131: getwinpos() does not work in the MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16245
diff
changeset
|
644 || defined(MSWIN) \ |
16243
3b79a3029947
patch 8.1.1126: build failure with +terminal but without tgetent
Bram Moolenaar <Bram@vim.org>
parents:
16241
diff
changeset
|
645 || (defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE)))) \ |
16241
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
646 || defined(PROTO) |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
647 /* |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
648 * Get the window position in pixels, if possible. |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
649 * Return FAIL when not possible. |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
650 */ |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
651 int |
18139
59bc3cd42cf5
patch 8.1.2064: MS-Windows: compiler warnings for unused arguments
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
652 ui_get_winpos(int *x, int *y, varnumber_T timeout UNUSED) |
16241
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
653 { |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
654 # ifdef FEAT_GUI |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
655 if (gui.in_use) |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
656 return gui_mch_get_winpos(x, y); |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
657 # endif |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16253
diff
changeset
|
658 # if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL)) |
16253
f28ef3d27f91
patch 8.1.1131: getwinpos() does not work in the MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16245
diff
changeset
|
659 return mch_get_winpos(x, y); |
f28ef3d27f91
patch 8.1.1131: getwinpos() does not work in the MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16245
diff
changeset
|
660 # else |
f28ef3d27f91
patch 8.1.1131: getwinpos() does not work in the MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16245
diff
changeset
|
661 # if defined(HAVE_TGETENT) && defined(FEAT_TERMRESPONSE) |
16241
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
662 return term_get_winpos(x, y, timeout); |
16253
f28ef3d27f91
patch 8.1.1131: getwinpos() does not work in the MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16245
diff
changeset
|
663 # else |
16245
e0a6298bd70f
patch 8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16243
diff
changeset
|
664 return FAIL; |
16253
f28ef3d27f91
patch 8.1.1131: getwinpos() does not work in the MS-Windows console
Bram Moolenaar <Bram@vim.org>
parents:
16245
diff
changeset
|
665 # endif |
16241
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
666 # endif |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
667 } |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
668 #endif |
c1698187c482
patch 8.1.1125: libvterm does not handle the window position report
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
669 |
7 | 670 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
671 ui_breakcheck(void) |
7 | 672 { |
10240
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
673 ui_breakcheck_force(FALSE); |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
674 } |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
675 |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
676 /* |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
677 * 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
|
678 * 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
|
679 */ |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
680 void |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
681 ui_breakcheck_force(int force) |
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
682 { |
15052
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
683 static int recursive = FALSE; |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
684 int save_updating_screen = updating_screen; |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
685 |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
686 // We could be called recursively if stderr is redirected, calling |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
687 // fill_input_buf() calls settmode() when stdin isn't a tty. settmode() |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
688 // calls vgetorpeek() which calls ui_breakcheck() again. |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
689 if (recursive) |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
690 return; |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
691 recursive = TRUE; |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
692 |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
693 // We do not want gui_resize_shell() to redraw the screen here. |
10771
abc27e523e2a
patch 8.0.0275: the screen may be updated at the wrong time
Christian Brabandt <cb@256bit.org>
parents:
10240
diff
changeset
|
694 ++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
|
695 |
7 | 696 #ifdef FEAT_GUI |
697 if (gui.in_use) | |
698 gui_mch_update(); | |
699 else | |
700 #endif | |
10240
175b1116f96a
commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
701 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
|
702 |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
13888
diff
changeset
|
703 if (save_updating_screen) |
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
13888
diff
changeset
|
704 updating_screen = TRUE; |
13888
81e8e6181aeb
patch 8.0.1815: crash with terminal window and with 'lazyredraw' set
Christian Brabandt <cb@256bit.org>
parents:
13876
diff
changeset
|
705 else |
16835
7cade95272c4
patch 8.1.1419: listener callbacks may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
706 after_updating_screen(FALSE); |
15052
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
707 |
35c2d164a630
patch 8.1.0537: ui_breakcheck() may be called recursively
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
708 recursive = FALSE; |
7 | 709 } |
710 | |
711 /***************************************************************************** | |
712 * Functions for copying and pasting text between applications. | |
713 * This is always included in a GUI version, but may also be included when the | |
714 * clipboard and mouse is available to a terminal version such as xterm. | |
715 * Note: there are some more functions in ops.c that handle selection stuff. | |
716 * | |
717 * Also note that the majority of functions here deal with the X 'primary' | |
718 * (visible - for Visual mode use) selection, and only that. There are no | |
719 * versions of these for the 'clipboard' selection, as Visual mode has no use | |
720 * for them. | |
721 */ | |
722 | |
723 #if defined(FEAT_CLIPBOARD) || defined(PROTO) | |
724 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17754
diff
changeset
|
725 static void clip_gen_lose_selection(Clipboard_T *cbd); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17754
diff
changeset
|
726 static int clip_gen_own_selection(Clipboard_T *cbd); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17754
diff
changeset
|
727 #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM) |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17754
diff
changeset
|
728 static int clip_x11_owner_exists(Clipboard_T *cbd); |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17754
diff
changeset
|
729 #endif |
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17754
diff
changeset
|
730 |
7 | 731 /* |
732 * Selection stuff using Visual mode, for cutting and pasting text to other | |
733 * windows. | |
734 */ | |
735 | |
736 /* | |
737 * Call this to initialise the clipboard. Pass it FALSE if the clipboard code | |
738 * is included, but the clipboard can not be used, or TRUE if the clipboard can | |
739 * be used. Eg unix may call this with FALSE, then call it again with TRUE if | |
740 * the GUI starts. | |
741 */ | |
742 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
743 clip_init(int can_use) |
7 | 744 { |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
745 Clipboard_T *cb; |
7 | 746 |
747 cb = &clip_star; | |
748 for (;;) | |
749 { | |
750 cb->available = can_use; | |
751 cb->owned = FALSE; | |
752 cb->start.lnum = 0; | |
753 cb->start.col = 0; | |
754 cb->end.lnum = 0; | |
755 cb->end.col = 0; | |
756 cb->state = SELECT_CLEARED; | |
757 | |
758 if (cb == &clip_plus) | |
759 break; | |
760 cb = &clip_plus; | |
761 } | |
762 } | |
763 | |
764 /* | |
765 * Check whether the VIsual area has changed, and if so try to become the owner | |
766 * of the selection, and free any old converted selection we may still have | |
767 * lying around. If the VIsual mode has ended, make a copy of what was | |
768 * selected so we can still give it to others. Will probably have to make sure | |
769 * this is called whenever VIsual mode is ended. | |
770 */ | |
771 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
772 clip_update_selection(Clipboard_T *clip) |
7 | 773 { |
3674 | 774 pos_T start, end; |
7 | 775 |
776 /* If visual mode is only due to a redo command ("."), then ignore it */ | |
777 if (!redo_VIsual_busy && VIsual_active && (State & NORMAL)) | |
778 { | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10771
diff
changeset
|
779 if (LT_POS(VIsual, curwin->w_cursor)) |
7 | 780 { |
781 start = VIsual; | |
782 end = curwin->w_cursor; | |
783 if (has_mbyte) | |
474 | 784 end.col += (*mb_ptr2len)(ml_get_cursor()) - 1; |
7 | 785 } |
786 else | |
787 { | |
788 start = curwin->w_cursor; | |
789 end = VIsual; | |
790 } | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10771
diff
changeset
|
791 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
|
792 || !EQUAL_POS(clip->end, end) |
3674 | 793 || clip->vmode != VIsual_mode) |
7 | 794 { |
3674 | 795 clip_clear_selection(clip); |
796 clip->start = start; | |
797 clip->end = end; | |
798 clip->vmode = VIsual_mode; | |
799 clip_free_selection(clip); | |
800 clip_own_selection(clip); | |
801 clip_gen_set_selection(clip); | |
7 | 802 } |
803 } | |
804 } | |
805 | |
806 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
807 clip_own_selection(Clipboard_T *cbd) |
7 | 808 { |
809 /* | |
810 * Also want to check somehow that we are reading from the keyboard rather | |
811 * than a mapping etc. | |
812 */ | |
2270
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
813 #ifdef FEAT_X11 |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
814 /* Always own the selection, we might have lost it without being |
2586 | 815 * 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
|
816 if (cbd->available) |
7 | 817 { |
2270
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
818 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
|
819 |
7 | 820 cbd->owned = (clip_gen_own_selection(cbd) == OK); |
3674 | 821 if (!was_owned && (cbd == &clip_star || cbd == &clip_plus)) |
7 | 822 { |
620 | 823 /* May have to show a different kind of highlighting for the |
824 * selected area. There is no specific redraw command for this, | |
825 * just redraw all windows on the current buffer. */ | |
7 | 826 if (cbd->owned |
791 | 827 && (get_real_state() == VISUAL |
828 || get_real_state() == SELECTMODE) | |
3674 | 829 && (cbd == &clip_star ? clip_isautosel_star() |
830 : clip_isautosel_plus()) | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
831 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC)) |
7 | 832 redraw_curbuf_later(INVERTED_ALL); |
833 } | |
2270
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
834 } |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
835 #else |
3877 | 836 /* 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
|
837 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
|
838 cbd->owned = (clip_gen_own_selection(cbd) == OK); |
7 | 839 #endif |
840 } | |
841 | |
842 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
843 clip_lose_selection(Clipboard_T *cbd) |
7 | 844 { |
845 #ifdef FEAT_X11 | |
846 int was_owned = cbd->owned; | |
847 #endif | |
3674 | 848 int visual_selection = FALSE; |
849 | |
850 if (cbd == &clip_star || cbd == &clip_plus) | |
851 visual_selection = TRUE; | |
7 | 852 |
853 clip_free_selection(cbd); | |
854 cbd->owned = FALSE; | |
855 if (visual_selection) | |
3674 | 856 clip_clear_selection(cbd); |
7 | 857 clip_gen_lose_selection(cbd); |
858 #ifdef FEAT_X11 | |
859 if (visual_selection) | |
860 { | |
861 /* May have to show a different kind of highlighting for the selected | |
862 * area. There is no specific redraw command for this, just redraw all | |
863 * windows on the current buffer. */ | |
864 if (was_owned | |
791 | 865 && (get_real_state() == VISUAL |
866 || get_real_state() == SELECTMODE) | |
3674 | 867 && (cbd == &clip_star ? |
868 clip_isautosel_star() : clip_isautosel_plus()) | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
869 && HL_ATTR(HLF_V) != HL_ATTR(HLF_VNC)) |
7 | 870 { |
871 update_curbuf(INVERTED_ALL); | |
872 setcursor(); | |
873 cursor_on(); | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
874 out_flush_cursor(TRUE, FALSE); |
7 | 875 } |
876 } | |
877 #endif | |
878 } | |
879 | |
3674 | 880 static void |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
881 clip_copy_selection(Clipboard_T *clip) |
7 | 882 { |
3674 | 883 if (VIsual_active && (State & NORMAL) && clip->available) |
7 | 884 { |
3674 | 885 clip_update_selection(clip); |
886 clip_free_selection(clip); | |
887 clip_own_selection(clip); | |
888 if (clip->owned) | |
889 clip_get_selection(clip); | |
890 clip_gen_set_selection(clip); | |
7 | 891 } |
892 } | |
893 | |
894 /* | |
6116 | 895 * Save and restore clip_unnamed before doing possibly many changes. This |
896 * prevents accessing the clipboard very often which might slow down Vim | |
897 * considerably. | |
898 */ | |
6561 | 899 static int global_change_count = 0; /* if set, inside a start_global_changes */ |
11273
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
900 static int clipboard_needs_update = FALSE; /* clipboard needs to be updated */ |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
901 static int clip_did_set_selection = TRUE; |
6116 | 902 |
903 /* | |
904 * Save clip_unnamed and reset it. | |
905 */ | |
906 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
907 start_global_changes(void) |
6116 | 908 { |
6543 | 909 if (++global_change_count > 1) |
910 return; | |
6116 | 911 clip_unnamed_saved = clip_unnamed; |
6543 | 912 clipboard_needs_update = FALSE; |
6116 | 913 |
6543 | 914 if (clip_did_set_selection) |
6116 | 915 { |
916 clip_unnamed = FALSE; | |
917 clip_did_set_selection = FALSE; | |
918 } | |
919 } | |
920 | |
921 /* | |
11273
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
922 * Return TRUE if setting the clipboard was postponed, it already contains the |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
923 * right text. |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
924 */ |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
925 int |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
926 is_clipboard_needs_update() |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
927 { |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
928 return clipboard_needs_update; |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
929 } |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
930 |
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
931 /* |
6116 | 932 * Restore clip_unnamed and set the selection when needed. |
933 */ | |
934 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
935 end_global_changes(void) |
6116 | 936 { |
6543 | 937 if (--global_change_count > 0) |
938 /* recursive */ | |
939 return; | |
940 if (!clip_did_set_selection) | |
6116 | 941 { |
942 clip_did_set_selection = TRUE; | |
943 clip_unnamed = clip_unnamed_saved; | |
6543 | 944 clip_unnamed_saved = FALSE; |
945 if (clipboard_needs_update) | |
6116 | 946 { |
6543 | 947 /* only store something in the clipboard, |
948 * if we have yanked anything to it */ | |
949 if (clip_unnamed & CLIP_UNNAMED) | |
950 { | |
951 clip_own_selection(&clip_star); | |
952 clip_gen_set_selection(&clip_star); | |
953 } | |
954 if (clip_unnamed & CLIP_UNNAMED_PLUS) | |
955 { | |
956 clip_own_selection(&clip_plus); | |
957 clip_gen_set_selection(&clip_plus); | |
958 } | |
6116 | 959 } |
960 } | |
11273
96d83cd2904a
patch 8.0.0522: Win32: when 'clipboard' is "unnamed" yyp does not work
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
961 clipboard_needs_update = FALSE; |
6116 | 962 } |
963 | |
964 /* | |
7 | 965 * Called when Visual mode is ended: update the selection. |
966 */ | |
967 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
968 clip_auto_select(void) |
7 | 969 { |
3674 | 970 if (clip_isautosel_star()) |
971 clip_copy_selection(&clip_star); | |
972 if (clip_isautosel_plus()) | |
973 clip_copy_selection(&clip_plus); | |
7 | 974 } |
975 | |
976 /* | |
3674 | 977 * Return TRUE if automatic selection of Visual area is desired for the * |
978 * register. | |
7 | 979 */ |
980 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
981 clip_isautosel_star(void) |
7 | 982 { |
983 return ( | |
984 #ifdef FEAT_GUI | |
985 gui.in_use ? (vim_strchr(p_go, GO_ASEL) != NULL) : | |
986 #endif | |
3674 | 987 clip_autoselect_star); |
988 } | |
989 | |
990 /* | |
991 * Return TRUE if automatic selection of Visual area is desired for the + | |
992 * register. | |
993 */ | |
994 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
995 clip_isautosel_plus(void) |
3674 | 996 { |
997 return ( | |
998 #ifdef FEAT_GUI | |
999 gui.in_use ? (vim_strchr(p_go, GO_ASELPLUS) != NULL) : | |
1000 #endif | |
1001 clip_autoselect_plus); | |
7 | 1002 } |
1003 | |
1004 | |
1005 /* | |
1006 * Stuff for general mouse selection, without using Visual mode. | |
1007 */ | |
1008 | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1009 static void clip_invert_area(Clipboard_T *, int, int, int, int, int how); |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1010 static void clip_invert_rectangle(Clipboard_T *, int row, int col, int height, int width, int invert); |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1011 static void clip_get_word_boundaries(Clipboard_T *, int, int); |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1012 static int clip_get_line_end(Clipboard_T *, int); |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1013 static void clip_update_modeless_selection(Clipboard_T *, int, int, int, int); |
7 | 1014 |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1015 // "how" flags for clip_invert_area() |
7 | 1016 #define CLIP_CLEAR 1 |
1017 #define CLIP_SET 2 | |
1018 #define CLIP_TOGGLE 3 | |
1019 | |
1020 /* | |
1021 * Start, continue or end a modeless selection. Used when editing the | |
17051
221d4b82bc0b
patch 8.1.1525: cannot move a popup window with the mouse
Bram Moolenaar <Bram@vim.org>
parents:
17041
diff
changeset
|
1022 * command-line, in the cmdline window and when the mouse is in a popup window. |
7 | 1023 */ |
1024 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1025 clip_modeless(int button, int is_click, int is_drag) |
7 | 1026 { |
1027 int repeat; | |
1028 | |
1029 repeat = ((clip_star.mode == SELECT_MODE_CHAR | |
1030 || clip_star.mode == SELECT_MODE_LINE) | |
1031 && (mod_mask & MOD_MASK_2CLICK)) | |
1032 || (clip_star.mode == SELECT_MODE_WORD | |
1033 && (mod_mask & MOD_MASK_3CLICK)); | |
1034 if (is_click && button == MOUSE_RIGHT) | |
1035 { | |
1036 /* Right mouse button: If there was no selection, start one. | |
1037 * Otherwise extend the existing selection. */ | |
1038 if (clip_star.state == SELECT_CLEARED) | |
1039 clip_start_selection(mouse_col, mouse_row, FALSE); | |
1040 clip_process_selection(button, mouse_col, mouse_row, repeat); | |
1041 } | |
1042 else if (is_click) | |
1043 clip_start_selection(mouse_col, mouse_row, repeat); | |
1044 else if (is_drag) | |
1045 { | |
1046 /* Don't try extending a selection if there isn't one. Happens when | |
1047 * button-down is in the cmdline and them moving mouse upwards. */ | |
1048 if (clip_star.state != SELECT_CLEARED) | |
1049 clip_process_selection(button, mouse_col, mouse_row, repeat); | |
1050 } | |
1051 else /* release */ | |
1052 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE); | |
1053 } | |
1054 | |
1055 /* | |
1056 * Compare two screen positions ala strcmp() | |
1057 */ | |
1058 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1059 clip_compare_pos( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1060 int row1, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1061 int col1, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1062 int row2, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1063 int col2) |
7 | 1064 { |
1065 if (row1 > row2) return(1); | |
1066 if (row1 < row2) return(-1); | |
1067 if (col1 > col2) return(1); | |
1068 if (col1 < col2) return(-1); | |
8236
6d221d623c8e
commit https://github.com/vim/vim/commit/9e34110816522b081feb65ed5b2f4ec03d290e30
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
1069 return(0); |
7 | 1070 } |
1071 | |
1072 /* | |
1073 * Start the selection | |
1074 */ | |
1075 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1076 clip_start_selection(int col, int row, int repeated_click) |
7 | 1077 { |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1078 Clipboard_T *cb = &clip_star; |
17578
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1079 #ifdef FEAT_TEXT_PROP |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1080 win_T *wp; |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1081 int row_cp = row; |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1082 int col_cp = col; |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1083 |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1084 wp = mouse_find_win(&row_cp, &col_cp, FIND_POPUP); |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1085 if (wp != NULL && WIN_IS_POPUP(wp) |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1086 && popup_is_in_scrollbar(wp, row_cp, col_cp)) |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1087 // click or double click in scrollbar does not start a selection |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1088 return; |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1089 #endif |
7 | 1090 |
1091 if (cb->state == SELECT_DONE) | |
3674 | 1092 clip_clear_selection(cb); |
7 | 1093 |
1094 row = check_row(row); | |
1095 col = check_col(col); | |
1096 col = mb_fix_col(col, row); | |
1097 | |
1098 cb->start.lnum = row; | |
1099 cb->start.col = col; | |
1100 cb->end = cb->start; | |
1101 cb->origin_row = (short_u)cb->start.lnum; | |
1102 cb->state = SELECT_IN_PROGRESS; | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1103 #ifdef FEAT_TEXT_PROP |
17578
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1104 if (wp != NULL && WIN_IS_POPUP(wp)) |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1105 { |
17578
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1106 // Click in a popup window restricts selection to that window, |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1107 // excluding the border. |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1108 cb->min_col = wp->w_wincol + wp->w_popup_border[3]; |
17754
65b89c9eb946
patch 8.1.1874: modeless selection in popup window overlaps scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
17748
diff
changeset
|
1109 cb->max_col = wp->w_wincol + popup_width(wp) |
65b89c9eb946
patch 8.1.1874: modeless selection in popup window overlaps scrollbar
Bram Moolenaar <Bram@vim.org>
parents:
17748
diff
changeset
|
1110 - wp->w_popup_border[1] - wp->w_has_scrollbar; |
17748
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1111 if (cb->max_col > screen_Columns) |
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1112 cb->max_col = screen_Columns; |
17578
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1113 cb->min_row = wp->w_winrow + wp->w_popup_border[0]; |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1114 cb->max_row = wp->w_winrow + popup_height(wp) - 1 |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1115 - wp->w_popup_border[2]; |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1116 } |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1117 else |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1118 { |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1119 cb->min_col = 0; |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1120 cb->max_col = screen_Columns; |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1121 cb->min_row = 0; |
696030820746
patch 8.1.1786: double click in popup scrollbar starts selection
Bram Moolenaar <Bram@vim.org>
parents:
17506
diff
changeset
|
1122 cb->max_row = screen_Rows; |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1123 } |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1124 #endif |
7 | 1125 |
1126 if (repeated_click) | |
1127 { | |
1128 if (++cb->mode > SELECT_MODE_LINE) | |
1129 cb->mode = SELECT_MODE_CHAR; | |
1130 } | |
1131 else | |
1132 cb->mode = SELECT_MODE_CHAR; | |
1133 | |
1134 #ifdef FEAT_GUI | |
1135 /* clear the cursor until the selection is made */ | |
1136 if (gui.in_use) | |
1137 gui_undraw_cursor(); | |
1138 #endif | |
1139 | |
1140 switch (cb->mode) | |
1141 { | |
1142 case SELECT_MODE_CHAR: | |
1143 cb->origin_start_col = cb->start.col; | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1144 cb->word_end_col = clip_get_line_end(cb, (int)cb->start.lnum); |
7 | 1145 break; |
1146 | |
1147 case SELECT_MODE_WORD: | |
1148 clip_get_word_boundaries(cb, (int)cb->start.lnum, cb->start.col); | |
1149 cb->origin_start_col = cb->word_start_col; | |
1150 cb->origin_end_col = cb->word_end_col; | |
1151 | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1152 clip_invert_area(cb, (int)cb->start.lnum, cb->word_start_col, |
7 | 1153 (int)cb->end.lnum, cb->word_end_col, CLIP_SET); |
1154 cb->start.col = cb->word_start_col; | |
1155 cb->end.col = cb->word_end_col; | |
1156 break; | |
1157 | |
1158 case SELECT_MODE_LINE: | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1159 clip_invert_area(cb, (int)cb->start.lnum, 0, (int)cb->start.lnum, |
7 | 1160 (int)Columns, CLIP_SET); |
1161 cb->start.col = 0; | |
1162 cb->end.col = Columns; | |
1163 break; | |
1164 } | |
1165 | |
1166 cb->prev = cb->start; | |
1167 | |
1168 #ifdef DEBUG_SELECTION | |
1169 printf("Selection started at (%u,%u)\n", cb->start.lnum, cb->start.col); | |
1170 #endif | |
1171 } | |
1172 | |
1173 /* | |
1174 * Continue processing the selection | |
1175 */ | |
1176 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1177 clip_process_selection( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1178 int button, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1179 int col, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1180 int row, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1181 int_u repeated_click) |
7 | 1182 { |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1183 Clipboard_T *cb = &clip_star; |
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1184 int diff; |
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1185 int slen = 1; // cursor shape width |
7 | 1186 |
1187 if (button == MOUSE_RELEASE) | |
1188 { | |
17839
c72989922b51
patch 8.1.1916: trying to allocate negative amount of memory closing popup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1189 if (cb->state != SELECT_IN_PROGRESS) |
c72989922b51
patch 8.1.1916: trying to allocate negative amount of memory closing popup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1190 return; |
c72989922b51
patch 8.1.1916: trying to allocate negative amount of memory closing popup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1191 |
c72989922b51
patch 8.1.1916: trying to allocate negative amount of memory closing popup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1192 // Check to make sure we have something selected |
7 | 1193 if (cb->start.lnum == cb->end.lnum && cb->start.col == cb->end.col) |
1194 { | |
1195 #ifdef FEAT_GUI | |
1196 if (gui.in_use) | |
1197 gui_update_cursor(FALSE, FALSE); | |
1198 #endif | |
1199 cb->state = SELECT_CLEARED; | |
1200 return; | |
1201 } | |
1202 | |
1203 #ifdef DEBUG_SELECTION | |
1204 printf("Selection ended: (%u,%u) to (%u,%u)\n", cb->start.lnum, | |
1205 cb->start.col, cb->end.lnum, cb->end.col); | |
1206 #endif | |
3674 | 1207 if (clip_isautosel_star() |
7 | 1208 || ( |
1209 #ifdef FEAT_GUI | |
1210 gui.in_use ? (vim_strchr(p_go, GO_ASELML) != NULL) : | |
1211 #endif | |
1212 clip_autoselectml)) | |
1213 clip_copy_modeless_selection(FALSE); | |
1214 #ifdef FEAT_GUI | |
1215 if (gui.in_use) | |
1216 gui_update_cursor(FALSE, FALSE); | |
1217 #endif | |
1218 | |
1219 cb->state = SELECT_DONE; | |
1220 return; | |
1221 } | |
1222 | |
1223 row = check_row(row); | |
1224 col = check_col(col); | |
1225 col = mb_fix_col(col, row); | |
1226 | |
1227 if (col == (int)cb->prev.col && row == cb->prev.lnum && !repeated_click) | |
1228 return; | |
1229 | |
1230 /* | |
1231 * When extending the selection with the right mouse button, swap the | |
1232 * start and end if the position is before half the selection | |
1233 */ | |
1234 if (cb->state == SELECT_DONE && button == MOUSE_RIGHT) | |
1235 { | |
1236 /* | |
1237 * If the click is before the start, or the click is inside the | |
1238 * selection and the start is the closest side, set the origin to the | |
1239 * end of the selection. | |
1240 */ | |
1241 if (clip_compare_pos(row, col, (int)cb->start.lnum, cb->start.col) < 0 | |
1242 || (clip_compare_pos(row, col, | |
1243 (int)cb->end.lnum, cb->end.col) < 0 | |
1244 && (((cb->start.lnum == cb->end.lnum | |
1245 && cb->end.col - col > col - cb->start.col)) | |
1246 || ((diff = (cb->end.lnum - row) - | |
1247 (row - cb->start.lnum)) > 0 | |
1248 || (diff == 0 && col < (int)(cb->start.col + | |
1249 cb->end.col) / 2))))) | |
1250 { | |
1251 cb->origin_row = (short_u)cb->end.lnum; | |
1252 cb->origin_start_col = cb->end.col - 1; | |
1253 cb->origin_end_col = cb->end.col; | |
1254 } | |
1255 else | |
1256 { | |
1257 cb->origin_row = (short_u)cb->start.lnum; | |
1258 cb->origin_start_col = cb->start.col; | |
1259 cb->origin_end_col = cb->start.col; | |
1260 } | |
1261 if (cb->mode == SELECT_MODE_WORD && !repeated_click) | |
1262 cb->mode = SELECT_MODE_CHAR; | |
1263 } | |
1264 | |
1265 /* set state, for when using the right mouse button */ | |
1266 cb->state = SELECT_IN_PROGRESS; | |
1267 | |
1268 #ifdef DEBUG_SELECTION | |
1269 printf("Selection extending to (%d,%d)\n", row, col); | |
1270 #endif | |
1271 | |
1272 if (repeated_click && ++cb->mode > SELECT_MODE_LINE) | |
1273 cb->mode = SELECT_MODE_CHAR; | |
1274 | |
1275 switch (cb->mode) | |
1276 { | |
1277 case SELECT_MODE_CHAR: | |
1278 /* If we're on a different line, find where the line ends */ | |
1279 if (row != cb->prev.lnum) | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1280 cb->word_end_col = clip_get_line_end(cb, row); |
7 | 1281 |
1282 /* See if we are before or after the origin of the selection */ | |
1283 if (clip_compare_pos(row, col, cb->origin_row, | |
1284 cb->origin_start_col) >= 0) | |
1285 { | |
1286 if (col >= (int)cb->word_end_col) | |
1287 clip_update_modeless_selection(cb, cb->origin_row, | |
1288 cb->origin_start_col, row, (int)Columns); | |
1289 else | |
1290 { | |
1291 if (has_mbyte && mb_lefthalve(row, col)) | |
1292 slen = 2; | |
1293 clip_update_modeless_selection(cb, cb->origin_row, | |
1294 cb->origin_start_col, row, col + slen); | |
1295 } | |
1296 } | |
1297 else | |
1298 { | |
1299 if (has_mbyte | |
1300 && mb_lefthalve(cb->origin_row, cb->origin_start_col)) | |
1301 slen = 2; | |
1302 if (col >= (int)cb->word_end_col) | |
1303 clip_update_modeless_selection(cb, row, cb->word_end_col, | |
1304 cb->origin_row, cb->origin_start_col + slen); | |
1305 else | |
1306 clip_update_modeless_selection(cb, row, col, | |
1307 cb->origin_row, cb->origin_start_col + slen); | |
1308 } | |
1309 break; | |
1310 | |
1311 case SELECT_MODE_WORD: | |
1312 /* If we are still within the same word, do nothing */ | |
1313 if (row == cb->prev.lnum && col >= (int)cb->word_start_col | |
1314 && col < (int)cb->word_end_col && !repeated_click) | |
1315 return; | |
1316 | |
1317 /* Get new word boundaries */ | |
1318 clip_get_word_boundaries(cb, row, col); | |
1319 | |
1320 /* Handle being after the origin point of selection */ | |
1321 if (clip_compare_pos(row, col, cb->origin_row, | |
1322 cb->origin_start_col) >= 0) | |
1323 clip_update_modeless_selection(cb, cb->origin_row, | |
1324 cb->origin_start_col, row, cb->word_end_col); | |
1325 else | |
1326 clip_update_modeless_selection(cb, row, cb->word_start_col, | |
1327 cb->origin_row, cb->origin_end_col); | |
1328 break; | |
1329 | |
1330 case SELECT_MODE_LINE: | |
1331 if (row == cb->prev.lnum && !repeated_click) | |
1332 return; | |
1333 | |
1334 if (clip_compare_pos(row, col, cb->origin_row, | |
1335 cb->origin_start_col) >= 0) | |
1336 clip_update_modeless_selection(cb, cb->origin_row, 0, row, | |
1337 (int)Columns); | |
1338 else | |
1339 clip_update_modeless_selection(cb, row, 0, cb->origin_row, | |
1340 (int)Columns); | |
1341 break; | |
1342 } | |
1343 | |
1344 cb->prev.lnum = row; | |
1345 cb->prev.col = col; | |
1346 | |
1347 #ifdef DEBUG_SELECTION | |
1348 printf("Selection is: (%u,%u) to (%u,%u)\n", cb->start.lnum, | |
1349 cb->start.col, cb->end.lnum, cb->end.col); | |
1350 #endif | |
1351 } | |
1352 | |
1353 # if defined(FEAT_GUI) || defined(PROTO) | |
1354 /* | |
1355 * Redraw part of the selection if character at "row,col" is inside of it. | |
1356 * Only used for the GUI. | |
1357 */ | |
1358 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1359 clip_may_redraw_selection(int row, int col, int len) |
7 | 1360 { |
1361 int start = col; | |
1362 int end = col + len; | |
1363 | |
1364 if (clip_star.state != SELECT_CLEARED | |
1365 && row >= clip_star.start.lnum | |
1366 && row <= clip_star.end.lnum) | |
1367 { | |
1368 if (row == clip_star.start.lnum && start < (int)clip_star.start.col) | |
1369 start = clip_star.start.col; | |
1370 if (row == clip_star.end.lnum && end > (int)clip_star.end.col) | |
1371 end = clip_star.end.col; | |
1372 if (end > start) | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1373 clip_invert_area(&clip_star, row, start, row, end, 0); |
7 | 1374 } |
1375 } | |
1376 # endif | |
1377 | |
1378 /* | |
1379 * Called from outside to clear selected region from the display | |
1380 */ | |
1381 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1382 clip_clear_selection(Clipboard_T *cbd) |
7 | 1383 { |
1384 | |
3674 | 1385 if (cbd->state == SELECT_CLEARED) |
7 | 1386 return; |
1387 | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1388 clip_invert_area(cbd, (int)cbd->start.lnum, cbd->start.col, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1389 (int)cbd->end.lnum, cbd->end.col, CLIP_CLEAR); |
3674 | 1390 cbd->state = SELECT_CLEARED; |
7 | 1391 } |
1392 | |
1393 /* | |
1394 * Clear the selection if any lines from "row1" to "row2" are inside of it. | |
1395 */ | |
1396 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1397 clip_may_clear_selection(int row1, int row2) |
7 | 1398 { |
1399 if (clip_star.state == SELECT_DONE | |
1400 && row2 >= clip_star.start.lnum | |
1401 && row1 <= clip_star.end.lnum) | |
3674 | 1402 clip_clear_selection(&clip_star); |
7 | 1403 } |
1404 | |
1405 /* | |
1406 * Called before the screen is scrolled up or down. Adjusts the line numbers | |
1407 * of the selection. Call with big number when clearing the screen. | |
1408 */ | |
1409 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1410 clip_scroll_selection( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1411 int rows) /* negative for scroll down */ |
7 | 1412 { |
1413 int lnum; | |
1414 | |
1415 if (clip_star.state == SELECT_CLEARED) | |
1416 return; | |
1417 | |
1418 lnum = clip_star.start.lnum - rows; | |
1419 if (lnum <= 0) | |
1420 clip_star.start.lnum = 0; | |
1421 else if (lnum >= screen_Rows) /* scrolled off of the screen */ | |
1422 clip_star.state = SELECT_CLEARED; | |
1423 else | |
1424 clip_star.start.lnum = lnum; | |
1425 | |
1426 lnum = clip_star.end.lnum - rows; | |
1427 if (lnum < 0) /* scrolled off of the screen */ | |
1428 clip_star.state = SELECT_CLEARED; | |
1429 else if (lnum >= screen_Rows) | |
1430 clip_star.end.lnum = screen_Rows - 1; | |
1431 else | |
1432 clip_star.end.lnum = lnum; | |
1433 } | |
1434 | |
1435 /* | |
1436 * Invert a region of the display between a starting and ending row and column | |
1437 * Values for "how": | |
1438 * CLIP_CLEAR: undo inversion | |
1439 * CLIP_SET: set inversion | |
1440 * CLIP_TOGGLE: set inversion if pos1 < pos2, undo inversion otherwise. | |
1441 * 0: invert (GUI only). | |
1442 */ | |
1443 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1444 clip_invert_area( |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1445 Clipboard_T *cbd, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1446 int row1, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1447 int col1, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1448 int row2, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1449 int col2, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1450 int how) |
7 | 1451 { |
1452 int invert = FALSE; | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1453 int max_col; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1454 |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1455 #ifdef FEAT_TEXT_PROP |
17748
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1456 max_col = cbd->max_col - 1; |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1457 #else |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1458 max_col = Columns - 1; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1459 #endif |
7 | 1460 |
1461 if (how == CLIP_SET) | |
1462 invert = TRUE; | |
1463 | |
1464 /* Swap the from and to positions so the from is always before */ | |
1465 if (clip_compare_pos(row1, col1, row2, col2) > 0) | |
1466 { | |
1467 int tmp_row, tmp_col; | |
1468 | |
1469 tmp_row = row1; | |
1470 tmp_col = col1; | |
1471 row1 = row2; | |
1472 col1 = col2; | |
1473 row2 = tmp_row; | |
1474 col2 = tmp_col; | |
1475 } | |
1476 else if (how == CLIP_TOGGLE) | |
1477 invert = TRUE; | |
1478 | |
1479 /* If all on the same line, do it the easy way */ | |
1480 if (row1 == row2) | |
1481 { | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1482 clip_invert_rectangle(cbd, row1, col1, 1, col2 - col1, invert); |
7 | 1483 } |
1484 else | |
1485 { | |
1486 /* Handle a piece of the first line */ | |
1487 if (col1 > 0) | |
1488 { | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1489 clip_invert_rectangle(cbd, row1, col1, 1, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1490 (int)Columns - col1, invert); |
7 | 1491 row1++; |
1492 } | |
1493 | |
1494 /* Handle a piece of the last line */ | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1495 if (col2 < max_col) |
7 | 1496 { |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1497 clip_invert_rectangle(cbd, row2, 0, 1, col2, invert); |
7 | 1498 row2--; |
1499 } | |
1500 | |
1501 /* Handle the rectangle thats left */ | |
1502 if (row2 >= row1) | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1503 clip_invert_rectangle(cbd, row1, 0, row2 - row1 + 1, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1504 (int)Columns, invert); |
7 | 1505 } |
1506 } | |
1507 | |
1508 /* | |
1509 * Invert or un-invert a rectangle of the screen. | |
1510 * "invert" is true if the result is inverted. | |
1511 */ | |
1512 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1513 clip_invert_rectangle( |
17153
53ae08e30d1c
patch 8.1.1576: compiler warning for unused argument
Bram Moolenaar <Bram@vim.org>
parents:
17103
diff
changeset
|
1514 Clipboard_T *cbd UNUSED, |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1515 int row_arg, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1516 int col_arg, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1517 int height_arg, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1518 int width_arg, |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1519 int invert) |
7 | 1520 { |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1521 int row = row_arg; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1522 int col = col_arg; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1523 int height = height_arg; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1524 int width = width_arg; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1525 |
17041
5ed4965ebc7b
patch 8.1.1520: popup windows are ignored when dealing with mouse position
Bram Moolenaar <Bram@vim.org>
parents:
17034
diff
changeset
|
1526 #ifdef FEAT_TEXT_PROP |
5ed4965ebc7b
patch 8.1.1520: popup windows are ignored when dealing with mouse position
Bram Moolenaar <Bram@vim.org>
parents:
17034
diff
changeset
|
1527 // this goes on top of all popup windows |
17162
f16cee6adf29
patch 8.1.1580: cannot make part of a popup transparent
Bram Moolenaar <Bram@vim.org>
parents:
17153
diff
changeset
|
1528 screen_zindex = CLIP_ZINDEX; |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1529 |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1530 if (col < cbd->min_col) |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1531 { |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1532 width -= cbd->min_col - col; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1533 col = cbd->min_col; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1534 } |
17748
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1535 if (width > cbd->max_col - col) |
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1536 width = cbd->max_col - col; |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1537 if (row < cbd->min_row) |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1538 { |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1539 height -= cbd->min_row - row; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1540 row = cbd->min_row; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1541 } |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1542 if (height > cbd->max_row - row + 1) |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1543 height = cbd->max_row - row + 1; |
17041
5ed4965ebc7b
patch 8.1.1520: popup windows are ignored when dealing with mouse position
Bram Moolenaar <Bram@vim.org>
parents:
17034
diff
changeset
|
1544 #endif |
7 | 1545 #ifdef FEAT_GUI |
1546 if (gui.in_use) | |
1547 gui_mch_invert_rectangle(row, col, height, width); | |
1548 else | |
1549 #endif | |
1550 screen_draw_rectangle(row, col, height, width, invert); | |
17041
5ed4965ebc7b
patch 8.1.1520: popup windows are ignored when dealing with mouse position
Bram Moolenaar <Bram@vim.org>
parents:
17034
diff
changeset
|
1551 #ifdef FEAT_TEXT_PROP |
5ed4965ebc7b
patch 8.1.1520: popup windows are ignored when dealing with mouse position
Bram Moolenaar <Bram@vim.org>
parents:
17034
diff
changeset
|
1552 screen_zindex = 0; |
5ed4965ebc7b
patch 8.1.1520: popup windows are ignored when dealing with mouse position
Bram Moolenaar <Bram@vim.org>
parents:
17034
diff
changeset
|
1553 #endif |
7 | 1554 } |
1555 | |
1556 /* | |
1557 * Copy the currently selected area into the '*' register so it will be | |
1558 * available for pasting. | |
1559 * When "both" is TRUE also copy to the '+' register. | |
1560 */ | |
1561 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1562 clip_copy_modeless_selection(int both UNUSED) |
7 | 1563 { |
1564 char_u *buffer; | |
1565 char_u *bufp; | |
1566 int row; | |
1567 int start_col; | |
1568 int end_col; | |
1569 int line_end_col; | |
1570 int add_newline_flag = FALSE; | |
1571 int len; | |
1572 char_u *p; | |
1573 int row1 = clip_star.start.lnum; | |
1574 int col1 = clip_star.start.col; | |
1575 int row2 = clip_star.end.lnum; | |
1576 int col2 = clip_star.end.col; | |
1577 | |
534 | 1578 /* Can't use ScreenLines unless initialized */ |
1579 if (ScreenLines == NULL) | |
1580 return; | |
1581 | |
7 | 1582 /* |
1583 * Make sure row1 <= row2, and if row1 == row2 that col1 <= col2. | |
1584 */ | |
1585 if (row1 > row2) | |
1586 { | |
1587 row = row1; row1 = row2; row2 = row; | |
1588 row = col1; col1 = col2; col2 = row; | |
1589 } | |
1590 else if (row1 == row2 && col1 > col2) | |
1591 { | |
1592 row = col1; col1 = col2; col2 = row; | |
1593 } | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1594 #ifdef FEAT_TEXT_PROP |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1595 if (col1 < clip_star.min_col) |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1596 col1 = clip_star.min_col; |
17748
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1597 if (col2 > clip_star.max_col) |
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1598 col2 = clip_star.max_col; |
17839
c72989922b51
patch 8.1.1916: trying to allocate negative amount of memory closing popup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1599 if (row1 > clip_star.max_row || row2 < clip_star.min_row) |
c72989922b51
patch 8.1.1916: trying to allocate negative amount of memory closing popup
Bram Moolenaar <Bram@vim.org>
parents:
17789
diff
changeset
|
1600 return; |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1601 if (row1 < clip_star.min_row) |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1602 row1 = clip_star.min_row; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1603 if (row2 > clip_star.max_row) |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1604 row2 = clip_star.max_row; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1605 #endif |
7 | 1606 /* correct starting point for being on right halve of double-wide char */ |
1607 p = ScreenLines + LineOffset[row1]; | |
1608 if (enc_dbcs != 0) | |
1609 col1 -= (*mb_head_off)(p, p + col1); | |
1610 else if (enc_utf8 && p[col1] == 0) | |
1611 --col1; | |
1612 | |
1613 /* Create a temporary buffer for storing the text */ | |
1614 len = (row2 - row1 + 1) * Columns + 1; | |
1615 if (enc_dbcs != 0) | |
1616 len *= 2; /* max. 2 bytes per display cell */ | |
1617 else if (enc_utf8) | |
714 | 1618 len *= MB_MAXBYTES; |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
1619 buffer = alloc(len); |
7 | 1620 if (buffer == NULL) /* out of memory */ |
1621 return; | |
1622 | |
1623 /* Process each row in the selection */ | |
1624 for (bufp = buffer, row = row1; row <= row2; row++) | |
1625 { | |
1626 if (row == row1) | |
1627 start_col = col1; | |
1628 else | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1629 #ifdef FEAT_TEXT_PROP |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1630 start_col = clip_star.min_col; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1631 #else |
7 | 1632 start_col = 0; |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1633 #endif |
7 | 1634 |
1635 if (row == row2) | |
1636 end_col = col2; | |
17748
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1637 else |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1638 #ifdef FEAT_TEXT_PROP |
17748
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1639 end_col = clip_star.max_col; |
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1640 #else |
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1641 end_col = Columns; |
17738
f800c3d8ca1b
patch 8.1.1866: modeless selection in GUI does not work properly
Bram Moolenaar <Bram@vim.org>
parents:
17708
diff
changeset
|
1642 #endif |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1643 |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1644 line_end_col = clip_get_line_end(&clip_star, row); |
7 | 1645 |
1646 /* See if we need to nuke some trailing whitespace */ | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1647 if (end_col >= |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1648 #ifdef FEAT_TEXT_PROP |
17748
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1649 clip_star.max_col |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1650 #else |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1651 Columns |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1652 #endif |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1653 && (row < row2 || end_col > line_end_col)) |
7 | 1654 { |
1655 /* Get rid of trailing whitespace */ | |
1656 end_col = line_end_col; | |
1657 if (end_col < start_col) | |
1658 end_col = start_col; | |
1659 | |
1660 /* If the last line extended to the end, add an extra newline */ | |
1661 if (row == row2) | |
1662 add_newline_flag = TRUE; | |
1663 } | |
1664 | |
1665 /* If after the first row, we need to always add a newline */ | |
1666 if (row > row1 && !LineWraps[row - 1]) | |
1667 *bufp++ = NL; | |
1668 | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1669 // Safetey check for in case resizing went wrong |
7 | 1670 if (row < screen_Rows && end_col <= screen_Columns) |
1671 { | |
1672 if (enc_dbcs != 0) | |
1673 { | |
944 | 1674 int i; |
1675 | |
7 | 1676 p = ScreenLines + LineOffset[row]; |
1677 for (i = start_col; i < end_col; ++i) | |
1678 if (enc_dbcs == DBCS_JPNU && p[i] == 0x8e) | |
1679 { | |
1680 /* single-width double-byte char */ | |
1681 *bufp++ = 0x8e; | |
1682 *bufp++ = ScreenLines2[LineOffset[row] + i]; | |
1683 } | |
1684 else | |
1685 { | |
1686 *bufp++ = p[i]; | |
1687 if (MB_BYTE2LEN(p[i]) == 2) | |
1688 *bufp++ = p[++i]; | |
1689 } | |
1690 } | |
1691 else if (enc_utf8) | |
1692 { | |
1693 int off; | |
714 | 1694 int i; |
761 | 1695 int ci; |
7 | 1696 |
1697 off = LineOffset[row]; | |
1698 for (i = start_col; i < end_col; ++i) | |
1699 { | |
1700 /* The base character is either in ScreenLinesUC[] or | |
1701 * ScreenLines[]. */ | |
1702 if (ScreenLinesUC[off + i] == 0) | |
1703 *bufp++ = ScreenLines[off + i]; | |
1704 else | |
1705 { | |
1706 bufp += utf_char2bytes(ScreenLinesUC[off + i], bufp); | |
761 | 1707 for (ci = 0; ci < Screen_mco; ++ci) |
7 | 1708 { |
714 | 1709 /* Add a composing character. */ |
761 | 1710 if (ScreenLinesC[ci][off + i] == 0) |
714 | 1711 break; |
761 | 1712 bufp += utf_char2bytes(ScreenLinesC[ci][off + i], |
7 | 1713 bufp); |
1714 } | |
1715 } | |
1716 /* Skip right halve of double-wide character. */ | |
1717 if (ScreenLines[off + i + 1] == 0) | |
1718 ++i; | |
1719 } | |
1720 } | |
1721 else | |
1722 { | |
1723 STRNCPY(bufp, ScreenLines + LineOffset[row] + start_col, | |
1724 end_col - start_col); | |
1725 bufp += end_col - start_col; | |
1726 } | |
1727 } | |
1728 } | |
1729 | |
1730 /* Add a newline at the end if the selection ended there */ | |
1731 if (add_newline_flag) | |
1732 *bufp++ = NL; | |
1733 | |
1734 /* First cleanup any old selection and become the owner. */ | |
1735 clip_free_selection(&clip_star); | |
1736 clip_own_selection(&clip_star); | |
1737 | |
1738 /* Yank the text into the '*' register. */ | |
1739 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_star); | |
1740 | |
1741 /* Make the register contents available to the outside world. */ | |
1742 clip_gen_set_selection(&clip_star); | |
1743 | |
1744 #ifdef FEAT_X11 | |
1745 if (both) | |
1746 { | |
1747 /* Do the same for the '+' register. */ | |
1748 clip_free_selection(&clip_plus); | |
1749 clip_own_selection(&clip_plus); | |
1750 clip_yank_selection(MCHAR, buffer, (long)(bufp - buffer), &clip_plus); | |
1751 clip_gen_set_selection(&clip_plus); | |
1752 } | |
1753 #endif | |
1754 vim_free(buffer); | |
1755 } | |
1756 | |
1757 /* | |
1758 * Find the starting and ending positions of the word at the given row and | |
1759 * column. Only white-separated words are recognized here. | |
1760 */ | |
1761 #define CHAR_CLASS(c) (c <= ' ' ? ' ' : vim_iswordc(c)) | |
1762 | |
1763 static void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1764 clip_get_word_boundaries(Clipboard_T *cb, int row, int col) |
7 | 1765 { |
1766 int start_class; | |
1767 int temp_col; | |
1768 char_u *p; | |
1769 int mboff; | |
1770 | |
534 | 1771 if (row >= screen_Rows || col >= screen_Columns || ScreenLines == NULL) |
7 | 1772 return; |
1773 | |
1774 p = ScreenLines + LineOffset[row]; | |
1775 /* Correct for starting in the right halve of a double-wide char */ | |
1776 if (enc_dbcs != 0) | |
1777 col -= dbcs_screen_head_off(p, p + col); | |
1778 else if (enc_utf8 && p[col] == 0) | |
1779 --col; | |
1780 start_class = CHAR_CLASS(p[col]); | |
1781 | |
1782 temp_col = col; | |
1783 for ( ; temp_col > 0; temp_col--) | |
1784 if (enc_dbcs != 0 | |
1785 && (mboff = dbcs_screen_head_off(p, p + temp_col - 1)) > 0) | |
1786 temp_col -= mboff; | |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1787 else if (CHAR_CLASS(p[temp_col - 1]) != start_class |
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1788 && !(enc_utf8 && p[temp_col - 1] == 0)) |
7 | 1789 break; |
1790 cb->word_start_col = temp_col; | |
1791 | |
1792 temp_col = col; | |
1793 for ( ; temp_col < screen_Columns; temp_col++) | |
1794 if (enc_dbcs != 0 && dbcs_ptr2cells(p + temp_col) == 2) | |
1795 ++temp_col; | |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1796 else if (CHAR_CLASS(p[temp_col]) != start_class |
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1797 && !(enc_utf8 && p[temp_col] == 0)) |
7 | 1798 break; |
1799 cb->word_end_col = temp_col; | |
1800 } | |
1801 | |
1802 /* | |
1803 * Find the column position for the last non-whitespace character on the given | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1804 * line at or before start_col. |
7 | 1805 */ |
1806 static int | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1807 clip_get_line_end(Clipboard_T *cbd UNUSED, int row) |
7 | 1808 { |
1809 int i; | |
1810 | |
534 | 1811 if (row >= screen_Rows || ScreenLines == NULL) |
7 | 1812 return 0; |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1813 for (i = |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1814 #ifdef FEAT_TEXT_PROP |
17748
6ffe295f7492
patch 8.1.1871: modeless selection in GUI still not correct
Bram Moolenaar <Bram@vim.org>
parents:
17738
diff
changeset
|
1815 cbd->max_col; |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1816 #else |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1817 screen_Columns; |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1818 #endif |
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1819 i > 0; i--) |
7 | 1820 if (ScreenLines[LineOffset[row] + i - 1] != ' ') |
1821 break; | |
1822 return i; | |
1823 } | |
1824 | |
1825 /* | |
1826 * Update the currently selected region by adding and/or subtracting from the | |
1827 * beginning or end and inverting the changed area(s). | |
1828 */ | |
1829 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1830 clip_update_modeless_selection( |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1831 Clipboard_T *cb, |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1832 int row1, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1833 int col1, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1834 int row2, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1835 int col2) |
7 | 1836 { |
1837 /* See if we changed at the beginning of the selection */ | |
1838 if (row1 != cb->start.lnum || col1 != (int)cb->start.col) | |
1839 { | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1840 clip_invert_area(cb, row1, col1, (int)cb->start.lnum, cb->start.col, |
7 | 1841 CLIP_TOGGLE); |
1842 cb->start.lnum = row1; | |
1843 cb->start.col = col1; | |
1844 } | |
1845 | |
1846 /* See if we changed at the end of the selection */ | |
1847 if (row2 != cb->end.lnum || col2 != (int)cb->end.col) | |
1848 { | |
17069
76ae212a9075
patch 8.1.1534: modeless selection in popup window selects too much
Bram Moolenaar <Bram@vim.org>
parents:
17063
diff
changeset
|
1849 clip_invert_area(cb, (int)cb->end.lnum, cb->end.col, row2, col2, |
7 | 1850 CLIP_TOGGLE); |
1851 cb->end.lnum = row2; | |
1852 cb->end.col = col2; | |
1853 } | |
1854 } | |
1855 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17754
diff
changeset
|
1856 static int |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1857 clip_gen_own_selection(Clipboard_T *cbd) |
7 | 1858 { |
1859 #ifdef FEAT_XCLIPBOARD | |
1860 # ifdef FEAT_GUI | |
1861 if (gui.in_use) | |
1862 return clip_mch_own_selection(cbd); | |
1863 else | |
1864 # endif | |
1865 return clip_xterm_own_selection(cbd); | |
1866 #else | |
1867 return clip_mch_own_selection(cbd); | |
1868 #endif | |
1869 } | |
1870 | |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17754
diff
changeset
|
1871 static void |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1872 clip_gen_lose_selection(Clipboard_T *cbd) |
7 | 1873 { |
1874 #ifdef FEAT_XCLIPBOARD | |
1875 # ifdef FEAT_GUI | |
1876 if (gui.in_use) | |
1877 clip_mch_lose_selection(cbd); | |
1878 else | |
1879 # endif | |
1880 clip_xterm_lose_selection(cbd); | |
1881 #else | |
1882 clip_mch_lose_selection(cbd); | |
1883 #endif | |
1884 } | |
1885 | |
1886 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1887 clip_gen_set_selection(Clipboard_T *cbd) |
7 | 1888 { |
6116 | 1889 if (!clip_did_set_selection) |
1890 { | |
1891 /* Updating postponed, so that accessing the system clipboard won't | |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1892 * hang Vim when accessing it many times (e.g. on a :g command). */ |
6543 | 1893 if ((cbd == &clip_plus && (clip_unnamed_saved & CLIP_UNNAMED_PLUS)) |
1894 || (cbd == &clip_star && (clip_unnamed_saved & CLIP_UNNAMED))) | |
1895 { | |
1896 clipboard_needs_update = TRUE; | |
6116 | 1897 return; |
6543 | 1898 } |
6116 | 1899 } |
7 | 1900 #ifdef FEAT_XCLIPBOARD |
1901 # ifdef FEAT_GUI | |
1902 if (gui.in_use) | |
1903 clip_mch_set_selection(cbd); | |
1904 else | |
1905 # endif | |
1906 clip_xterm_set_selection(cbd); | |
1907 #else | |
1908 clip_mch_set_selection(cbd); | |
1909 #endif | |
1910 } | |
1911 | |
1912 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1913 clip_gen_request_selection(Clipboard_T *cbd) |
7 | 1914 { |
1915 #ifdef FEAT_XCLIPBOARD | |
1916 # ifdef FEAT_GUI | |
1917 if (gui.in_use) | |
1918 clip_mch_request_selection(cbd); | |
1919 else | |
1920 # endif | |
1921 clip_xterm_request_selection(cbd); | |
1922 #else | |
1923 clip_mch_request_selection(cbd); | |
1924 #endif | |
1925 } | |
1926 | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1927 #if (defined(FEAT_X11) && defined(USE_SYSTEM)) || defined(PROTO) |
4209 | 1928 int |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
1929 clip_gen_owner_exists(Clipboard_T *cbd UNUSED) |
4209 | 1930 { |
1931 #ifdef FEAT_XCLIPBOARD | |
1932 # ifdef FEAT_GUI_GTK | |
1933 if (gui.in_use) | |
1934 return clip_gtk_owner_exists(cbd); | |
1935 else | |
1936 # endif | |
1937 return clip_x11_owner_exists(cbd); | |
5184
c6dd0c545e5c
updated for version 7.4a.018
Bram Moolenaar <bram@vim.org>
parents:
5136
diff
changeset
|
1938 #else |
c6dd0c545e5c
updated for version 7.4a.018
Bram Moolenaar <bram@vim.org>
parents:
5136
diff
changeset
|
1939 return TRUE; |
4209 | 1940 #endif |
1941 } | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1942 #endif |
4209 | 1943 |
7 | 1944 #endif /* FEAT_CLIPBOARD */ |
1945 | |
1946 /***************************************************************************** | |
1947 * Functions that handle the input buffer. | |
1948 * This is used for any GUI version, and the unix terminal version. | |
1949 * | |
1950 * For Unix, the input characters are buffered to be able to check for a | |
1951 * CTRL-C. This should be done with signals, but I don't know how to do that | |
1952 * in a portable way for a tty in RAW mode. | |
1953 * | |
1954 * For the client-server code in the console the received keys are put in the | |
1955 * input buffer. | |
1956 */ | |
1957 | |
1958 #if defined(USE_INPUT_BUF) || defined(PROTO) | |
1959 | |
1960 /* | |
1961 * Internal typeahead buffer. Includes extra space for long key code | |
1962 * descriptions which would otherwise overflow. The buffer is considered full | |
1963 * when only this extra space (or part of it) remains. | |
1964 */ | |
15510
41fbbcea0f1b
patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents:
15506
diff
changeset
|
1965 #if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER) |
7 | 1966 /* |
15510
41fbbcea0f1b
patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents:
15506
diff
changeset
|
1967 * NetBeans stuffs debugger commands into the input buffer. |
7 | 1968 * This requires a larger buffer... |
1969 * (Madsen) Go with this for remote input as well ... | |
1970 */ | |
1971 # define INBUFLEN 4096 | |
1972 #else | |
1973 # define INBUFLEN 250 | |
1974 #endif | |
1975 | |
1976 static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN]; | |
1977 static int inbufcount = 0; /* number of chars in inbuf[] */ | |
1978 | |
1979 /* | |
1980 * vim_is_input_buf_full(), vim_is_input_buf_empty(), add_to_input_buf(), and | |
1981 * trash_input_buf() are functions for manipulating the input buffer. These | |
1982 * are used by the gui_* calls when a GUI is used to handle keyboard input. | |
1983 */ | |
1984 | |
1985 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1986 vim_is_input_buf_full(void) |
7 | 1987 { |
1988 return (inbufcount >= INBUFLEN); | |
1989 } | |
1990 | |
1991 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1992 vim_is_input_buf_empty(void) |
7 | 1993 { |
1994 return (inbufcount == 0); | |
1995 } | |
1996 | |
1997 #if defined(FEAT_OLE) || defined(PROTO) | |
1998 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1999 vim_free_in_input_buf(void) |
7 | 2000 { |
2001 return (INBUFLEN - inbufcount); | |
2002 } | |
2003 #endif | |
2004 | |
575 | 2005 #if defined(FEAT_GUI_GTK) || defined(PROTO) |
7 | 2006 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2007 vim_used_in_input_buf(void) |
7 | 2008 { |
2009 return inbufcount; | |
2010 } | |
2011 #endif | |
2012 | |
2013 /* | |
2014 * Return the current contents of the input buffer and make it empty. | |
2015 * The returned pointer must be passed to set_input_buf() later. | |
2016 */ | |
2017 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2018 get_input_buf(void) |
7 | 2019 { |
2020 garray_T *gap; | |
2021 | |
2022 /* We use a growarray to store the data pointer and the length. */ | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2023 gap = ALLOC_ONE(garray_T); |
7 | 2024 if (gap != NULL) |
2025 { | |
2026 /* Add one to avoid a zero size. */ | |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2027 gap->ga_data = alloc(inbufcount + 1); |
7 | 2028 if (gap->ga_data != NULL) |
2029 mch_memmove(gap->ga_data, inbuf, (size_t)inbufcount); | |
2030 gap->ga_len = inbufcount; | |
2031 } | |
2032 trash_input_buf(); | |
2033 return (char_u *)gap; | |
2034 } | |
2035 | |
2036 /* | |
2037 * Restore the input buffer with a pointer returned from get_input_buf(). | |
2038 * The allocated memory is freed, this only works once! | |
2039 */ | |
2040 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2041 set_input_buf(char_u *p) |
7 | 2042 { |
2043 garray_T *gap = (garray_T *)p; | |
2044 | |
2045 if (gap != NULL) | |
2046 { | |
2047 if (gap->ga_data != NULL) | |
2048 { | |
2049 mch_memmove(inbuf, gap->ga_data, gap->ga_len); | |
2050 inbufcount = gap->ga_len; | |
2051 vim_free(gap->ga_data); | |
2052 } | |
2053 vim_free(gap); | |
2054 } | |
2055 } | |
2056 | |
2057 /* | |
2058 * Add the given bytes to the input buffer | |
2059 * Special keys start with CSI. A real CSI must have been translated to | |
2060 * CSI KS_EXTRA KE_CSI. K_SPECIAL doesn't require translation. | |
2061 */ | |
2062 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2063 add_to_input_buf(char_u *s, int len) |
7 | 2064 { |
2065 if (inbufcount + len > INBUFLEN + MAX_KEY_CODE_LEN) | |
2066 return; /* Shouldn't ever happen! */ | |
2067 | |
2068 #ifdef FEAT_HANGULIN | |
2069 if ((State & (INSERT|CMDLINE)) && hangul_input_state_get()) | |
2070 if ((len = hangul_input_process(s, len)) == 0) | |
2071 return; | |
2072 #endif | |
2073 | |
2074 while (len--) | |
2075 inbuf[inbufcount++] = *s++; | |
2076 } | |
2077 | |
2078 /* | |
2079 * Add "str[len]" to the input buffer while escaping CSI bytes. | |
2080 */ | |
2081 void | |
2082 add_to_input_buf_csi(char_u *str, int len) | |
2083 { | |
2084 int i; | |
2085 char_u buf[2]; | |
2086 | |
2087 for (i = 0; i < len; ++i) | |
2088 { | |
2089 add_to_input_buf(str + i, 1); | |
2090 if (str[i] == CSI) | |
2091 { | |
2092 /* Turn CSI into K_CSI. */ | |
2093 buf[0] = KS_EXTRA; | |
2094 buf[1] = (int)KE_CSI; | |
2095 add_to_input_buf(buf, 2); | |
2096 } | |
2097 } | |
2098 } | |
2099 | |
2100 #if defined(FEAT_HANGULIN) || defined(PROTO) | |
2101 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2102 push_raw_key(char_u *s, int len) |
7 | 2103 { |
7208
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
2104 char_u *tmpbuf; |
8393
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2105 char_u *inp = s; |
7208
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
2106 |
8393
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2107 /* 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
|
2108 tmpbuf = hangul_string_convert(s, &len); |
2c00f6b312bf
commit https://github.com/vim/vim/commit/72f4cc4a987d123c0ed909c85b9a05f65cef7202
Christian Brabandt <cb@256bit.org>
parents:
7080
diff
changeset
|
2109 if (tmpbuf != NULL) |
8393
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2110 inp = tmpbuf; |
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2111 |
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2112 for (; len--; inp++) |
8366
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
2113 { |
8393
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2114 inbuf[inbufcount++] = *inp; |
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2115 if (*inp == CSI) |
8366
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
2116 { |
8393
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2117 /* Turn CSI into K_CSI. */ |
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2118 inbuf[inbufcount++] = KS_EXTRA; |
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2119 inbuf[inbufcount++] = (int)KE_CSI; |
8366
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
2120 } |
6099e8185045
commit https://github.com/vim/vim/commit/00ded43a5a85df57abb74f9e3a38a401f6fbd8fd
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
2121 } |
8393
a7f94f0ba183
commit https://github.com/vim/vim/commit/179f1b9a7ddf3624daf6380c3dad740e0a1ba361
Christian Brabandt <cb@256bit.org>
parents:
8366
diff
changeset
|
2122 vim_free(tmpbuf); |
7 | 2123 } |
2124 #endif | |
2125 | |
2126 /* Remove everything from the input buffer. Called when ^C is found */ | |
2127 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2128 trash_input_buf(void) |
7 | 2129 { |
2130 inbufcount = 0; | |
2131 } | |
2132 | |
2133 /* | |
2134 * Read as much data from the input buffer as possible up to maxlen, and store | |
2135 * it in buf. | |
2136 */ | |
2137 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2138 read_from_input_buf(char_u *buf, long maxlen) |
7 | 2139 { |
2140 if (inbufcount == 0) /* if the buffer is empty, fill it */ | |
2141 fill_input_buf(TRUE); | |
2142 if (maxlen > inbufcount) | |
2143 maxlen = inbufcount; | |
2144 mch_memmove(buf, inbuf, (size_t)maxlen); | |
2145 inbufcount -= maxlen; | |
2146 if (inbufcount) | |
2147 mch_memmove(inbuf, inbuf + maxlen, (size_t)inbufcount); | |
2148 return (int)maxlen; | |
2149 } | |
2150 | |
2151 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2152 fill_input_buf(int exit_on_error UNUSED) |
7 | 2153 { |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12519
diff
changeset
|
2154 #if defined(UNIX) || defined(VMS) || defined(MACOS_X) |
7 | 2155 int len; |
2156 int try; | |
2157 static int did_read_something = FALSE; | |
2158 static char_u *rest = NULL; /* unconverted rest of previous read */ | |
2159 static int restlen = 0; | |
2160 int unconverted; | |
2161 #endif | |
2162 | |
2163 #ifdef FEAT_GUI | |
294 | 2164 if (gui.in_use |
2165 # ifdef NO_CONSOLE_INPUT | |
2166 /* Don't use the GUI input when the window hasn't been opened yet. | |
2167 * We get here from ui_inchar() when we should try reading from stdin. */ | |
2168 && !no_console_input() | |
2169 # endif | |
2170 ) | |
7 | 2171 { |
2172 gui_mch_update(); | |
2173 return; | |
2174 } | |
2175 #endif | |
12716
351cf7c67bbe
patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents:
12519
diff
changeset
|
2176 #if defined(UNIX) || defined(VMS) || defined(MACOS_X) |
7 | 2177 if (vim_is_input_buf_full()) |
2178 return; | |
2179 /* | |
2180 * Fill_input_buf() is only called when we really need a character. | |
2181 * If we can't get any, but there is some in the buffer, just return. | |
2182 * If we can't get any, and there isn't any in the buffer, we give up and | |
2183 * exit Vim. | |
2184 */ | |
2185 # ifdef __BEOS__ | |
2186 /* | |
2187 * On the BeBox version (for now), all input is secretly performed within | |
2188 * beos_select() which is called from RealWaitForChar(). | |
2189 */ | |
2190 while (!vim_is_input_buf_full() && RealWaitForChar(read_cmd_fd, 0, NULL)) | |
2191 ; | |
2192 len = inbufcount; | |
2193 inbufcount = 0; | |
2194 # else | |
2195 | |
2196 if (rest != NULL) | |
2197 { | |
2198 /* Use remainder of previous call, starts with an invalid character | |
2199 * that may become valid when reading more. */ | |
2200 if (restlen > INBUFLEN - inbufcount) | |
2201 unconverted = INBUFLEN - inbufcount; | |
2202 else | |
2203 unconverted = restlen; | |
2204 mch_memmove(inbuf + inbufcount, rest, unconverted); | |
2205 if (unconverted == restlen) | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2206 VIM_CLEAR(rest); |
7 | 2207 else |
2208 { | |
2209 restlen -= unconverted; | |
2210 mch_memmove(rest, rest + unconverted, restlen); | |
2211 } | |
2212 inbufcount += unconverted; | |
2213 } | |
2214 else | |
2215 unconverted = 0; | |
2216 | |
2217 len = 0; /* to avoid gcc warning */ | |
2218 for (try = 0; try < 100; ++try) | |
2219 { | |
13758
63679d671ced
patch 8.0.1751: #ifdef causes bad highlighting
Christian Brabandt <cb@256bit.org>
parents:
13448
diff
changeset
|
2220 size_t readlen = (size_t)((INBUFLEN - inbufcount) |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2221 / input_conv.vc_factor); |
13758
63679d671ced
patch 8.0.1751: #ifdef causes bad highlighting
Christian Brabandt <cb@256bit.org>
parents:
13448
diff
changeset
|
2222 # ifdef VMS |
13776
ef6de4674811
patch 8.0.1760: wrong number of arguments to vms_read()
Christian Brabandt <cb@256bit.org>
parents:
13758
diff
changeset
|
2223 len = vms_read((char *)inbuf + inbufcount, readlen); |
13758
63679d671ced
patch 8.0.1751: #ifdef causes bad highlighting
Christian Brabandt <cb@256bit.org>
parents:
13448
diff
changeset
|
2224 # else |
63679d671ced
patch 8.0.1751: #ifdef causes bad highlighting
Christian Brabandt <cb@256bit.org>
parents:
13448
diff
changeset
|
2225 len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen); |
7 | 2226 # endif |
169 | 2227 |
7 | 2228 if (len > 0 || got_int) |
2229 break; | |
2230 /* | |
2231 * If reading stdin results in an error, continue reading stderr. | |
2232 * This helps when using "foo | xargs vim". | |
2233 */ | |
2234 if (!did_read_something && !isatty(read_cmd_fd) && read_cmd_fd == 0) | |
2235 { | |
2236 int m = cur_tmode; | |
2237 | |
2238 /* We probably set the wrong file descriptor to raw mode. Switch | |
2239 * back to cooked mode, use another descriptor and set the mode to | |
2240 * what it was. */ | |
2241 settmode(TMODE_COOK); | |
2242 #ifdef HAVE_DUP | |
2243 /* Use stderr for stdin, also works for shell commands. */ | |
2244 close(0); | |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
13888
diff
changeset
|
2245 vim_ignored = dup(2); |
7 | 2246 #else |
2247 read_cmd_fd = 2; /* read from stderr instead of stdin */ | |
2248 #endif | |
2249 settmode(m); | |
2250 } | |
2251 if (!exit_on_error) | |
2252 return; | |
2253 } | |
2254 # endif | |
2255 if (len <= 0 && !got_int) | |
2256 read_error_exit(); | |
2257 if (len > 0) | |
2258 did_read_something = TRUE; | |
2259 if (got_int) | |
2260 { | |
2261 /* Interrupted, pretend a CTRL-C was typed. */ | |
2262 inbuf[0] = 3; | |
2263 inbufcount = 1; | |
2264 } | |
2265 else | |
2266 { | |
2267 /* | |
2268 * May perform conversion on the input characters. | |
2269 * Include the unconverted rest of the previous call. | |
2270 * If there is an incomplete char at the end it is kept for the next | |
2271 * time, reading more bytes should make conversion possible. | |
2272 * Don't do this in the unlikely event that the input buffer is too | |
2273 * small ("rest" still contains more bytes). | |
2274 */ | |
2275 if (input_conv.vc_type != CONV_NONE) | |
2276 { | |
2277 inbufcount -= unconverted; | |
2278 len = convert_input_safe(inbuf + inbufcount, | |
2279 len + unconverted, INBUFLEN - inbufcount, | |
2280 rest == NULL ? &rest : NULL, &restlen); | |
2281 } | |
2282 while (len-- > 0) | |
2283 { | |
2284 /* | |
2285 * if a CTRL-C was typed, remove it from the buffer and set got_int | |
2286 */ | |
2287 if (inbuf[inbufcount] == 3 && ctrl_c_interrupts) | |
2288 { | |
2289 /* remove everything typed before the CTRL-C */ | |
2290 mch_memmove(inbuf, inbuf + inbufcount, (size_t)(len + 1)); | |
2291 inbufcount = 0; | |
2292 got_int = TRUE; | |
2293 } | |
2294 ++inbufcount; | |
2295 } | |
2296 } | |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
2297 #endif /* UNIX or VMS*/ |
7 | 2298 } |
7408
1886f2863437
commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents:
7208
diff
changeset
|
2299 #endif /* defined(UNIX) || defined(FEAT_GUI) || defined(VMS) */ |
7 | 2300 |
2301 /* | |
2302 * Exit because of an input read error. | |
2303 */ | |
2304 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2305 read_error_exit(void) |
7 | 2306 { |
2307 if (silent_mode) /* Normal way to exit for "ex -s" */ | |
2308 getout(0); | |
2309 STRCPY(IObuff, _("Vim: Error reading input, exiting...\n")); | |
2310 preserve_exit(); | |
2311 } | |
2312 | |
2313 #if defined(CURSOR_SHAPE) || defined(PROTO) | |
2314 /* | |
2315 * May update the shape of the cursor. | |
2316 */ | |
2317 void | |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11709
diff
changeset
|
2318 ui_cursor_shape_forced(int forced) |
7 | 2319 { |
2320 # ifdef FEAT_GUI | |
2321 if (gui.in_use) | |
2322 gui_update_cursor_later(); | |
36 | 2323 else |
7 | 2324 # endif |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11709
diff
changeset
|
2325 term_cursor_mode(forced); |
36 | 2326 |
7 | 2327 # ifdef MCH_CURSOR_SHAPE |
2328 mch_update_cursor(); | |
2329 # 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
|
2330 |
85b7dc8da5eb
Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
2331 # ifdef FEAT_CONCEAL |
13876
156ebdcb8ef5
patch 8.0.1809: various typos
Christian Brabandt <cb@256bit.org>
parents:
13776
diff
changeset
|
2332 conceal_check_cursor_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
|
2333 # endif |
7 | 2334 } |
12076
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11709
diff
changeset
|
2335 |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11709
diff
changeset
|
2336 void |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11709
diff
changeset
|
2337 ui_cursor_shape(void) |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11709
diff
changeset
|
2338 { |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11709
diff
changeset
|
2339 ui_cursor_shape_forced(FALSE); |
ca4931a20f8c
patch 8.0.0918: cannot get terminal window cursor shape or attributes
Christian Brabandt <cb@256bit.org>
parents:
11709
diff
changeset
|
2340 } |
7 | 2341 #endif |
2342 | |
2343 /* | |
2344 * Check bounds for column number | |
2345 */ | |
2346 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2347 check_col(int col) |
7 | 2348 { |
2349 if (col < 0) | |
2350 return 0; | |
2351 if (col >= (int)screen_Columns) | |
2352 return (int)screen_Columns - 1; | |
2353 return col; | |
2354 } | |
2355 | |
2356 /* | |
2357 * Check bounds for row number | |
2358 */ | |
2359 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2360 check_row(int row) |
7 | 2361 { |
2362 if (row < 0) | |
2363 return 0; | |
2364 if (row >= (int)screen_Rows) | |
2365 return (int)screen_Rows - 1; | |
2366 return row; | |
2367 } | |
2368 | |
2369 /* | |
2370 * Stuff for the X clipboard. Shared between VMS and Unix. | |
2371 */ | |
2372 | |
2373 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) || defined(PROTO) | |
2374 # include <X11/Xatom.h> | |
2375 # include <X11/Intrinsic.h> | |
2376 | |
2377 /* | |
2378 * Open the application context (if it hasn't been opened yet). | |
2379 * Used for Motif and Athena GUI and the xterm clipboard. | |
2380 */ | |
2381 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2382 open_app_context(void) |
7 | 2383 { |
2384 if (app_context == NULL) | |
2385 { | |
2386 XtToolkitInitialize(); | |
2387 app_context = XtCreateApplicationContext(); | |
2388 } | |
2389 } | |
2390 | |
2391 static Atom vim_atom; /* Vim's own special selection format */ | |
2392 static Atom vimenc_atom; /* Vim's extended selection format */ | |
3346 | 2393 static Atom utf8_atom; |
7 | 2394 static Atom compound_text_atom; |
2395 static Atom text_atom; | |
2396 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
|
2397 static Atom timestamp_atom; /* Used to get a timestamp */ |
7 | 2398 |
2399 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2400 x11_setup_atoms(Display *dpy) |
7 | 2401 { |
2402 vim_atom = XInternAtom(dpy, VIM_ATOM_NAME, False); | |
2403 vimenc_atom = XInternAtom(dpy, VIMENC_ATOM_NAME,False); | |
3346 | 2404 utf8_atom = XInternAtom(dpy, "UTF8_STRING", False); |
7 | 2405 compound_text_atom = XInternAtom(dpy, "COMPOUND_TEXT", False); |
2406 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
|
2407 targets_atom = XInternAtom(dpy, "TARGETS", False); |
7 | 2408 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
|
2409 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
|
2410 timestamp_atom = XInternAtom(dpy, "TIMESTAMP", False); |
7 | 2411 } |
2412 | |
2413 /* | |
2414 * X Selection stuff, for cutting and pasting text to other windows. | |
2415 */ | |
2416 | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2417 static Boolean clip_x11_convert_selection_cb(Widget w, Atom *sel_atom, Atom *target, Atom *type, XtPointer *value, long_u *length, int *format); |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2418 static void clip_x11_lose_ownership_cb(Widget w, Atom *sel_atom); |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2419 static void clip_x11_notify_cb(Widget w, Atom *sel_atom, Atom *target); |
2270
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2420 |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2421 /* |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2422 * 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
|
2423 */ |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2424 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2425 clip_x11_timestamp_cb( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2426 Widget w, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2427 XtPointer n UNUSED, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2428 XEvent *event, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2429 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
|
2430 { |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2431 Atom actual_type; |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2432 int format; |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2433 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
|
2434 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
|
2435 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
|
2436 |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2437 /* 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
|
2438 * 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
|
2439 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
|
2440 || (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
|
2441 && 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
|
2442 return; |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2443 |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2444 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
|
2445 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
|
2446 &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
|
2447 return; |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2448 |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2449 if (prop) |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2450 XFree(prop); |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2451 |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2452 /* 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
|
2453 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
|
2454 return; |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2455 |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2456 /* Get the selection, using the event timestamp. */ |
2586 | 2457 if (XtOwnSelection(w, xproperty->atom, xproperty->time, |
2458 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb, | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2459 clip_x11_notify_cb) == OK) |
2586 | 2460 { |
2461 /* Set the "owned" flag now, there may have been a call to | |
2462 * lose_ownership_cb in between. */ | |
2463 if (xproperty->atom == clip_plus.sel_atom) | |
2464 clip_plus.owned = TRUE; | |
2465 else | |
2466 clip_star.owned = TRUE; | |
2467 } | |
2270
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2468 } |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2469 |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2470 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2471 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
|
2472 { |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2473 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
|
2474 /*(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
|
2475 } |
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2476 |
7 | 2477 static void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2478 clip_x11_request_selection_cb( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2479 Widget w UNUSED, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2480 XtPointer success, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2481 Atom *sel_atom, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2482 Atom *type, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2483 XtPointer value, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2484 long_u *length, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2485 int *format) |
7 | 2486 { |
2896 | 2487 int motion_type = MAUTO; |
7 | 2488 long_u len; |
2489 char_u *p; | |
2490 char **text_list = NULL; | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
2491 Clipboard_T *cbd; |
7 | 2492 char_u *tmpbuf = NULL; |
2493 | |
2494 if (*sel_atom == clip_plus.sel_atom) | |
2495 cbd = &clip_plus; | |
2496 else | |
2497 cbd = &clip_star; | |
2498 | |
2499 if (value == NULL || *length == 0) | |
2500 { | |
1719 | 2501 clip_free_selection(cbd); /* nothing received, clear register */ |
7 | 2502 *(int *)success = FALSE; |
2503 return; | |
2504 } | |
2505 p = (char_u *)value; | |
2506 len = *length; | |
2507 if (*type == vim_atom) | |
2508 { | |
2509 motion_type = *p++; | |
2510 len--; | |
2511 } | |
2512 | |
2513 else if (*type == vimenc_atom) | |
2514 { | |
2515 char_u *enc; | |
2516 vimconv_T conv; | |
2517 int convlen; | |
2518 | |
2519 motion_type = *p++; | |
2520 --len; | |
2521 | |
2522 enc = p; | |
2523 p += STRLEN(p) + 1; | |
2524 len -= p - enc; | |
2525 | |
2526 /* If the encoding of the text is different from 'encoding', attempt | |
2527 * converting it. */ | |
2528 conv.vc_type = CONV_NONE; | |
2529 convert_setup(&conv, enc, p_enc); | |
2530 if (conv.vc_type != CONV_NONE) | |
2531 { | |
2532 convlen = len; /* Need to use an int here. */ | |
2533 tmpbuf = string_convert(&conv, p, &convlen); | |
2534 len = convlen; | |
2535 if (tmpbuf != NULL) | |
2536 p = tmpbuf; | |
2537 convert_setup(&conv, NULL, NULL); | |
2538 } | |
2539 } | |
2540 | |
3346 | 2541 else if (*type == compound_text_atom |
2542 || *type == utf8_atom | |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2543 || (enc_dbcs != 0 && *type == text_atom)) |
7 | 2544 { |
2545 XTextProperty text_prop; | |
2546 int n_text = 0; | |
2547 int status; | |
2548 | |
2549 text_prop.value = (unsigned char *)value; | |
2550 text_prop.encoding = *type; | |
2551 text_prop.format = *format; | |
1719 | 2552 text_prop.nitems = len; |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2553 #if defined(X_HAVE_UTF8_STRING) |
4201 | 2554 if (*type == utf8_atom) |
2555 status = Xutf8TextPropertyToTextList(X_DISPLAY, &text_prop, | |
2556 &text_list, &n_text); | |
2557 else | |
2558 #endif | |
2559 status = XmbTextPropertyToTextList(X_DISPLAY, &text_prop, | |
7 | 2560 &text_list, &n_text); |
2561 if (status != Success || n_text < 1) | |
2562 { | |
2563 *(int *)success = FALSE; | |
2564 return; | |
2565 } | |
2566 p = (char_u *)text_list[0]; | |
2567 len = STRLEN(p); | |
2568 } | |
2569 clip_yank_selection(motion_type, p, (long)len, cbd); | |
2570 | |
2571 if (text_list != NULL) | |
2572 XFreeStringList(text_list); | |
2573 vim_free(tmpbuf); | |
2574 XtFree((char *)value); | |
2575 *(int *)success = TRUE; | |
2576 } | |
2577 | |
2578 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2579 clip_x11_request_selection( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2580 Widget myShell, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2581 Display *dpy, |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
2582 Clipboard_T *cbd) |
7 | 2583 { |
2584 XEvent event; | |
2585 Atom type; | |
2586 static int success; | |
2587 int i; | |
1715 | 2588 time_t start_time; |
2589 int timed_out = FALSE; | |
7 | 2590 |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2591 for (i = 0; i < 6; i++) |
7 | 2592 { |
2593 switch (i) | |
2594 { | |
2595 case 0: type = vimenc_atom; break; | |
2596 case 1: type = vim_atom; break; | |
3346 | 2597 case 2: type = utf8_atom; break; |
2598 case 3: type = compound_text_atom; break; | |
2599 case 4: type = text_atom; break; | |
7 | 2600 default: type = XA_STRING; |
2601 } | |
4272 | 2602 if (type == utf8_atom |
2603 # if defined(X_HAVE_UTF8_STRING) | |
2604 && !enc_utf8 | |
2605 # endif | |
2606 ) | |
2607 /* Only request utf-8 when 'encoding' is utf8 and | |
2608 * Xutf8TextPropertyToTextList is available. */ | |
3346 | 2609 continue; |
1719 | 2610 success = MAYBE; |
7 | 2611 XtGetSelectionValue(myShell, cbd->sel_atom, type, |
2612 clip_x11_request_selection_cb, (XtPointer)&success, CurrentTime); | |
2613 | |
2614 /* Make sure the request for the selection goes out before waiting for | |
2615 * a response. */ | |
2616 XFlush(dpy); | |
2617 | |
2618 /* | |
2619 * Wait for result of selection request, otherwise if we type more | |
2620 * characters, then they will appear before the one that requested the | |
2621 * paste! Don't worry, we will catch up with any other events later. | |
2622 */ | |
1715 | 2623 start_time = time(NULL); |
1719 | 2624 while (success == MAYBE) |
7 | 2625 { |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2626 if (XCheckTypedEvent(dpy, PropertyNotify, &event) |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2627 || XCheckTypedEvent(dpy, SelectionNotify, &event) |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2628 || XCheckTypedEvent(dpy, SelectionRequest, &event)) |
1715 | 2629 { |
1719 | 2630 /* This is where clip_x11_request_selection_cb() should be |
2631 * called. It may actually happen a bit later, so we loop | |
2632 * until "success" changes. | |
2633 * We may get a SelectionRequest here and if we don't handle | |
2634 * it we hang. KDE klipper does this, for example. | |
2635 * We need to handle a PropertyNotify for large selections. */ | |
1715 | 2636 XtDispatchEvent(&event); |
1719 | 2637 continue; |
1715 | 2638 } |
7 | 2639 |
1715 | 2640 /* Time out after 2 to 3 seconds to avoid that we hang when the |
2641 * other process doesn't respond. Note that the SelectionNotify | |
2642 * event may still come later when the selection owner comes back | |
1719 | 2643 * to life and the text gets inserted unexpectedly. Don't know |
2644 * why that happens or how to avoid that :-(. */ | |
1715 | 2645 if (time(NULL) > start_time + 2) |
2646 { | |
2647 timed_out = TRUE; | |
2648 break; | |
2649 } | |
2650 | |
7 | 2651 /* Do we need this? Probably not. */ |
2652 XSync(dpy, False); | |
2653 | |
1715 | 2654 /* Wait for 1 msec to avoid that we eat up all CPU time. */ |
2655 ui_delay(1L, TRUE); | |
7 | 2656 } |
2657 | |
1719 | 2658 if (success == TRUE) |
7 | 2659 return; |
1715 | 2660 |
2661 /* don't do a retry with another type after timing out, otherwise we | |
2662 * hang for 15 seconds. */ | |
2663 if (timed_out) | |
2664 break; | |
7 | 2665 } |
2666 | |
2667 /* Final fallback position - use the X CUT_BUFFER0 store */ | |
1924 | 2668 yank_cut_buffer0(dpy, cbd); |
7 | 2669 } |
2670 | |
2671 static Boolean | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2672 clip_x11_convert_selection_cb( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2673 Widget w UNUSED, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2674 Atom *sel_atom, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2675 Atom *target, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2676 Atom *type, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2677 XtPointer *value, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2678 long_u *length, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2679 int *format) |
7 | 2680 { |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2681 static char_u *save_result = NULL; |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2682 static long_u save_length = 0; |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2683 char_u *string; |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2684 int motion_type; |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
2685 Clipboard_T *cbd; |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2686 int i; |
7 | 2687 |
2688 if (*sel_atom == clip_plus.sel_atom) | |
2689 cbd = &clip_plus; | |
2690 else | |
2691 cbd = &clip_star; | |
2692 | |
2693 if (!cbd->owned) | |
2694 return False; /* Shouldn't ever happen */ | |
2695 | |
2696 /* requestor wants to know what target types we support */ | |
2697 if (*target == targets_atom) | |
2698 { | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2699 static Atom array[7]; |
7 | 2700 |
2701 *value = (XtPointer)array; | |
2702 i = 0; | |
2703 array[i++] = targets_atom; | |
2704 array[i++] = vimenc_atom; | |
2705 array[i++] = vim_atom; | |
3346 | 2706 if (enc_utf8) |
2707 array[i++] = utf8_atom; | |
2708 array[i++] = XA_STRING; | |
7 | 2709 array[i++] = text_atom; |
2710 array[i++] = compound_text_atom; | |
3346 | 2711 |
7 | 2712 *type = XA_ATOM; |
2713 /* This used to be: *format = sizeof(Atom) * 8; but that caused | |
2714 * crashes on 64 bit machines. (Peter Derr) */ | |
2715 *format = 32; | |
2716 *length = i; | |
2717 return True; | |
2718 } | |
2719 | |
2720 if ( *target != XA_STRING | |
2721 && *target != vimenc_atom | |
5956 | 2722 && (*target != utf8_atom || !enc_utf8) |
7 | 2723 && *target != vim_atom |
2724 && *target != text_atom | |
2725 && *target != compound_text_atom) | |
2726 return False; | |
2727 | |
2728 clip_get_selection(cbd); | |
2729 motion_type = clip_convert_selection(&string, length, cbd); | |
2730 if (motion_type < 0) | |
2731 return False; | |
2732 | |
2733 /* For our own format, the first byte contains the motion type */ | |
2734 if (*target == vim_atom) | |
2735 (*length)++; | |
2736 | |
2737 /* Our own format with encoding: motion 'encoding' NUL text */ | |
2738 if (*target == vimenc_atom) | |
2739 *length += STRLEN(p_enc) + 2; | |
2740 | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2741 if (save_length < *length || save_length / 2 >= *length) |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2742 *value = XtRealloc((char *)save_result, (Cardinal)*length + 1); |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2743 else |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2744 *value = save_result; |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2745 if (*value == NULL) |
7 | 2746 { |
2747 vim_free(string); | |
2748 return False; | |
2749 } | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2750 save_result = (char_u *)*value; |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2751 save_length = *length; |
7 | 2752 |
15605
62b3805506b3
patch 8.1.0810: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
2753 if (*target == XA_STRING || (*target == utf8_atom && enc_utf8)) |
7 | 2754 { |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2755 mch_memmove(save_result, string, (size_t)(*length)); |
3346 | 2756 *type = *target; |
7 | 2757 } |
3346 | 2758 else if (*target == compound_text_atom || *target == text_atom) |
7 | 2759 { |
2760 XTextProperty text_prop; | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2761 char *string_nt = (char *)save_result; |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4272
diff
changeset
|
2762 int conv_result; |
7 | 2763 |
2764 /* create NUL terminated string which XmbTextListToTextProperty wants */ | |
2765 mch_memmove(string_nt, string, (size_t)*length); | |
2766 string_nt[*length] = NUL; | |
5037
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4272
diff
changeset
|
2767 conv_result = XmbTextListToTextProperty(X_DISPLAY, (char **)&string_nt, |
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4272
diff
changeset
|
2768 1, XCompoundTextStyle, &text_prop); |
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4272
diff
changeset
|
2769 if (conv_result != Success) |
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4272
diff
changeset
|
2770 { |
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4272
diff
changeset
|
2771 vim_free(string); |
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4272
diff
changeset
|
2772 return False; |
5e0b6a9282df
updated for version 7.3.1262
Bram Moolenaar <bram@vim.org>
parents:
4272
diff
changeset
|
2773 } |
7 | 2774 *value = (XtPointer)(text_prop.value); /* from plain text */ |
2775 *length = text_prop.nitems; | |
2776 *type = compound_text_atom; | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2777 XtFree((char *)save_result); |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2778 save_result = (char_u *)*value; |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2779 save_length = *length; |
7 | 2780 } |
2781 else if (*target == vimenc_atom) | |
2782 { | |
2783 int l = STRLEN(p_enc); | |
2784 | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2785 save_result[0] = motion_type; |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2786 STRCPY(save_result + 1, p_enc); |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2787 mch_memmove(save_result + l + 2, string, (size_t)(*length - l - 2)); |
7 | 2788 *type = vimenc_atom; |
2789 } | |
2790 else | |
2791 { | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2792 save_result[0] = motion_type; |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2793 mch_memmove(save_result + 1, string, (size_t)(*length - 1)); |
7 | 2794 *type = vim_atom; |
2795 } | |
2796 *format = 8; /* 8 bits per char */ | |
2797 vim_free(string); | |
2798 return True; | |
2799 } | |
2800 | |
2801 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2802 clip_x11_lose_ownership_cb(Widget w UNUSED, Atom *sel_atom) |
7 | 2803 { |
2804 if (*sel_atom == clip_plus.sel_atom) | |
2805 clip_lose_selection(&clip_plus); | |
2806 else | |
2807 clip_lose_selection(&clip_star); | |
2808 } | |
2809 | |
2810 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
2811 clip_x11_lose_selection(Widget myShell, Clipboard_T *cbd) |
7 | 2812 { |
4209 | 2813 XtDisownSelection(myShell, cbd->sel_atom, |
2814 XtLastTimestampProcessed(XtDisplay(myShell))); | |
7 | 2815 } |
2816 | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2817 static void |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2818 clip_x11_notify_cb(Widget w UNUSED, Atom *sel_atom UNUSED, Atom *target UNUSED) |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2819 { |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2820 /* To prevent automatically freeing the selection value. */ |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2821 } |
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2822 |
7 | 2823 int |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
2824 clip_x11_own_selection(Widget myShell, Clipboard_T *cbd) |
7 | 2825 { |
2586 | 2826 /* When using the GUI we have proper timestamps, use the one of the last |
2827 * event. When in the console we don't get events (the terminal gets | |
2828 * them), Get the time by a zero-length append, clip_x11_timestamp_cb will | |
2829 * be called with the current timestamp. */ | |
2830 #ifdef FEAT_GUI | |
2831 if (gui.in_use) | |
2832 { | |
2833 if (XtOwnSelection(myShell, cbd->sel_atom, | |
2834 XtLastTimestampProcessed(XtDisplay(myShell)), | |
2835 clip_x11_convert_selection_cb, clip_x11_lose_ownership_cb, | |
11709
c3227699ad4d
patch 8.0.0737: crash when X11 selection is very big
Christian Brabandt <cb@256bit.org>
parents:
11273
diff
changeset
|
2836 clip_x11_notify_cb) == False) |
3312 | 2837 return FAIL; |
2586 | 2838 } |
2839 else | |
2840 #endif | |
2841 { | |
2842 if (!XChangeProperty(XtDisplay(myShell), XtWindow(myShell), | |
2843 cbd->sel_atom, timestamp_atom, 32, PropModeAppend, NULL, 0)) | |
3312 | 2844 return FAIL; |
2586 | 2845 } |
2270
917fff7bc09d
Fixes for time in clipboard request. Also fix ownership. (David Fries)
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
2846 /* 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
|
2847 XFlush(XtDisplay(myShell)); |
7 | 2848 return OK; |
2849 } | |
2850 | |
2851 /* | |
2852 * Send the current selection to the clipboard. Do nothing for X because we | |
2853 * will fill in the selection only when requested by another app. | |
2854 */ | |
2855 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
2856 clip_x11_set_selection(Clipboard_T *cbd UNUSED) |
7 | 2857 { |
2858 } | |
4209 | 2859 |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2860 #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) \ |
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2861 || defined(PROTO) |
17789
0f7ae8010787
patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents:
17754
diff
changeset
|
2862 static int |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
2863 clip_x11_owner_exists(Clipboard_T *cbd) |
4209 | 2864 { |
2865 return XGetSelectionOwner(X_DISPLAY, cbd->sel_atom) != None; | |
2866 } | |
7 | 2867 #endif |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
2868 #endif |
7 | 2869 |
1924 | 2870 #if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11) \ |
2871 || defined(FEAT_GUI_GTK) || defined(PROTO) | |
2872 /* | |
2873 * Get the contents of the X CUT_BUFFER0 and put it in "cbd". | |
2874 */ | |
2875 void | |
17063
3147c7c2e86b
patch 8.1.1531: clipboard type name is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
17051
diff
changeset
|
2876 yank_cut_buffer0(Display *dpy, Clipboard_T *cbd) |
1924 | 2877 { |
2878 int nbytes = 0; | |
2879 char_u *buffer = (char_u *)XFetchBuffer(dpy, &nbytes, 0); | |
2880 | |
2881 if (nbytes > 0) | |
2882 { | |
2883 int done = FALSE; | |
2884 | |
2885 /* CUT_BUFFER0 is supposed to be always latin1. Convert to 'enc' when | |
2886 * using a multi-byte encoding. Conversion between two 8-bit | |
2887 * character sets usually fails and the text might actually be in | |
2888 * 'enc' anyway. */ | |
2889 if (has_mbyte) | |
2890 { | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1961
diff
changeset
|
2891 char_u *conv_buf; |
1924 | 2892 vimconv_T vc; |
2893 | |
2894 vc.vc_type = CONV_NONE; | |
2895 if (convert_setup(&vc, (char_u *)"latin1", p_enc) == OK) | |
2896 { | |
2897 conv_buf = string_convert(&vc, buffer, &nbytes); | |
2898 if (conv_buf != NULL) | |
2899 { | |
2900 clip_yank_selection(MCHAR, conv_buf, (long)nbytes, cbd); | |
2901 vim_free(conv_buf); | |
2902 done = TRUE; | |
2903 } | |
2904 convert_setup(&vc, NULL, NULL); | |
2905 } | |
2906 } | |
2907 if (!done) /* use the text without conversion */ | |
2908 clip_yank_selection(MCHAR, buffer, (long)nbytes, cbd); | |
2909 XFree((void *)buffer); | |
2910 if (p_verbose > 0) | |
2911 { | |
2912 verbose_enter(); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
2913 verb_msg(_("Used CUT_BUFFER0 instead of empty selection")); |
1924 | 2914 verbose_leave(); |
2915 } | |
2916 } | |
2917 } | |
2918 #endif | |
2919 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15665
diff
changeset
|
2920 #if defined(FEAT_GUI) || defined(MSWIN) || defined(PROTO) |
7 | 2921 /* |
2922 * Called when focus changed. Used for the GUI or for systems where this can | |
2923 * be done in the console (Win32). | |
2924 */ | |
2925 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2926 ui_focus_change( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2927 int in_focus) /* TRUE if focus gained. */ |
7 | 2928 { |
2929 static time_t last_time = (time_t)0; | |
2930 int need_redraw = FALSE; | |
2931 | |
2932 /* When activated: Check if any file was modified outside of Vim. | |
2933 * Only do this when not done within the last two seconds (could get | |
2934 * several events in a row). */ | |
2935 if (in_focus && last_time + 2 < time(NULL)) | |
2936 { | |
2937 need_redraw = check_timestamps( | |
2938 # ifdef FEAT_GUI | |
2939 gui.in_use | |
2940 # else | |
2941 FALSE | |
2942 # endif | |
2943 ); | |
2944 last_time = time(NULL); | |
2945 } | |
2946 | |
2947 /* | |
2948 * Fire the focus gained/lost autocommand. | |
2949 */ | |
2950 need_redraw |= apply_autocmds(in_focus ? EVENT_FOCUSGAINED | |
2951 : EVENT_FOCUSLOST, NULL, NULL, FALSE, curbuf); | |
2952 | |
2953 if (need_redraw) | |
2954 { | |
2955 /* Something was executed, make sure the cursor is put back where it | |
2956 * belongs. */ | |
2957 need_wait_return = FALSE; | |
2958 | |
2959 if (State & CMDLINE) | |
2960 redrawcmdline(); | |
2961 else if (State == HITRETURN || State == SETWSIZE || State == ASKMORE | |
2962 || State == EXTERNCMD || State == CONFIRM || exmode_active) | |
2963 repeat_message(); | |
2964 else if ((State & NORMAL) || (State & INSERT)) | |
2965 { | |
2966 if (must_redraw != 0) | |
2967 update_screen(0); | |
2968 setcursor(); | |
2969 } | |
2970 cursor_on(); /* redrawing may have switched it off */ | |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
13060
diff
changeset
|
2971 out_flush_cursor(FALSE, TRUE); |
7 | 2972 # ifdef FEAT_GUI |
2973 if (gui.in_use) | |
2974 gui_update_scrollbars(FALSE); | |
2975 # endif | |
2976 } | |
2977 #ifdef FEAT_TITLE | |
2978 /* File may have been changed from 'readonly' to 'noreadonly' */ | |
2979 if (need_maketitle) | |
2980 maketitle(); | |
2981 #endif | |
2982 } | |
2983 #endif | |
2984 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13373
diff
changeset
|
2985 #if defined(HAVE_INPUT_METHOD) || defined(PROTO) |
7 | 2986 /* |
2987 * Save current Input Method status to specified place. | |
2988 */ | |
2989 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2990 im_save_status(long *psave) |
7 | 2991 { |
2992 /* Don't save when 'imdisable' is set or "xic" is NULL, IM is always | |
2993 * disabled then (but might start later). | |
2994 * Also don't save when inside a mapping, vgetc_im_active has not been set | |
2995 * then. | |
2996 * And don't save when the keys were stuffed (e.g., for a "." command). | |
2997 * And don't save when the GUI is running but our window doesn't have | |
2998 * input focus (e.g., when a find dialog is open). */ | |
2999 if (!p_imdisable && KeyTyped && !KeyStuffed | |
3000 # ifdef FEAT_XIM | |
3001 && xic != NULL | |
3002 # endif | |
3003 # ifdef FEAT_GUI | |
3004 && (!gui.in_use || gui.in_focus) | |
3005 # endif | |
3006 ) | |
3007 { | |
3008 /* Do save when IM is on, or IM is off and saved status is on. */ | |
3009 if (vgetc_im_active) | |
3010 *psave = B_IMODE_IM; | |
3011 else if (*psave == B_IMODE_IM) | |
3012 *psave = B_IMODE_NONE; | |
3013 } | |
3014 } | |
3015 #endif |