blob: 197cdca76a7b933262927586ecb6966c88b104e9 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar4b779472005-10-04 09:12:31 +00002 *
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/*
Bram Moolenaar30e8e732019-09-27 13:08:36 +020011 * popupmenu.c: Popup menu (PUM)
Bram Moolenaar4b779472005-10-04 09:12:31 +000012 */
13#include "vim.h"
14
Bram Moolenaar63d9e732019-12-05 21:10:38 +010015static pumitem_T *pum_array = NULL; // items of displayed pum
16static int pum_size; // nr of items in "pum_array"
17static int pum_selected; // index of selected item or -1
18static int pum_first = 0; // index of top item
Bram Moolenaar4b779472005-10-04 09:12:31 +000019
Bram Moolenaarae654382019-01-17 21:09:05 +010020static int call_update_screen = FALSE;
21
Bram Moolenaar63d9e732019-12-05 21:10:38 +010022static int pum_height; // nr of displayed pum items
23static int pum_width; // width of displayed pum items
24static int pum_base_width; // width of pum items base
25static int pum_kind_width; // width of pum items kind column
26static int pum_extra_width; // width of extra stuff
27static int pum_scrollbar; // TRUE when scrollbar present
Bram Moolenaar4b779472005-10-04 09:12:31 +000028
Bram Moolenaar63d9e732019-12-05 21:10:38 +010029static int pum_row; // top row of pum
30static int pum_col; // left column of pum
Bram Moolenaar4b779472005-10-04 09:12:31 +000031
Bram Moolenaar0e6e1792018-06-17 17:10:59 +020032static win_T *pum_window = NULL;
Bram Moolenaar491ac282018-06-17 14:47:55 +020033static int pum_win_row;
34static int pum_win_height;
35static int pum_win_col;
36static int pum_win_wcol;
37static int pum_win_width;
38
Bram Moolenaar04357fb2019-12-10 21:50:56 +010039// Some parts are not updated when a popup menu is visible. Setting this flag
40// makes pum_visible() return FALSE even when there is a popup menu.
41static int pum_pretend_not_visible = FALSE;
42
43// When set the popup menu will redraw soon using the pum_win_ values. Do not
44// draw over the poup menu area to avoid flicker.
45static int pum_will_redraw = FALSE;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +000046
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010047static int pum_set_selected(int n, int repeat);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +000048
Bram Moolenaar4b779472005-10-04 09:12:31 +000049#define PUM_DEF_HEIGHT 10
Bram Moolenaar4b779472005-10-04 09:12:31 +000050
Bram Moolenaar51b0f372017-11-18 18:52:04 +010051 static void
52pum_compute_size(void)
53{
54 int i;
55 int w;
56
Bram Moolenaar63d9e732019-12-05 21:10:38 +010057 // Compute the width of the widest match and the widest extra.
Bram Moolenaar51b0f372017-11-18 18:52:04 +010058 pum_base_width = 0;
59 pum_kind_width = 0;
60 pum_extra_width = 0;
61 for (i = 0; i < pum_size; ++i)
62 {
Bram Moolenaard58a6622020-05-02 14:52:57 +020063 if (pum_array[i].pum_text != NULL)
64 {
65 w = vim_strsize(pum_array[i].pum_text);
66 if (pum_base_width < w)
67 pum_base_width = w;
68 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +010069 if (pum_array[i].pum_kind != NULL)
70 {
71 w = vim_strsize(pum_array[i].pum_kind) + 1;
72 if (pum_kind_width < w)
73 pum_kind_width = w;
74 }
75 if (pum_array[i].pum_extra != NULL)
76 {
77 w = vim_strsize(pum_array[i].pum_extra) + 1;
78 if (pum_extra_width < w)
79 pum_extra_width = w;
80 }
81 }
82}
83
Bram Moolenaar4b779472005-10-04 09:12:31 +000084/*
85 * Show the popup menu with items "array[size]".
86 * "array" must remain valid until pum_undisplay() is called!
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +010087 * When possible the leftmost character is aligned with cursor column.
Bram Moolenaar4b779472005-10-04 09:12:31 +000088 * The menu appears above the screen line "row" or at "row" + "height" - 1.
89 */
90 void
Bram Moolenaar05540972016-01-30 20:31:25 +010091pum_display(
92 pumitem_T *array,
93 int size,
Bram Moolenaar63d9e732019-12-05 21:10:38 +010094 int selected) // index of initially selected item, none if
95 // out of range
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +000096{
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +000097 int def_width;
98 int max_width;
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +000099 int context_lines;
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100100 int cursor_col;
Bram Moolenaar91e44a32016-11-04 20:08:52 +0100101 int above_row;
102 int below_row;
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000103 int redo_count = 0;
Bram Moolenaar4033c552017-09-16 20:54:51 +0200104#if defined(FEAT_QUICKFIX)
Bram Moolenaar91e44a32016-11-04 20:08:52 +0100105 win_T *pvwin;
Bram Moolenaaraab33832016-11-04 22:08:29 +0100106#endif
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000107
Bram Moolenaara5e66212017-09-29 22:42:33 +0200108 do
109 {
Bram Moolenaar42443c72018-02-10 18:28:52 +0100110 def_width = p_pw;
Bram Moolenaara5e66212017-09-29 22:42:33 +0200111 above_row = 0;
112 below_row = cmdline_row;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000113
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100114 // Pretend the pum is already there to avoid that must_redraw is set
115 // when 'cuc' is on.
Bram Moolenaara5e66212017-09-29 22:42:33 +0200116 pum_array = (pumitem_T *)1;
117 validate_cursor_col();
118 pum_array = NULL;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000119
Bram Moolenaar491ac282018-06-17 14:47:55 +0200120 // Remember the essential parts of the window position and size, so we
121 // can decide when to reposition the popup menu.
Bram Moolenaar0e6e1792018-06-17 17:10:59 +0200122 pum_window = curwin;
Bram Moolenaar491ac282018-06-17 14:47:55 +0200123 pum_win_row = curwin->w_wrow + W_WINROW(curwin);
124 pum_win_height = curwin->w_height;
125 pum_win_col = curwin->w_wincol;
126 pum_win_wcol = curwin->w_wcol;
127 pum_win_width = curwin->w_width;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000128
Bram Moolenaar4033c552017-09-16 20:54:51 +0200129#if defined(FEAT_QUICKFIX)
Bram Moolenaara5e66212017-09-29 22:42:33 +0200130 FOR_ALL_WINDOWS(pvwin)
131 if (pvwin->w_p_pvw)
132 break;
133 if (pvwin != NULL)
134 {
135 if (W_WINROW(pvwin) < W_WINROW(curwin))
136 above_row = W_WINROW(pvwin) + pvwin->w_height;
137 else if (W_WINROW(pvwin) > W_WINROW(curwin) + curwin->w_height)
138 below_row = W_WINROW(pvwin);
139 }
Bram Moolenaar0106e3d2016-02-23 18:55:43 +0100140#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000141
Bram Moolenaara5e66212017-09-29 22:42:33 +0200142 /*
143 * Figure out the size and position of the pum.
144 */
145 if (size < PUM_DEF_HEIGHT)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000146 pum_height = size;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000147 else
Bram Moolenaara5e66212017-09-29 22:42:33 +0200148 pum_height = PUM_DEF_HEIGHT;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000149 if (p_ph > 0 && pum_height > p_ph)
150 pum_height = p_ph;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000151
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100152 // Put the pum below "pum_win_row" if possible. If there are few lines
153 // decide on where there is more room.
Bram Moolenaar491ac282018-06-17 14:47:55 +0200154 if (pum_win_row + 2 >= below_row - pum_height
155 && pum_win_row - above_row > (below_row - above_row) / 2)
Bram Moolenaara5e66212017-09-29 22:42:33 +0200156 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100157 // pum above "pum_win_row"
Bram Moolenaara5e66212017-09-29 22:42:33 +0200158
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100159 // Leave two lines of context if possible
Bram Moolenaara5e66212017-09-29 22:42:33 +0200160 if (curwin->w_wrow - curwin->w_cline_row >= 2)
161 context_lines = 2;
162 else
163 context_lines = curwin->w_wrow - curwin->w_cline_row;
164
Bram Moolenaar491ac282018-06-17 14:47:55 +0200165 if (pum_win_row >= size + context_lines)
Bram Moolenaara5e66212017-09-29 22:42:33 +0200166 {
Bram Moolenaar491ac282018-06-17 14:47:55 +0200167 pum_row = pum_win_row - size - context_lines;
Bram Moolenaara5e66212017-09-29 22:42:33 +0200168 pum_height = size;
169 }
170 else
171 {
172 pum_row = 0;
Bram Moolenaar491ac282018-06-17 14:47:55 +0200173 pum_height = pum_win_row - context_lines;
Bram Moolenaara5e66212017-09-29 22:42:33 +0200174 }
175 if (p_ph > 0 && pum_height > p_ph)
176 {
177 pum_row += pum_height - p_ph;
178 pum_height = p_ph;
179 }
180 }
181 else
182 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100183 // pum below "pum_win_row"
Bram Moolenaara5e66212017-09-29 22:42:33 +0200184
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100185 // Leave two lines of context if possible
Bram Moolenaar09dd2bb2019-12-14 18:42:15 +0100186 validate_cheight();
Bram Moolenaara5e66212017-09-29 22:42:33 +0200187 if (curwin->w_cline_row
188 + curwin->w_cline_height - curwin->w_wrow >= 3)
189 context_lines = 3;
190 else
191 context_lines = curwin->w_cline_row
192 + curwin->w_cline_height - curwin->w_wrow;
193
Bram Moolenaar491ac282018-06-17 14:47:55 +0200194 pum_row = pum_win_row + context_lines;
Bram Moolenaara5e66212017-09-29 22:42:33 +0200195 if (size > below_row - pum_row)
196 pum_height = below_row - pum_row;
197 else
198 pum_height = size;
199 if (p_ph > 0 && pum_height > p_ph)
200 pum_height = p_ph;
201 }
202
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100203 // don't display when we only have room for one line
Bram Moolenaara5e66212017-09-29 22:42:33 +0200204 if (pum_height < 1 || (pum_height == 1 && size > 1))
205 return;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000206
Bram Moolenaar4033c552017-09-16 20:54:51 +0200207#if defined(FEAT_QUICKFIX)
Bram Moolenaar614ab8a2018-12-01 11:59:00 +0100208 // If there is a preview window above avoid drawing over it.
209 if (pvwin != NULL && pum_row < above_row && pum_height > above_row)
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000210 {
Bram Moolenaar614ab8a2018-12-01 11:59:00 +0100211 pum_row = above_row;
212 pum_height = pum_win_row - above_row;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000213 }
Bram Moolenaara5e66212017-09-29 22:42:33 +0200214#endif
215
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100216 pum_array = array;
217 pum_size = size;
218 pum_compute_size();
219 max_width = pum_base_width;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000220
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100221 // Calculate column
Bram Moolenaarabc97732007-08-08 20:49:37 +0000222#ifdef FEAT_RIGHTLEFT
223 if (curwin->w_p_rl)
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100224 cursor_col = curwin->w_wincol + curwin->w_width
225 - curwin->w_wcol - 1;
Bram Moolenaarabc97732007-08-08 20:49:37 +0000226 else
227#endif
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100228 cursor_col = curwin->w_wincol + curwin->w_wcol;
Bram Moolenaarabc97732007-08-08 20:49:37 +0000229
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100230 // if there are more items than room we need a scrollbar
Bram Moolenaara5e66212017-09-29 22:42:33 +0200231 if (pum_height < size)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000232 {
Bram Moolenaara5e66212017-09-29 22:42:33 +0200233 pum_scrollbar = 1;
234 ++max_width;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000235 }
Bram Moolenaarabc97732007-08-08 20:49:37 +0000236 else
Bram Moolenaara5e66212017-09-29 22:42:33 +0200237 pum_scrollbar = 0;
238
239 if (def_width < max_width)
240 def_width = max_width;
241
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100242 if (((cursor_col < Columns - p_pw
243 || cursor_col < Columns - max_width)
Bram Moolenaarabc97732007-08-08 20:49:37 +0000244#ifdef FEAT_RIGHTLEFT
Bram Moolenaara5e66212017-09-29 22:42:33 +0200245 && !curwin->w_p_rl)
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100246 || (curwin->w_p_rl
247 && (cursor_col > p_pw || cursor_col > max_width)
Bram Moolenaarabc97732007-08-08 20:49:37 +0000248#endif
Bram Moolenaara5e66212017-09-29 22:42:33 +0200249 ))
250 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100251 // align pum with "cursor_col"
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100252 pum_col = cursor_col;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000253
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100254 // start with the maximum space available
Bram Moolenaara5e66212017-09-29 22:42:33 +0200255#ifdef FEAT_RIGHTLEFT
256 if (curwin->w_p_rl)
257 pum_width = pum_col - pum_scrollbar + 1;
258 else
259#endif
260 pum_width = Columns - pum_col - pum_scrollbar;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000261
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100262 if (pum_width > max_width + pum_kind_width + pum_extra_width + 1
Bram Moolenaar42443c72018-02-10 18:28:52 +0100263 && pum_width > p_pw)
Bram Moolenaara5e66212017-09-29 22:42:33 +0200264 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100265 // the width is more than needed for the items, make it
266 // narrower
Bram Moolenaar51b0f372017-11-18 18:52:04 +0100267 pum_width = max_width + pum_kind_width + pum_extra_width + 1;
Bram Moolenaar42443c72018-02-10 18:28:52 +0100268 if (pum_width < p_pw)
269 pum_width = p_pw;
Bram Moolenaara5e66212017-09-29 22:42:33 +0200270 }
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100271 else if (((cursor_col > p_pw || cursor_col > max_width)
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100272#ifdef FEAT_RIGHTLEFT
273 && !curwin->w_p_rl)
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100274 || (curwin->w_p_rl && (cursor_col < Columns - p_pw
275 || cursor_col < Columns - max_width)
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100276#endif
277 ))
278 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100279 // align pum edge with "cursor_col"
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100280#ifdef FEAT_RIGHTLEFT
Bram Moolenaar4287ed32018-02-17 20:35:29 +0100281 if (curwin->w_p_rl
Bram Moolenaarbb008dd2018-02-24 18:59:55 +0100282 && W_ENDCOL(curwin) < max_width + pum_scrollbar + 1)
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100283 {
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100284 pum_col = cursor_col + max_width + pum_scrollbar + 1;
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100285 if (pum_col >= Columns)
286 pum_col = Columns - 1;
287 }
Bram Moolenaar4287ed32018-02-17 20:35:29 +0100288 else if (!curwin->w_p_rl)
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100289#endif
290 {
Bram Moolenaar2b10bcb2018-02-24 21:25:44 +0100291 if (curwin->w_wincol > Columns - max_width - pum_scrollbar
292 && max_width <= p_pw)
Bram Moolenaar4287ed32018-02-17 20:35:29 +0100293 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100294 // use full width to end of the screen
Bram Moolenaar4287ed32018-02-17 20:35:29 +0100295 pum_col = Columns - max_width - pum_scrollbar;
296 if (pum_col < 0)
297 pum_col = 0;
298 }
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100299 }
300
301#ifdef FEAT_RIGHTLEFT
302 if (curwin->w_p_rl)
Bram Moolenaar4287ed32018-02-17 20:35:29 +0100303 pum_width = pum_col - pum_scrollbar + 1;
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100304 else
305#endif
Bram Moolenaar4287ed32018-02-17 20:35:29 +0100306 pum_width = Columns - pum_col - pum_scrollbar;
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100307
Bram Moolenaar42443c72018-02-10 18:28:52 +0100308 if (pum_width < p_pw)
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100309 {
Bram Moolenaar42443c72018-02-10 18:28:52 +0100310 pum_width = p_pw;
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100311#ifdef FEAT_RIGHTLEFT
312 if (curwin->w_p_rl)
313 {
314 if (pum_width > pum_col)
315 pum_width = pum_col;
316 }
317 else
318#endif
319 {
320 if (pum_width >= Columns - pum_col)
321 pum_width = Columns - pum_col - 1;
322 }
323 }
324 else if (pum_width > max_width + pum_kind_width
325 + pum_extra_width + 1
Bram Moolenaar42443c72018-02-10 18:28:52 +0100326 && pum_width > p_pw)
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100327 {
328 pum_width = max_width + pum_kind_width
329 + pum_extra_width + 1;
Bram Moolenaar42443c72018-02-10 18:28:52 +0100330 if (pum_width < p_pw)
331 pum_width = p_pw;
Bram Moolenaara8f04aa2018-02-10 15:36:55 +0100332 }
333 }
334
Bram Moolenaara5e66212017-09-29 22:42:33 +0200335 }
336 else if (Columns < def_width)
337 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100338 // not enough room, will use what we have
Bram Moolenaara5e66212017-09-29 22:42:33 +0200339#ifdef FEAT_RIGHTLEFT
340 if (curwin->w_p_rl)
341 pum_col = Columns - 1;
342 else
343#endif
344 pum_col = 0;
345 pum_width = Columns - 1;
346 }
347 else
348 {
Bram Moolenaar42443c72018-02-10 18:28:52 +0100349 if (max_width > p_pw)
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100350 max_width = p_pw; // truncate
Bram Moolenaara5e66212017-09-29 22:42:33 +0200351#ifdef FEAT_RIGHTLEFT
352 if (curwin->w_p_rl)
353 pum_col = max_width - 1;
354 else
355#endif
356 pum_col = Columns - max_width;
357 pum_width = max_width - pum_scrollbar;
358 }
359
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100360 // Set selected item and redraw. If the window size changed need to
361 // redo the positioning. Limit this to two times, when there is not
362 // much room the window size will keep changing.
Bram Moolenaara5e66212017-09-29 22:42:33 +0200363 } while (pum_set_selected(selected, redo_count) && ++redo_count <= 2);
Bram Moolenaar4b779472005-10-04 09:12:31 +0000364}
365
366/*
Bram Moolenaarae654382019-01-17 21:09:05 +0100367 * Set a flag that when pum_redraw() is called it first calls update_screen().
368 * This will avoid clearing and redrawing the popup menu, prevent flicker.
369 */
370 void
371pum_call_update_screen()
372{
373 call_update_screen = TRUE;
374
375 // Update the cursor position to be able to compute the popup menu
376 // position. The cursor line length may have changed because of the
377 // inserted completion.
Bram Moolenaarc07ff5c2019-01-30 21:41:14 +0100378 curwin->w_valid &= ~(VALID_CROW|VALID_CHEIGHT);
Bram Moolenaarae654382019-01-17 21:09:05 +0100379 validate_cursor();
380}
381
382/*
383 * Return TRUE if we are going to redraw the popup menu and the screen position
384 * "row"/"col" is under the popup menu.
385 */
386 int
387pum_under_menu(int row, int col)
388{
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100389 return pum_will_redraw
Bram Moolenaarae654382019-01-17 21:09:05 +0100390 && row >= pum_row
391 && row < pum_row + pum_height
392 && col >= pum_col - 1
393 && col < pum_col + pum_width;
394}
395
396/*
Bram Moolenaar4b779472005-10-04 09:12:31 +0000397 * Redraw the popup menu, using "pum_first" and "pum_selected".
398 */
399 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100400pum_redraw(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000401{
402 int row = pum_row;
403 int col;
404 int attr_norm = highlight_attr[HLF_PNI];
405 int attr_select = highlight_attr[HLF_PSI];
406 int attr_scroll = highlight_attr[HLF_PSB];
407 int attr_thumb = highlight_attr[HLF_PST];
408 int attr;
409 int i;
410 int idx;
411 char_u *s;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000412 char_u *p = NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000413 int totwidth, width, w;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000414 int thumb_pos = 0;
Bram Moolenaarbdace832019-03-02 10:13:42 +0100415 int thumb_height = 1;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000416 int round;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000417 int n;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000418
Bram Moolenaarae654382019-01-17 21:09:05 +0100419 if (call_update_screen)
420 {
421 call_update_screen = FALSE;
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100422 // Do not redraw in pum_may_redraw() and don't draw in the area where
423 // the popup menu will be.
424 pum_will_redraw = TRUE;
Bram Moolenaarae654382019-01-17 21:09:05 +0100425 update_screen(0);
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100426 pum_will_redraw = FALSE;
Bram Moolenaarae654382019-01-17 21:09:05 +0100427 }
428
429 // never display more than we have
Bram Moolenaar4c1e6262013-11-06 04:04:33 +0100430 if (pum_first > pum_size - pum_height)
431 pum_first = pum_size - pum_height;
432
Bram Moolenaar4b779472005-10-04 09:12:31 +0000433 if (pum_scrollbar)
434 {
Bram Moolenaarbdace832019-03-02 10:13:42 +0100435 thumb_height = pum_height * pum_height / pum_size;
436 if (thumb_height == 0)
437 thumb_height = 1;
438 thumb_pos = (pum_first * (pum_height - thumb_height)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000439 + (pum_size - pum_height) / 2)
440 / (pum_size - pum_height);
441 }
442
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100443#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +0200444 // The popup menu is drawn over popup menus with zindex under
445 // POPUPMENU_ZINDEX.
446 screen_zindex = POPUPMENU_ZINDEX;
447#endif
448
Bram Moolenaar4b779472005-10-04 09:12:31 +0000449 for (i = 0; i < pum_height; ++i)
450 {
451 idx = i + pum_first;
452 attr = (idx == pum_selected) ? attr_select : attr_norm;
453
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100454 // prepend a space if there is room
Bram Moolenaarabc97732007-08-08 20:49:37 +0000455#ifdef FEAT_RIGHTLEFT
456 if (curwin->w_p_rl)
457 {
Bram Moolenaar02631462017-09-22 15:20:32 +0200458 if (pum_col < curwin->w_wincol + curwin->w_width - 1)
Bram Moolenaarabc97732007-08-08 20:49:37 +0000459 screen_putchar(' ', row, pum_col + 1, attr);
460 }
461 else
462#endif
463 if (pum_col > 0)
464 screen_putchar(' ', row, pum_col - 1, attr);
Bram Moolenaar4b779472005-10-04 09:12:31 +0000465
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100466 // Display each entry, use two spaces for a Tab.
467 // Do this 3 times: For the main text, kind and extra info
Bram Moolenaar4b779472005-10-04 09:12:31 +0000468 col = pum_col;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000469 totwidth = 0;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000470 for (round = 1; round <= 3; ++round)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000471 {
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000472 width = 0;
473 s = NULL;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000474 switch (round)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000475 {
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000476 case 1: p = pum_array[idx].pum_text; break;
477 case 2: p = pum_array[idx].pum_kind; break;
478 case 3: p = pum_array[idx].pum_extra; break;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000479 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000480 if (p != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100481 for ( ; ; MB_PTR_ADV(p))
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000482 {
483 if (s == NULL)
484 s = p;
485 w = ptr2cells(p);
486 if (*p == NUL || *p == TAB || totwidth + w > pum_width)
487 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100488 // Display the text that fits or comes before a Tab.
489 // First convert it to printable characters.
Bram Moolenaarabc97732007-08-08 20:49:37 +0000490 char_u *st;
491 int saved = *p;
Bram Moolenaar7cc36e92007-03-27 10:42:05 +0000492
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +0100493 if (saved != NUL)
494 *p = NUL;
Bram Moolenaar7cc36e92007-03-27 10:42:05 +0000495 st = transstr(s);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +0100496 if (saved != NUL)
497 *p = saved;
Bram Moolenaarabc97732007-08-08 20:49:37 +0000498#ifdef FEAT_RIGHTLEFT
499 if (curwin->w_p_rl)
Bram Moolenaar7cc36e92007-03-27 10:42:05 +0000500 {
Bram Moolenaarabc97732007-08-08 20:49:37 +0000501 if (st != NULL)
502 {
503 char_u *rt = reverse_text(st);
Bram Moolenaarabc97732007-08-08 20:49:37 +0000504
505 if (rt != NULL)
506 {
Bram Moolenaard836bb92010-01-19 18:06:03 +0100507 char_u *rt_start = rt;
508 int size;
509
510 size = vim_strsize(rt);
511 if (size > pum_width)
Bram Moolenaarabc97732007-08-08 20:49:37 +0000512 {
Bram Moolenaard836bb92010-01-19 18:06:03 +0100513 do
514 {
515 size -= has_mbyte
516 ? (*mb_ptr2cells)(rt) : 1;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100517 MB_PTR_ADV(rt);
Bram Moolenaard836bb92010-01-19 18:06:03 +0100518 } while (size > pum_width);
519
520 if (size < pum_width)
521 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100522 // Most left character requires
523 // 2-cells but only 1 cell is
524 // available on screen. Put a
525 // '<' on the left of the pum
526 // item
Bram Moolenaard836bb92010-01-19 18:06:03 +0100527 *(--rt) = '<';
528 size++;
529 }
Bram Moolenaarabc97732007-08-08 20:49:37 +0000530 }
Bram Moolenaard836bb92010-01-19 18:06:03 +0100531 screen_puts_len(rt, (int)STRLEN(rt),
532 row, col - size + 1, attr);
533 vim_free(rt_start);
Bram Moolenaarabc97732007-08-08 20:49:37 +0000534 }
535 vim_free(st);
536 }
537 col -= width;
Bram Moolenaar7cc36e92007-03-27 10:42:05 +0000538 }
Bram Moolenaarabc97732007-08-08 20:49:37 +0000539 else
540#endif
541 {
542 if (st != NULL)
543 {
544 screen_puts_len(st, (int)STRLEN(st), row, col,
545 attr);
546 vim_free(st);
547 }
548 col += width;
549 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000550
551 if (*p != TAB)
552 break;
553
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100554 // Display two spaces for a Tab.
Bram Moolenaarabc97732007-08-08 20:49:37 +0000555#ifdef FEAT_RIGHTLEFT
556 if (curwin->w_p_rl)
557 {
558 screen_puts_len((char_u *)" ", 2, row, col - 1,
559 attr);
560 col -= 2;
561 }
562 else
563#endif
564 {
565 screen_puts_len((char_u *)" ", 2, row, col, attr);
566 col += 2;
567 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000568 totwidth += 2;
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100569 s = NULL; // start text at next char
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000570 width = 0;
571 }
572 else
573 width += w;
574 }
575
576 if (round > 1)
577 n = pum_kind_width + 1;
578 else
579 n = 1;
580
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100581 // Stop when there is nothing more to display.
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000582 if (round == 3
583 || (round == 2 && pum_array[idx].pum_extra == NULL)
584 || (round == 1 && pum_array[idx].pum_kind == NULL
585 && pum_array[idx].pum_extra == NULL)
586 || pum_base_width + n >= pum_width)
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000587 break;
Bram Moolenaarabc97732007-08-08 20:49:37 +0000588#ifdef FEAT_RIGHTLEFT
589 if (curwin->w_p_rl)
590 {
591 screen_fill(row, row + 1, pum_col - pum_base_width - n + 1,
592 col + 1, ' ', ' ', attr);
593 col = pum_col - pum_base_width - n + 1;
594 }
595 else
596#endif
597 {
598 screen_fill(row, row + 1, col, pum_col + pum_base_width + n,
Bram Moolenaar8b6144b2006-02-08 09:20:24 +0000599 ' ', ' ', attr);
Bram Moolenaarabc97732007-08-08 20:49:37 +0000600 col = pum_col + pum_base_width + n;
601 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000602 totwidth = pum_base_width + n;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000603 }
604
Bram Moolenaarabc97732007-08-08 20:49:37 +0000605#ifdef FEAT_RIGHTLEFT
606 if (curwin->w_p_rl)
607 screen_fill(row, row + 1, pum_col - pum_width + 1, col + 1, ' ',
608 ' ', attr);
609 else
610#endif
611 screen_fill(row, row + 1, col, pum_col + pum_width, ' ', ' ',
612 attr);
Bram Moolenaar4b779472005-10-04 09:12:31 +0000613 if (pum_scrollbar > 0)
Bram Moolenaarabc97732007-08-08 20:49:37 +0000614 {
615#ifdef FEAT_RIGHTLEFT
616 if (curwin->w_p_rl)
617 screen_putchar(' ', row, pum_col - pum_width,
Bram Moolenaarbdace832019-03-02 10:13:42 +0100618 i >= thumb_pos && i < thumb_pos + thumb_height
Bram Moolenaar4b779472005-10-04 09:12:31 +0000619 ? attr_thumb : attr_scroll);
Bram Moolenaarabc97732007-08-08 20:49:37 +0000620 else
621#endif
622 screen_putchar(' ', row, pum_col + pum_width,
Bram Moolenaarbdace832019-03-02 10:13:42 +0100623 i >= thumb_pos && i < thumb_pos + thumb_height
Bram Moolenaarabc97732007-08-08 20:49:37 +0000624 ? attr_thumb : attr_scroll);
625 }
Bram Moolenaar4b779472005-10-04 09:12:31 +0000626
627 ++row;
628 }
Bram Moolenaar33796b32019-06-08 16:01:13 +0200629
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100630#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +0200631 screen_zindex = 0;
632#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +0000633}
634
Bram Moolenaar5a4c3082019-12-01 15:23:11 +0100635#if (defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)) || defined(PROTO)
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200636/*
637 * Position the info popup relative to the popup menu item.
638 */
639 void
640pum_position_info_popup(win_T *wp)
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200641{
Bram Moolenaar202c3f72019-11-21 12:12:35 +0100642 int col = pum_col + pum_width + pum_scrollbar + 1;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200643 int row = pum_row;
644 int botpos = POPPOS_BOTLEFT;
645
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200646 wp->w_popup_pos = POPPOS_TOPLEFT;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200647 if (Columns - col < 20 && Columns - col < pum_col)
648 {
649 col = pum_col - 1;
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200650 wp->w_popup_pos = POPPOS_TOPRIGHT;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200651 botpos = POPPOS_BOTRIGHT;
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200652 wp->w_maxwidth = pum_col - 1;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200653 }
654 else
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200655 wp->w_maxwidth = Columns - col + 1;
656 wp->w_maxwidth -= popup_extra_width(wp);
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200657
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200658 row -= popup_top_extra(wp);
659 if (wp->w_popup_flags & POPF_INFO_MENU)
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200660 {
661 if (pum_row < pum_win_row)
662 {
663 // menu above cursor line, align with bottom
664 row += pum_height;
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200665 wp->w_popup_pos = botpos;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200666 }
667 else
668 // menu below cursor line, align with top
669 row += 1;
670 }
671 else
672 // align with the selected item
673 row += pum_selected - pum_first + 1;
674
Bram Moolenaarbef93ac2019-12-06 20:17:35 +0100675 wp->w_popup_flags &= ~POPF_HIDDEN;
676 if (wp->w_maxwidth < 10)
677 // The popup is not going to fit or will overlap with the cursor
678 // position, hide the popup.
679 wp->w_popup_flags |= POPF_HIDDEN;
680 else
681 popup_set_wantpos_rowcol(wp, row, col);
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200682}
683#endif
684
Bram Moolenaar4b779472005-10-04 09:12:31 +0000685/*
686 * Set the index of the currently selected item. The menu will scroll when
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000687 * necessary. When "n" is out of range don't scroll.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000688 * This may be repeated when the preview window is used:
689 * "repeat" == 0: open preview window normally
690 * "repeat" == 1: open preview window but don't set the size
691 * "repeat" == 2: don't open preview window
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000692 * Returns TRUE when the window was resized and the location of the popup menu
693 * must be recomputed.
Bram Moolenaar4b779472005-10-04 09:12:31 +0000694 */
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000695 static int
Bram Moolenaar9cb698d2019-08-21 15:30:45 +0200696pum_set_selected(int n, int repeat UNUSED)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000697{
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000698 int resized = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000699 int context = pum_height / 2;
Bram Moolenaareaf35242019-08-20 23:14:15 +0200700#ifdef FEAT_QUICKFIX
Bram Moolenaarf0bc15c2019-08-18 19:23:45 +0200701 int prev_selected = pum_selected;
Bram Moolenaareaf35242019-08-20 23:14:15 +0200702#endif
Bram Moolenaar5a4c3082019-12-01 15:23:11 +0100703#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200704 int has_info = FALSE;
705#endif
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000706
Bram Moolenaar4b779472005-10-04 09:12:31 +0000707 pum_selected = n;
708
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000709 if (pum_selected >= 0 && pum_selected < pum_size)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000710 {
Bram Moolenaare3226be2005-12-18 22:10:00 +0000711 if (pum_first > pum_selected - 4)
712 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100713 // scroll down; when we did a jump it's probably a PageUp then
714 // scroll a whole page
Bram Moolenaare3226be2005-12-18 22:10:00 +0000715 if (pum_first > pum_selected - 2)
716 {
Bram Moolenaar7df351e2006-01-23 22:30:28 +0000717 pum_first -= pum_height - 2;
Bram Moolenaare3226be2005-12-18 22:10:00 +0000718 if (pum_first < 0)
719 pum_first = 0;
Bram Moolenaar7df351e2006-01-23 22:30:28 +0000720 else if (pum_first > pum_selected)
721 pum_first = pum_selected;
Bram Moolenaare3226be2005-12-18 22:10:00 +0000722 }
723 else
724 pum_first = pum_selected;
725 }
726 else if (pum_first < pum_selected - pum_height + 5)
727 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100728 // scroll up; when we did a jump it's probably a PageDown then
729 // scroll a whole page
Bram Moolenaare3226be2005-12-18 22:10:00 +0000730 if (pum_first < pum_selected - pum_height + 1 + 2)
Bram Moolenaar7df351e2006-01-23 22:30:28 +0000731 {
732 pum_first += pum_height - 2;
733 if (pum_first < pum_selected - pum_height + 1)
734 pum_first = pum_selected - pum_height + 1;
735 }
Bram Moolenaare3226be2005-12-18 22:10:00 +0000736 else
737 pum_first = pum_selected - pum_height + 1;
738 }
Bram Moolenaar4b779472005-10-04 09:12:31 +0000739
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100740 // Give a few lines of context when possible.
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000741 if (context > 3)
742 context = 3;
743 if (pum_height > 2)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000744 {
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000745 if (pum_first > pum_selected - context)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000746 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100747 // scroll down
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000748 pum_first = pum_selected - context;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000749 if (pum_first < 0)
750 pum_first = 0;
751 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000752 else if (pum_first < pum_selected + context - pum_height + 1)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000753 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100754 // scroll up
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000755 pum_first = pum_selected + context - pum_height + 1;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000756 }
757 }
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200758 // adjust for the number of lines displayed
759 if (pum_first > pum_size - pum_height)
760 pum_first = pum_size - pum_height;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000761
Bram Moolenaar4033c552017-09-16 20:54:51 +0200762#if defined(FEAT_QUICKFIX)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000763 /*
764 * Show extra info in the preview window if there is something and
Bram Moolenaar202c3f72019-11-21 12:12:35 +0100765 * 'completeopt' contains "preview" or "popup" or "popuphidden".
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000766 * Skip this when tried twice already.
767 * Skip this also when there is not much room.
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000768 * NOTE: Be very careful not to sync undo!
769 */
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000770 if (pum_array[pum_selected].pum_info != NULL
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000771 && Rows > 10
772 && repeat <= 1
773 && vim_strchr(p_cot, 'p') != NULL)
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000774 {
775 win_T *curwin_save = curwin;
Bram Moolenaar9ad89c62017-10-26 22:04:04 +0200776 tabpage_T *curtab_save = curtab;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000777 int res = OK;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100778# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200779 use_popup_T use_popup;
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200780# else
Bram Moolenaara2c2ae42019-11-30 20:58:46 +0100781# define use_popup USEPOPUP_NONE
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200782# endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100783# ifdef FEAT_PROP_POPUP
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200784 has_info = TRUE;
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200785 if (strstr((char *)p_cot, "popuphidden") != NULL)
786 use_popup = USEPOPUP_HIDDEN;
787 else if (strstr((char *)p_cot, "popup") != NULL)
788 use_popup = USEPOPUP_NORMAL;
789 else
790 use_popup = USEPOPUP_NONE;
Bram Moolenaard570ab92019-09-03 23:20:05 +0200791# endif
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200792 // Open a preview window and set "curwin" to it.
793 // 3 lines by default, prefer 'previewheight' if set and smaller.
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000794 g_do_tagpreview = 3;
Bram Moolenaaree236d02010-10-27 17:11:15 +0200795 if (p_pvh > 0 && p_pvh < g_do_tagpreview)
796 g_do_tagpreview = p_pvh;
Bram Moolenaarc8045152014-07-09 19:58:24 +0200797 ++RedrawingDisabled;
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200798 // Prevent undo sync here, if an autocommand syncs undo weird
799 // things can happen to the undo tree.
Bram Moolenaare7d13762015-10-30 14:23:33 +0100800 ++no_u_sync;
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200801 resized = prepare_tagpreview(FALSE, FALSE, use_popup);
Bram Moolenaare7d13762015-10-30 14:23:33 +0100802 --no_u_sync;
Bram Moolenaarc8045152014-07-09 19:58:24 +0200803 --RedrawingDisabled;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000804 g_do_tagpreview = 0;
805
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200806 if (curwin->w_p_pvw
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100807# ifdef FEAT_PROP_POPUP
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200808 || (curwin->w_popup_flags & POPF_INFO)
809# endif
810 )
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000811 {
Bram Moolenaar50e53762016-10-27 14:49:15 +0200812 if (!resized
813 && curbuf->b_nwindows == 1
814 && curbuf->b_fname == NULL
Bram Moolenaar26910de2019-06-15 19:37:15 +0200815 && bt_nofile(curbuf)
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000816 && curbuf->b_p_bh[0] == 'w')
817 {
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200818 // Already a "wipeout" buffer, make it empty.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100819 while (!BUFEMPTY())
Bram Moolenaarca70c072020-05-30 20:30:46 +0200820 ml_delete((linenr_T)1);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000821 }
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000822 else
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000823 {
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200824 // Don't want to sync undo in the current buffer.
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000825 ++no_u_sync;
Bram Moolenaar701f7af2008-11-15 13:12:07 +0000826 res = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, 0, NULL);
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000827 --no_u_sync;
828 if (res == OK)
829 {
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200830 // Edit a new, empty buffer. Set options for a "wipeout"
831 // buffer.
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000832 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
833 set_option_value((char_u *)"bt", 0L,
834 (char_u *)"nofile", OPT_LOCAL);
835 set_option_value((char_u *)"bh", 0L,
836 (char_u *)"wipe", OPT_LOCAL);
837 set_option_value((char_u *)"diff", 0L,
Bram Moolenaar7f514742007-06-28 19:33:43 +0000838 NULL, OPT_LOCAL);
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000839 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000840 }
841 if (res == OK)
842 {
843 char_u *p, *e;
844 linenr_T lnum = 0;
845
846 for (p = pum_array[pum_selected].pum_info; *p != NUL; )
847 {
848 e = vim_strchr(p, '\n');
849 if (e == NULL)
850 {
851 ml_append(lnum++, p, 0, FALSE);
852 break;
853 }
854 else
855 {
856 *e = NUL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000857 ml_append(lnum++, p, (int)(e - p + 1), FALSE);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000858 *e = '\n';
859 p = e + 1;
860 }
861 }
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200862 // delete the empty last line
Bram Moolenaarca70c072020-05-30 20:30:46 +0200863 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000864
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100865 // Increase the height of the preview window to show the
866 // text, but no more than 'previewheight' lines.
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200867 if (repeat == 0 && use_popup == USEPOPUP_NONE)
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000868 {
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000869 if (lnum > p_pvh)
870 lnum = p_pvh;
871 if (curwin->w_height < lnum)
872 {
873 win_setheight((int)lnum);
874 resized = TRUE;
875 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000876 }
877
878 curbuf->b_changed = 0;
879 curbuf->b_p_ma = FALSE;
Bram Moolenaarf0bc15c2019-08-18 19:23:45 +0200880 if (pum_selected != prev_selected)
881 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100882# ifdef FEAT_PROP_POPUP
Bram Moolenaarf0bc15c2019-08-18 19:23:45 +0200883 curwin->w_firstline = 1;
884# endif
885 curwin->w_topline = 1;
886 }
887 else if (curwin->w_topline > curbuf->b_ml.ml_line_count)
888 curwin->w_topline = curbuf->b_ml.ml_line_count;
889 curwin->w_cursor.lnum = curwin->w_topline;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000890 curwin->w_cursor.col = 0;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100891# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200892 if (use_popup != USEPOPUP_NONE)
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200893 {
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200894 pum_position_info_popup(curwin);
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200895 if (win_valid(curwin_save))
896 redraw_win_later(curwin_save, SOME_VALID);
897 }
898# endif
Bram Moolenaar9ad89c62017-10-26 22:04:04 +0200899 if ((curwin != curwin_save && win_valid(curwin_save))
900 || (curtab != curtab_save
901 && valid_tabpage(curtab_save)))
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000902 {
Bram Moolenaar9ad89c62017-10-26 22:04:04 +0200903 if (curtab != curtab_save && valid_tabpage(curtab_save))
904 goto_tabpage_tp(curtab_save, FALSE, FALSE);
905
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100906 // When the first completion is done and the preview
907 // window is not resized, skip the preview window's
908 // status line redrawing.
Bram Moolenaar2bace3e2014-07-23 21:10:43 +0200909 if (ins_compl_active() && !resized)
910 curwin->w_redr_status = FALSE;
911
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100912 // Return cursor to where we were
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000913 validate_cursor();
Bram Moolenaar600dddc2006-03-12 22:05:10 +0000914 redraw_later(SOME_VALID);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000915
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100916 // When the preview window was resized we need to
917 // update the view on the buffer. Only go back to
918 // the window when needed, otherwise it will always be
Bram Moolenaar5e5a98d2019-12-15 14:55:33 +0100919 // redrawn.
Bram Moolenaar5dd143e2019-08-15 21:34:34 +0200920 if (resized && win_valid(curwin_save))
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000921 {
Bram Moolenaare7d13762015-10-30 14:23:33 +0100922 ++no_u_sync;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000923 win_enter(curwin_save, TRUE);
Bram Moolenaare7d13762015-10-30 14:23:33 +0100924 --no_u_sync;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000925 update_topline();
926 }
927
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100928 // Update the screen before drawing the popup menu.
929 // Enable updating the status lines.
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100930 pum_pretend_not_visible = TRUE;
931 // But don't draw text at the new popup menu position,
Bram Moolenaar5e5a98d2019-12-15 14:55:33 +0100932 // it causes flicker. When resizing we need to draw
933 // anyway, the position may change later.
934 pum_will_redraw = !resized;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000935 update_screen(0);
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100936 pum_pretend_not_visible = FALSE;
937 pum_will_redraw = FALSE;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000938
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000939 if (!resized && win_valid(curwin_save))
Bram Moolenaare7d13762015-10-30 14:23:33 +0100940 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100941# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200942 win_T *wp = curwin;
943# endif
Bram Moolenaare7d13762015-10-30 14:23:33 +0100944 ++no_u_sync;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000945 win_enter(curwin_save, TRUE);
Bram Moolenaare7d13762015-10-30 14:23:33 +0100946 --no_u_sync;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100947# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200948 if (use_popup == USEPOPUP_HIDDEN && win_valid(wp))
949 popup_hide(wp);
950# endif
Bram Moolenaare7d13762015-10-30 14:23:33 +0100951 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000952
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100953 // May need to update the screen again when there are
954 // autocommands involved.
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100955 pum_pretend_not_visible = TRUE;
Bram Moolenaar5e5a98d2019-12-15 14:55:33 +0100956 pum_will_redraw = !resized;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000957 update_screen(0);
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100958 pum_pretend_not_visible = FALSE;
959 pum_will_redraw = FALSE;
Bram Moolenaarae654382019-01-17 21:09:05 +0100960 call_update_screen = FALSE;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000961 }
962 }
963 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100964# if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaar5dd143e2019-08-15 21:34:34 +0200965 if (WIN_IS_POPUP(curwin))
966 // can't keep focus in a popup window
967 win_enter(firstwin, TRUE);
968# endif
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000969 }
970#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +0000971 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100972#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200973 if (!has_info)
Bram Moolenaarc7c5f102019-08-21 18:31:03 +0200974 // hide any popup info window
975 popup_hide_info();
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200976#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +0000977
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000978 if (!resized)
979 pum_redraw();
980
981 return resized;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000982}
983
984/*
985 * Undisplay the popup menu (later).
986 */
987 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100988pum_undisplay(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000989{
990 pum_array = NULL;
Bram Moolenaar0b565e52018-05-14 23:08:32 +0200991 redraw_all_later(NOT_VALID);
Bram Moolenaar2d694602006-08-22 19:48:48 +0000992 redraw_tabline = TRUE;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000993 status_redraw_all();
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100994#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaarc7c5f102019-08-21 18:31:03 +0200995 // hide any popup info window
996 popup_hide_info();
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200997#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +0000998}
999
1000/*
1001 * Clear the popup menu. Currently only resets the offset to the first
1002 * displayed item.
1003 */
1004 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001005pum_clear(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +00001006{
1007 pum_first = 0;
1008}
1009
1010/*
Bram Moolenaar04357fb2019-12-10 21:50:56 +01001011 * Return TRUE if the popup menu is displayed. Used to avoid some redrawing
1012 * that could overwrite it. Overruled when "pum_pretend_not_visible" is set,
1013 * used to redraw the status lines.
Bram Moolenaar4b779472005-10-04 09:12:31 +00001014 */
1015 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001016pum_visible(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +00001017{
Bram Moolenaar04357fb2019-12-10 21:50:56 +01001018 return !pum_pretend_not_visible && pum_array != NULL;
Bram Moolenaar4b779472005-10-04 09:12:31 +00001019}
1020
Bram Moolenaare3226be2005-12-18 22:10:00 +00001021/*
Bram Moolenaar491ac282018-06-17 14:47:55 +02001022 * Reposition the popup menu to adjust for window layout changes.
1023 */
1024 void
1025pum_may_redraw(void)
1026{
1027 pumitem_T *array = pum_array;
1028 int len = pum_size;
1029 int selected = pum_selected;
1030
Bram Moolenaar04357fb2019-12-10 21:50:56 +01001031 if (!pum_visible() || pum_will_redraw)
Bram Moolenaar491ac282018-06-17 14:47:55 +02001032 return; // nothing to do
1033
Bram Moolenaar0e6e1792018-06-17 17:10:59 +02001034 if (pum_window != curwin
1035 || (pum_win_row == curwin->w_wrow + W_WINROW(curwin)
1036 && pum_win_height == curwin->w_height
1037 && pum_win_col == curwin->w_wincol
1038 && pum_win_width == curwin->w_width))
Bram Moolenaar491ac282018-06-17 14:47:55 +02001039 {
1040 // window position didn't change, redraw in the same position
1041 pum_redraw();
1042 }
1043 else
1044 {
1045 int wcol = curwin->w_wcol;
1046
1047 // Window layout changed, recompute the position.
1048 // Use the remembered w_wcol value, the cursor may have moved when a
1049 // completion was inserted, but we want the menu in the same position.
1050 pum_undisplay();
1051 curwin->w_wcol = pum_win_wcol;
1052 curwin->w_valid |= VALID_WCOL;
1053 pum_display(array, len, selected);
1054 curwin->w_wcol = wcol;
1055 }
1056}
1057
1058/*
Bram Moolenaare3226be2005-12-18 22:10:00 +00001059 * Return the height of the popup menu, the number of entries visible.
1060 * Only valid when pum_visible() returns TRUE!
1061 */
1062 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001063pum_get_height(void)
Bram Moolenaare3226be2005-12-18 22:10:00 +00001064{
1065 return pum_height;
1066}
1067
Bram Moolenaar9cb698d2019-08-21 15:30:45 +02001068#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard7f246c2019-04-08 18:15:41 +02001069/*
1070 * Add size information about the pum to "dict".
1071 */
1072 void
1073pum_set_event_info(dict_T *dict)
1074{
1075 if (!pum_visible())
1076 return;
Bram Moolenaarc0300632020-03-16 20:07:16 +01001077 (void)dict_add_number(dict, "height", pum_height);
1078 (void)dict_add_number(dict, "width", pum_width);
1079 (void)dict_add_number(dict, "row", pum_row);
1080 (void)dict_add_number(dict, "col", pum_col);
1081 (void)dict_add_number(dict, "size", pum_size);
1082 (void)dict_add_bool(dict, "scrollbar",
1083 pum_scrollbar ? VVAL_TRUE : VVAL_FALSE);
Bram Moolenaard7f246c2019-04-08 18:15:41 +02001084}
Bram Moolenaar9cb698d2019-08-21 15:30:45 +02001085#endif
Bram Moolenaard7f246c2019-04-08 18:15:41 +02001086
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001087#if defined(FEAT_BEVAL_TERM) || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001088 static void
1089pum_position_at_mouse(int min_width)
1090{
1091 if (Rows - mouse_row > pum_size)
1092 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001093 // Enough space below the mouse row.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001094 pum_row = mouse_row + 1;
1095 if (pum_height > Rows - pum_row)
1096 pum_height = Rows - pum_row;
1097 }
1098 else
1099 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001100 // Show above the mouse row, reduce height if it does not fit.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001101 pum_row = mouse_row - pum_size;
1102 if (pum_row < 0)
1103 {
1104 pum_height += pum_row;
1105 pum_row = 0;
1106 }
1107 }
1108 if (Columns - mouse_col >= pum_base_width
1109 || Columns - mouse_col > min_width)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001110 // Enough space to show at mouse column.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001111 pum_col = mouse_col;
1112 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001113 // Not enough space, right align with window.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001114 pum_col = Columns - (pum_base_width > min_width
1115 ? min_width : pum_base_width);
1116
1117 pum_width = Columns - pum_col;
1118 if (pum_width > pum_base_width + 1)
1119 pum_width = pum_base_width + 1;
Bram Moolenaar0e6e1792018-06-17 17:10:59 +02001120
1121 // Do not redraw at cursor position.
1122 pum_window = NULL;
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001123}
1124
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001125#endif
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001126
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001127#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001128static pumitem_T *balloon_array = NULL;
1129static int balloon_arraysize;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001130
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001131# define BALLOON_MIN_WIDTH 50
1132# define BALLOON_MIN_HEIGHT 10
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001133
Bram Moolenaar246fe032017-11-19 19:56:27 +01001134typedef struct {
1135 char_u *start;
1136 int bytelen;
1137 int cells;
1138 int indent;
1139} balpart_T;
1140
1141/*
1142 * Split a string into parts to display in the balloon.
1143 * Aimed at output from gdb. Attempts to split at white space, preserve quoted
1144 * strings and make a struct look good.
1145 * Resulting array is stored in "array" and returns the size of the array.
1146 */
1147 int
1148split_message(char_u *mesg, pumitem_T **array)
1149{
1150 garray_T ga;
1151 char_u *p;
1152 balpart_T *item;
1153 int quoted = FALSE;
1154 int height;
1155 int line;
1156 int item_idx;
1157 int indent = 0;
1158 int max_cells = 0;
Bram Moolenaard1c1c822019-11-09 16:59:14 +01001159 int max_height = Rows / 2 - 1;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001160 int long_item_count = 0;
1161 int split_long_items = FALSE;
1162
1163 ga_init2(&ga, sizeof(balpart_T), 20);
1164 p = mesg;
1165
1166 while (*p != NUL)
1167 {
1168 if (ga_grow(&ga, 1) == FAIL)
1169 goto failed;
1170 item = ((balpart_T *)ga.ga_data) + ga.ga_len;
1171 item->start = p;
1172 item->indent = indent;
1173 item->cells = indent * 2;
1174 ++ga.ga_len;
1175 while (*p != NUL)
1176 {
1177 if (*p == '"')
1178 quoted = !quoted;
Bram Moolenaard1c1c822019-11-09 16:59:14 +01001179 else if (*p == '\n')
1180 break;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001181 else if (*p == '\\' && p[1] != NUL)
1182 ++p;
1183 else if (!quoted)
1184 {
1185 if ((*p == ',' && p[1] == ' ') || *p == '{' || *p == '}')
1186 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001187 // Looks like a good point to break.
Bram Moolenaar246fe032017-11-19 19:56:27 +01001188 if (*p == '{')
1189 ++indent;
1190 else if (*p == '}' && indent > 0)
1191 --indent;
1192 ++item->cells;
1193 p = skipwhite(p + 1);
1194 break;
1195 }
1196 }
1197 item->cells += ptr2cells(p);
Bram Moolenaar1614a142019-10-06 22:00:13 +02001198 p += mb_ptr2len(p);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001199 }
1200 item->bytelen = p - item->start;
Bram Moolenaard1c1c822019-11-09 16:59:14 +01001201 if (*p == '\n')
1202 ++p;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001203 if (item->cells > max_cells)
1204 max_cells = item->cells;
Bram Moolenaara3571eb2017-11-26 16:53:16 +01001205 long_item_count += (item->cells - 1) / BALLOON_MIN_WIDTH;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001206 }
1207
1208 height = 2 + ga.ga_len;
1209
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001210 // If there are long items and the height is below the limit: split lines
Bram Moolenaar246fe032017-11-19 19:56:27 +01001211 if (long_item_count > 0 && height + long_item_count <= max_height)
1212 {
1213 split_long_items = TRUE;
1214 height += long_item_count;
1215 }
1216
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001217 // Limit to half the window height, it has to fit above or below the mouse
1218 // position.
Bram Moolenaar246fe032017-11-19 19:56:27 +01001219 if (height > max_height)
1220 height = max_height;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001221 *array = ALLOC_CLEAR_MULT(pumitem_T, height);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001222 if (*array == NULL)
1223 goto failed;
1224
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001225 // Add an empty line above and below, looks better.
Bram Moolenaar246fe032017-11-19 19:56:27 +01001226 (*array)->pum_text = vim_strsave((char_u *)"");
1227 (*array + height - 1)->pum_text = vim_strsave((char_u *)"");
1228
1229 for (line = 1, item_idx = 0; line < height - 1; ++item_idx)
1230 {
1231 int skip;
1232 int thislen;
1233 int copylen;
1234 int ind;
1235 int cells;
1236
1237 item = ((balpart_T *)ga.ga_data) + item_idx;
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001238 if (item->bytelen == 0)
1239 (*array)[line++].pum_text = vim_strsave((char_u *)"");
1240 else
1241 for (skip = 0; skip < item->bytelen; skip += thislen)
Bram Moolenaar246fe032017-11-19 19:56:27 +01001242 {
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001243 if (split_long_items && item->cells >= BALLOON_MIN_WIDTH)
1244 {
1245 cells = item->indent * 2;
1246 for (p = item->start + skip;
1247 p < item->start + item->bytelen;
Bram Moolenaar1614a142019-10-06 22:00:13 +02001248 p += mb_ptr2len(p))
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001249 if ((cells += ptr2cells(p)) > BALLOON_MIN_WIDTH)
1250 break;
1251 thislen = p - (item->start + skip);
1252 }
1253 else
1254 thislen = item->bytelen;
1255
1256 // put indent at the start
1257 p = alloc(thislen + item->indent * 2 + 1);
1258 if (p == NULL)
1259 {
1260 for (line = 0; line <= height - 1; ++line)
1261 vim_free((*array)[line].pum_text);
1262 vim_free(*array);
1263 goto failed;
1264 }
1265 for (ind = 0; ind < item->indent * 2; ++ind)
1266 p[ind] = ' ';
1267
1268 // exclude spaces at the end of the string
1269 for (copylen = thislen; copylen > 0; --copylen)
1270 if (item->start[skip + copylen - 1] != ' ')
Bram Moolenaar246fe032017-11-19 19:56:27 +01001271 break;
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001272
1273 vim_strncpy(p + ind, item->start + skip, copylen);
1274 (*array)[line].pum_text = p;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001275 item->indent = 0; // wrapped line has no indent
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001276 ++line;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001277 }
Bram Moolenaar246fe032017-11-19 19:56:27 +01001278 }
1279 ga_clear(&ga);
1280 return height;
1281
1282failed:
1283 ga_clear(&ga);
1284 return 0;
1285}
1286
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001287 void
1288ui_remove_balloon(void)
1289{
1290 if (balloon_array != NULL)
1291 {
1292 pum_undisplay();
1293 while (balloon_arraysize > 0)
1294 vim_free(balloon_array[--balloon_arraysize].pum_text);
Bram Moolenaard23a8232018-02-10 18:45:26 +01001295 VIM_CLEAR(balloon_array);
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001296 }
1297}
1298
1299/*
1300 * Terminal version of a balloon, uses the popup menu code.
1301 */
1302 void
Bram Moolenaar246fe032017-11-19 19:56:27 +01001303ui_post_balloon(char_u *mesg, list_T *list)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001304{
1305 ui_remove_balloon();
1306
Bram Moolenaar246fe032017-11-19 19:56:27 +01001307 if (mesg == NULL && list == NULL)
Bram Moolenaarbe0a2592019-05-09 13:50:16 +02001308 {
1309 pum_undisplay();
Bram Moolenaar246fe032017-11-19 19:56:27 +01001310 return;
Bram Moolenaarbe0a2592019-05-09 13:50:16 +02001311 }
Bram Moolenaar246fe032017-11-19 19:56:27 +01001312 if (list != NULL)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001313 {
Bram Moolenaar246fe032017-11-19 19:56:27 +01001314 listitem_T *li;
1315 int idx;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001316
Bram Moolenaar246fe032017-11-19 19:56:27 +01001317 balloon_arraysize = list->lv_len;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001318 balloon_array = ALLOC_CLEAR_MULT(pumitem_T, list->lv_len);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001319 if (balloon_array == NULL)
1320 return;
Bram Moolenaar7e9f3512020-05-13 22:44:22 +02001321 CHECK_LIST_MATERIALIZE(list);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001322 for (idx = 0, li = list->lv_first; li != NULL; li = li->li_next, ++idx)
1323 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001324 char_u *text = tv_get_string_chk(&li->li_tv);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001325
1326 balloon_array[idx].pum_text = vim_strsave(
1327 text == NULL ? (char_u *)"" : text);
1328 }
1329 }
1330 else
1331 balloon_arraysize = split_message(mesg, &balloon_array);
1332
1333 if (balloon_arraysize > 0)
1334 {
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001335 pum_array = balloon_array;
1336 pum_size = balloon_arraysize;
1337 pum_compute_size();
1338 pum_scrollbar = 0;
1339 pum_height = balloon_arraysize;
1340
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001341 pum_position_at_mouse(BALLOON_MIN_WIDTH);
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001342 pum_selected = -1;
1343 pum_first = 0;
1344 pum_redraw();
1345 }
1346}
1347
1348/*
1349 * Called when the mouse moved, may remove any displayed balloon.
1350 */
1351 void
1352ui_may_remove_balloon(void)
1353{
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001354 // For now: remove the balloon whenever the mouse moves to another screen
1355 // cell.
1356 ui_remove_balloon();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001357}
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001358#endif
Bram Moolenaara8f04aa2018-02-10 15:36:55 +01001359
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001360#if defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001361/*
1362 * Select the pum entry at the mouse position.
1363 */
1364 static void
1365pum_select_mouse_pos(void)
1366{
1367 int idx = mouse_row - pum_row;
1368
1369 if (idx < 0 || idx >= pum_size)
1370 pum_selected = -1;
1371 else if (*pum_array[idx].pum_text != NUL)
1372 pum_selected = idx;
1373}
1374
1375/*
1376 * Execute the currently selected popup menu item.
1377 */
1378 static void
Bram Moolenaar987723e2018-03-06 11:43:04 +01001379pum_execute_menu(vimmenu_T *menu, int mode)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001380{
1381 vimmenu_T *mp;
1382 int idx = 0;
1383 exarg_T ea;
1384
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001385 FOR_ALL_CHILD_MENUS(menu, mp)
Bram Moolenaar987723e2018-03-06 11:43:04 +01001386 if ((mp->modes & mp->enabled & mode) && idx++ == pum_selected)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001387 {
Bram Moolenaara80faa82020-04-12 19:37:17 +02001388 CLEAR_FIELD(ea);
Bram Moolenaar4c5d8152018-10-19 22:36:53 +02001389 execute_menu(&ea, mp, -1);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001390 break;
1391 }
1392}
1393
1394/*
1395 * Open the terminal version of the popup menu and don't return until it is
1396 * closed.
1397 */
1398 void
1399pum_show_popupmenu(vimmenu_T *menu)
1400{
1401 vimmenu_T *mp;
1402 int idx = 0;
1403 pumitem_T *array;
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001404# ifdef FEAT_BEVAL_TERM
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001405 int save_bevalterm = p_bevalterm;
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001406# endif
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001407 int mode;
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001408
1409 pum_undisplay();
1410 pum_size = 0;
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001411 mode = get_menu_mode_flag();
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001412
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001413 FOR_ALL_CHILD_MENUS(menu, mp)
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001414 if (menu_is_separator(mp->dname)
1415 || (mp->modes & mp->enabled & mode))
1416 ++pum_size;
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001417
Bram Moolenaarf42b45d2019-01-06 13:11:05 +01001418 // When there are only Terminal mode menus, using "popup Edit" results in
1419 // pum_size being zero.
1420 if (pum_size <= 0)
1421 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001422 emsg(e_menuothermode);
Bram Moolenaarf42b45d2019-01-06 13:11:05 +01001423 return;
1424 }
1425
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001426 array = ALLOC_CLEAR_MULT(pumitem_T, pum_size);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001427 if (array == NULL)
1428 return;
1429
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001430 FOR_ALL_CHILD_MENUS(menu, mp)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001431 if (menu_is_separator(mp->dname))
1432 array[idx++].pum_text = (char_u *)"";
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001433 else if (mp->modes & mp->enabled & mode)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001434 array[idx++].pum_text = mp->dname;
1435
1436 pum_array = array;
1437 pum_compute_size();
1438 pum_scrollbar = 0;
1439 pum_height = pum_size;
1440 pum_position_at_mouse(20);
1441
1442 pum_selected = -1;
1443 pum_first = 0;
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001444# ifdef FEAT_BEVAL_TERM
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001445 p_bevalterm = TRUE; // track mouse movement
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001446 mch_setmouse(TRUE);
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001447# endif
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001448
1449 for (;;)
1450 {
1451 int c;
1452
1453 pum_redraw();
Bram Moolenaar987723e2018-03-06 11:43:04 +01001454 setcursor_mayforce(TRUE);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001455 out_flush();
1456
1457 c = vgetc();
Bram Moolenaar5c3fb042019-05-30 15:53:29 +02001458
1459 // Bail out when typing Esc, CTRL-C or some callback closed the popup
1460 // menu.
1461 if (c == ESC || c == Ctrl_C || pum_array == NULL)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001462 break;
1463 else if (c == CAR || c == NL)
1464 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001465 // enter: select current item, if any, and close
Bram Moolenaar987723e2018-03-06 11:43:04 +01001466 pum_execute_menu(menu, mode);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001467 break;
1468 }
1469 else if (c == 'k' || c == K_UP || c == K_MOUSEUP)
1470 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001471 // cursor up: select previous item
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001472 while (pum_selected > 0)
1473 {
1474 --pum_selected;
1475 if (*array[pum_selected].pum_text != NUL)
1476 break;
1477 }
1478 }
1479 else if (c == 'j' || c == K_DOWN || c == K_MOUSEDOWN)
1480 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001481 // cursor down: select next item
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001482 while (pum_selected < pum_size - 1)
1483 {
1484 ++pum_selected;
1485 if (*array[pum_selected].pum_text != NUL)
1486 break;
1487 }
1488 }
1489 else if (c == K_RIGHTMOUSE)
1490 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001491 // Right mouse down: reposition the menu.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001492 vungetc(c);
1493 break;
1494 }
1495 else if (c == K_LEFTDRAG || c == K_RIGHTDRAG || c == K_MOUSEMOVE)
1496 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001497 // mouse moved: select item in the mouse row
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001498 pum_select_mouse_pos();
1499 }
1500 else if (c == K_LEFTMOUSE || c == K_LEFTMOUSE_NM || c == K_RIGHTRELEASE)
1501 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001502 // left mouse click: select clicked item, if any, and close;
1503 // right mouse release: select clicked item, close if any
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001504 pum_select_mouse_pos();
1505 if (pum_selected >= 0)
1506 {
Bram Moolenaar987723e2018-03-06 11:43:04 +01001507 pum_execute_menu(menu, mode);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001508 break;
1509 }
1510 if (c == K_LEFTMOUSE || c == K_LEFTMOUSE_NM)
1511 break;
1512 }
1513 }
1514
1515 vim_free(array);
1516 pum_undisplay();
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001517# ifdef FEAT_BEVAL_TERM
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001518 p_bevalterm = save_bevalterm;
1519 mch_setmouse(TRUE);
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001520# endif
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001521}
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001522
1523 void
1524pum_make_popup(char_u *path_name, int use_mouse_pos)
1525{
1526 vimmenu_T *menu;
1527
1528 if (!use_mouse_pos)
1529 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001530 // Hack: set mouse position at the cursor so that the menu pops up
1531 // around there.
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001532 mouse_row = curwin->w_winrow + curwin->w_wrow;
1533 mouse_col = curwin->w_wincol + curwin->w_wcol;
1534 }
1535
1536 menu = gui_find_menu(path_name);
1537 if (menu != NULL)
1538 pum_show_popupmenu(menu);
1539}
Bram Moolenaar4b779472005-10-04 09:12:31 +00001540#endif