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