blob: 279a68d7a42f406a4b11937c4c2bd304fbd60223 [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;
Bram Moolenaarde2396f2020-07-18 21:40:41 +0200645 int used_maxwidth_opt = FALSE;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200646
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200647 wp->w_popup_pos = POPPOS_TOPLEFT;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200648 if (Columns - col < 20 && Columns - col < pum_col)
649 {
650 col = pum_col - 1;
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200651 wp->w_popup_pos = POPPOS_TOPRIGHT;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200652 botpos = POPPOS_BOTRIGHT;
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200653 wp->w_maxwidth = pum_col - 1;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200654 }
655 else
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200656 wp->w_maxwidth = Columns - col + 1;
657 wp->w_maxwidth -= popup_extra_width(wp);
Bram Moolenaarde2396f2020-07-18 21:40:41 +0200658 if (wp->w_maxwidth_opt > 0 && wp->w_maxwidth > wp->w_maxwidth_opt)
659 {
660 // option value overrules computed value
661 wp->w_maxwidth = wp->w_maxwidth_opt;
662 used_maxwidth_opt = TRUE;
663 }
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200664
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200665 row -= popup_top_extra(wp);
666 if (wp->w_popup_flags & POPF_INFO_MENU)
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200667 {
668 if (pum_row < pum_win_row)
669 {
670 // menu above cursor line, align with bottom
671 row += pum_height;
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200672 wp->w_popup_pos = botpos;
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200673 }
674 else
675 // menu below cursor line, align with top
676 row += 1;
677 }
678 else
679 // align with the selected item
680 row += pum_selected - pum_first + 1;
681
Bram Moolenaarbef93ac2019-12-06 20:17:35 +0100682 wp->w_popup_flags &= ~POPF_HIDDEN;
Bram Moolenaarde2396f2020-07-18 21:40:41 +0200683 if (wp->w_maxwidth < 10 && !used_maxwidth_opt)
Bram Moolenaarbef93ac2019-12-06 20:17:35 +0100684 // The popup is not going to fit or will overlap with the cursor
685 // position, hide the popup.
686 wp->w_popup_flags |= POPF_HIDDEN;
687 else
688 popup_set_wantpos_rowcol(wp, row, col);
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200689}
690#endif
691
Bram Moolenaar4b779472005-10-04 09:12:31 +0000692/*
693 * Set the index of the currently selected item. The menu will scroll when
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000694 * necessary. When "n" is out of range don't scroll.
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000695 * This may be repeated when the preview window is used:
696 * "repeat" == 0: open preview window normally
697 * "repeat" == 1: open preview window but don't set the size
698 * "repeat" == 2: don't open preview window
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000699 * Returns TRUE when the window was resized and the location of the popup menu
700 * must be recomputed.
Bram Moolenaar4b779472005-10-04 09:12:31 +0000701 */
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000702 static int
Bram Moolenaar9cb698d2019-08-21 15:30:45 +0200703pum_set_selected(int n, int repeat UNUSED)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000704{
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000705 int resized = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000706 int context = pum_height / 2;
Bram Moolenaareaf35242019-08-20 23:14:15 +0200707#ifdef FEAT_QUICKFIX
Bram Moolenaarf0bc15c2019-08-18 19:23:45 +0200708 int prev_selected = pum_selected;
Bram Moolenaareaf35242019-08-20 23:14:15 +0200709#endif
Bram Moolenaar5a4c3082019-12-01 15:23:11 +0100710#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200711 int has_info = FALSE;
712#endif
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000713
Bram Moolenaar4b779472005-10-04 09:12:31 +0000714 pum_selected = n;
715
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000716 if (pum_selected >= 0 && pum_selected < pum_size)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000717 {
Bram Moolenaare3226be2005-12-18 22:10:00 +0000718 if (pum_first > pum_selected - 4)
719 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100720 // scroll down; when we did a jump it's probably a PageUp then
721 // scroll a whole page
Bram Moolenaare3226be2005-12-18 22:10:00 +0000722 if (pum_first > pum_selected - 2)
723 {
Bram Moolenaar7df351e2006-01-23 22:30:28 +0000724 pum_first -= pum_height - 2;
Bram Moolenaare3226be2005-12-18 22:10:00 +0000725 if (pum_first < 0)
726 pum_first = 0;
Bram Moolenaar7df351e2006-01-23 22:30:28 +0000727 else if (pum_first > pum_selected)
728 pum_first = pum_selected;
Bram Moolenaare3226be2005-12-18 22:10:00 +0000729 }
730 else
731 pum_first = pum_selected;
732 }
733 else if (pum_first < pum_selected - pum_height + 5)
734 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100735 // scroll up; when we did a jump it's probably a PageDown then
736 // scroll a whole page
Bram Moolenaare3226be2005-12-18 22:10:00 +0000737 if (pum_first < pum_selected - pum_height + 1 + 2)
Bram Moolenaar7df351e2006-01-23 22:30:28 +0000738 {
739 pum_first += pum_height - 2;
740 if (pum_first < pum_selected - pum_height + 1)
741 pum_first = pum_selected - pum_height + 1;
742 }
Bram Moolenaare3226be2005-12-18 22:10:00 +0000743 else
744 pum_first = pum_selected - pum_height + 1;
745 }
Bram Moolenaar4b779472005-10-04 09:12:31 +0000746
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100747 // Give a few lines of context when possible.
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000748 if (context > 3)
749 context = 3;
750 if (pum_height > 2)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000751 {
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000752 if (pum_first > pum_selected - context)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000753 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100754 // scroll down
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000755 pum_first = pum_selected - context;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000756 if (pum_first < 0)
757 pum_first = 0;
758 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000759 else if (pum_first < pum_selected + context - pum_height + 1)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000760 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100761 // scroll up
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000762 pum_first = pum_selected + context - pum_height + 1;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000763 }
764 }
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200765 // adjust for the number of lines displayed
766 if (pum_first > pum_size - pum_height)
767 pum_first = pum_size - pum_height;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000768
Bram Moolenaar4033c552017-09-16 20:54:51 +0200769#if defined(FEAT_QUICKFIX)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000770 /*
771 * Show extra info in the preview window if there is something and
Bram Moolenaar202c3f72019-11-21 12:12:35 +0100772 * 'completeopt' contains "preview" or "popup" or "popuphidden".
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000773 * Skip this when tried twice already.
774 * Skip this also when there is not much room.
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000775 * NOTE: Be very careful not to sync undo!
776 */
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000777 if (pum_array[pum_selected].pum_info != NULL
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000778 && Rows > 10
779 && repeat <= 1
780 && vim_strchr(p_cot, 'p') != NULL)
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000781 {
782 win_T *curwin_save = curwin;
Bram Moolenaar9ad89c62017-10-26 22:04:04 +0200783 tabpage_T *curtab_save = curtab;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000784 int res = OK;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100785# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200786 use_popup_T use_popup;
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200787# else
Bram Moolenaara2c2ae42019-11-30 20:58:46 +0100788# define use_popup USEPOPUP_NONE
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200789# endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100790# ifdef FEAT_PROP_POPUP
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200791 has_info = TRUE;
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200792 if (strstr((char *)p_cot, "popuphidden") != NULL)
793 use_popup = USEPOPUP_HIDDEN;
794 else if (strstr((char *)p_cot, "popup") != NULL)
795 use_popup = USEPOPUP_NORMAL;
796 else
797 use_popup = USEPOPUP_NONE;
Bram Moolenaard570ab92019-09-03 23:20:05 +0200798# endif
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200799 // Open a preview window and set "curwin" to it.
800 // 3 lines by default, prefer 'previewheight' if set and smaller.
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000801 g_do_tagpreview = 3;
Bram Moolenaaree236d02010-10-27 17:11:15 +0200802 if (p_pvh > 0 && p_pvh < g_do_tagpreview)
803 g_do_tagpreview = p_pvh;
Bram Moolenaarc8045152014-07-09 19:58:24 +0200804 ++RedrawingDisabled;
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200805 // Prevent undo sync here, if an autocommand syncs undo weird
806 // things can happen to the undo tree.
Bram Moolenaare7d13762015-10-30 14:23:33 +0100807 ++no_u_sync;
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200808 resized = prepare_tagpreview(FALSE, FALSE, use_popup);
Bram Moolenaare7d13762015-10-30 14:23:33 +0100809 --no_u_sync;
Bram Moolenaarc8045152014-07-09 19:58:24 +0200810 --RedrawingDisabled;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000811 g_do_tagpreview = 0;
812
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200813 if (curwin->w_p_pvw
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100814# ifdef FEAT_PROP_POPUP
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200815 || (curwin->w_popup_flags & POPF_INFO)
816# endif
817 )
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000818 {
Bram Moolenaar50e53762016-10-27 14:49:15 +0200819 if (!resized
820 && curbuf->b_nwindows == 1
821 && curbuf->b_fname == NULL
Bram Moolenaar26910de2019-06-15 19:37:15 +0200822 && bt_nofile(curbuf)
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000823 && curbuf->b_p_bh[0] == 'w')
824 {
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200825 // Already a "wipeout" buffer, make it empty.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100826 while (!BUFEMPTY())
Bram Moolenaarca70c072020-05-30 20:30:46 +0200827 ml_delete((linenr_T)1);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000828 }
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000829 else
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000830 {
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200831 // Don't want to sync undo in the current buffer.
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000832 ++no_u_sync;
Bram Moolenaar701f7af2008-11-15 13:12:07 +0000833 res = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, 0, NULL);
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000834 --no_u_sync;
835 if (res == OK)
836 {
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200837 // Edit a new, empty buffer. Set options for a "wipeout"
838 // buffer.
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000839 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
840 set_option_value((char_u *)"bt", 0L,
841 (char_u *)"nofile", OPT_LOCAL);
842 set_option_value((char_u *)"bh", 0L,
843 (char_u *)"wipe", OPT_LOCAL);
844 set_option_value((char_u *)"diff", 0L,
Bram Moolenaar7f514742007-06-28 19:33:43 +0000845 NULL, OPT_LOCAL);
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000846 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000847 }
848 if (res == OK)
849 {
850 char_u *p, *e;
851 linenr_T lnum = 0;
852
853 for (p = pum_array[pum_selected].pum_info; *p != NUL; )
854 {
855 e = vim_strchr(p, '\n');
856 if (e == NULL)
857 {
858 ml_append(lnum++, p, 0, FALSE);
859 break;
860 }
861 else
862 {
863 *e = NUL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000864 ml_append(lnum++, p, (int)(e - p + 1), FALSE);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000865 *e = '\n';
866 p = e + 1;
867 }
868 }
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200869 // delete the empty last line
Bram Moolenaarca70c072020-05-30 20:30:46 +0200870 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000871
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100872 // Increase the height of the preview window to show the
873 // text, but no more than 'previewheight' lines.
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200874 if (repeat == 0 && use_popup == USEPOPUP_NONE)
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000875 {
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000876 if (lnum > p_pvh)
877 lnum = p_pvh;
878 if (curwin->w_height < lnum)
879 {
880 win_setheight((int)lnum);
881 resized = TRUE;
882 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000883 }
884
885 curbuf->b_changed = 0;
886 curbuf->b_p_ma = FALSE;
Bram Moolenaarf0bc15c2019-08-18 19:23:45 +0200887 if (pum_selected != prev_selected)
888 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100889# ifdef FEAT_PROP_POPUP
Bram Moolenaarf0bc15c2019-08-18 19:23:45 +0200890 curwin->w_firstline = 1;
891# endif
892 curwin->w_topline = 1;
893 }
894 else if (curwin->w_topline > curbuf->b_ml.ml_line_count)
895 curwin->w_topline = curbuf->b_ml.ml_line_count;
896 curwin->w_cursor.lnum = curwin->w_topline;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000897 curwin->w_cursor.col = 0;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100898# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200899 if (use_popup != USEPOPUP_NONE)
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200900 {
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200901 pum_position_info_popup(curwin);
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200902 if (win_valid(curwin_save))
903 redraw_win_later(curwin_save, SOME_VALID);
904 }
905# endif
Bram Moolenaar9ad89c62017-10-26 22:04:04 +0200906 if ((curwin != curwin_save && win_valid(curwin_save))
907 || (curtab != curtab_save
908 && valid_tabpage(curtab_save)))
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000909 {
Bram Moolenaar9ad89c62017-10-26 22:04:04 +0200910 if (curtab != curtab_save && valid_tabpage(curtab_save))
911 goto_tabpage_tp(curtab_save, FALSE, FALSE);
912
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100913 // When the first completion is done and the preview
914 // window is not resized, skip the preview window's
915 // status line redrawing.
Bram Moolenaar2bace3e2014-07-23 21:10:43 +0200916 if (ins_compl_active() && !resized)
917 curwin->w_redr_status = FALSE;
918
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100919 // Return cursor to where we were
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000920 validate_cursor();
Bram Moolenaar600dddc2006-03-12 22:05:10 +0000921 redraw_later(SOME_VALID);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000922
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100923 // When the preview window was resized we need to
924 // update the view on the buffer. Only go back to
925 // the window when needed, otherwise it will always be
Bram Moolenaar5e5a98d2019-12-15 14:55:33 +0100926 // redrawn.
Bram Moolenaar5dd143e2019-08-15 21:34:34 +0200927 if (resized && win_valid(curwin_save))
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000928 {
Bram Moolenaare7d13762015-10-30 14:23:33 +0100929 ++no_u_sync;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000930 win_enter(curwin_save, TRUE);
Bram Moolenaare7d13762015-10-30 14:23:33 +0100931 --no_u_sync;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000932 update_topline();
933 }
934
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100935 // Update the screen before drawing the popup menu.
936 // Enable updating the status lines.
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100937 pum_pretend_not_visible = TRUE;
938 // But don't draw text at the new popup menu position,
Bram Moolenaar5e5a98d2019-12-15 14:55:33 +0100939 // it causes flicker. When resizing we need to draw
940 // anyway, the position may change later.
941 pum_will_redraw = !resized;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000942 update_screen(0);
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100943 pum_pretend_not_visible = FALSE;
944 pum_will_redraw = FALSE;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000945
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000946 if (!resized && win_valid(curwin_save))
Bram Moolenaare7d13762015-10-30 14:23:33 +0100947 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100948# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200949 win_T *wp = curwin;
950# endif
Bram Moolenaare7d13762015-10-30 14:23:33 +0100951 ++no_u_sync;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000952 win_enter(curwin_save, TRUE);
Bram Moolenaare7d13762015-10-30 14:23:33 +0100953 --no_u_sync;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100954# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200955 if (use_popup == USEPOPUP_HIDDEN && win_valid(wp))
956 popup_hide(wp);
957# endif
Bram Moolenaare7d13762015-10-30 14:23:33 +0100958 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000959
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100960 // May need to update the screen again when there are
961 // autocommands involved.
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100962 pum_pretend_not_visible = TRUE;
Bram Moolenaar5e5a98d2019-12-15 14:55:33 +0100963 pum_will_redraw = !resized;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000964 update_screen(0);
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100965 pum_pretend_not_visible = FALSE;
966 pum_will_redraw = FALSE;
Bram Moolenaarae654382019-01-17 21:09:05 +0100967 call_update_screen = FALSE;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000968 }
969 }
970 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100971# if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaar5dd143e2019-08-15 21:34:34 +0200972 if (WIN_IS_POPUP(curwin))
973 // can't keep focus in a popup window
974 win_enter(firstwin, TRUE);
975# endif
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000976 }
977#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +0000978 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100979#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200980 if (!has_info)
Bram Moolenaarc7c5f102019-08-21 18:31:03 +0200981 // hide any popup info window
982 popup_hide_info();
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200983#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +0000984
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000985 if (!resized)
986 pum_redraw();
987
988 return resized;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000989}
990
991/*
992 * Undisplay the popup menu (later).
993 */
994 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100995pum_undisplay(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +0000996{
997 pum_array = NULL;
Bram Moolenaar0b565e52018-05-14 23:08:32 +0200998 redraw_all_later(NOT_VALID);
Bram Moolenaar2d694602006-08-22 19:48:48 +0000999 redraw_tabline = TRUE;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001000 status_redraw_all();
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001001#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaarc7c5f102019-08-21 18:31:03 +02001002 // hide any popup info window
1003 popup_hide_info();
Bram Moolenaar576a4a62019-08-18 15:25:17 +02001004#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +00001005}
1006
1007/*
1008 * Clear the popup menu. Currently only resets the offset to the first
1009 * displayed item.
1010 */
1011 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001012pum_clear(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +00001013{
1014 pum_first = 0;
1015}
1016
1017/*
Bram Moolenaar04357fb2019-12-10 21:50:56 +01001018 * Return TRUE if the popup menu is displayed. Used to avoid some redrawing
1019 * that could overwrite it. Overruled when "pum_pretend_not_visible" is set,
1020 * used to redraw the status lines.
Bram Moolenaar4b779472005-10-04 09:12:31 +00001021 */
1022 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001023pum_visible(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +00001024{
Bram Moolenaar04357fb2019-12-10 21:50:56 +01001025 return !pum_pretend_not_visible && pum_array != NULL;
Bram Moolenaar4b779472005-10-04 09:12:31 +00001026}
1027
Bram Moolenaare3226be2005-12-18 22:10:00 +00001028/*
Bram Moolenaar491ac282018-06-17 14:47:55 +02001029 * Reposition the popup menu to adjust for window layout changes.
1030 */
1031 void
1032pum_may_redraw(void)
1033{
1034 pumitem_T *array = pum_array;
1035 int len = pum_size;
1036 int selected = pum_selected;
1037
Bram Moolenaar04357fb2019-12-10 21:50:56 +01001038 if (!pum_visible() || pum_will_redraw)
Bram Moolenaar491ac282018-06-17 14:47:55 +02001039 return; // nothing to do
1040
Bram Moolenaar0e6e1792018-06-17 17:10:59 +02001041 if (pum_window != curwin
1042 || (pum_win_row == curwin->w_wrow + W_WINROW(curwin)
1043 && pum_win_height == curwin->w_height
1044 && pum_win_col == curwin->w_wincol
1045 && pum_win_width == curwin->w_width))
Bram Moolenaar491ac282018-06-17 14:47:55 +02001046 {
1047 // window position didn't change, redraw in the same position
1048 pum_redraw();
1049 }
1050 else
1051 {
1052 int wcol = curwin->w_wcol;
1053
1054 // Window layout changed, recompute the position.
1055 // Use the remembered w_wcol value, the cursor may have moved when a
1056 // completion was inserted, but we want the menu in the same position.
1057 pum_undisplay();
1058 curwin->w_wcol = pum_win_wcol;
1059 curwin->w_valid |= VALID_WCOL;
1060 pum_display(array, len, selected);
1061 curwin->w_wcol = wcol;
1062 }
1063}
1064
1065/*
Bram Moolenaare3226be2005-12-18 22:10:00 +00001066 * Return the height of the popup menu, the number of entries visible.
1067 * Only valid when pum_visible() returns TRUE!
1068 */
1069 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001070pum_get_height(void)
Bram Moolenaare3226be2005-12-18 22:10:00 +00001071{
1072 return pum_height;
1073}
1074
Bram Moolenaar9cb698d2019-08-21 15:30:45 +02001075#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard7f246c2019-04-08 18:15:41 +02001076/*
1077 * Add size information about the pum to "dict".
1078 */
1079 void
1080pum_set_event_info(dict_T *dict)
1081{
1082 if (!pum_visible())
1083 return;
Bram Moolenaarc0300632020-03-16 20:07:16 +01001084 (void)dict_add_number(dict, "height", pum_height);
1085 (void)dict_add_number(dict, "width", pum_width);
1086 (void)dict_add_number(dict, "row", pum_row);
1087 (void)dict_add_number(dict, "col", pum_col);
1088 (void)dict_add_number(dict, "size", pum_size);
1089 (void)dict_add_bool(dict, "scrollbar",
1090 pum_scrollbar ? VVAL_TRUE : VVAL_FALSE);
Bram Moolenaard7f246c2019-04-08 18:15:41 +02001091}
Bram Moolenaar9cb698d2019-08-21 15:30:45 +02001092#endif
Bram Moolenaard7f246c2019-04-08 18:15:41 +02001093
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001094#if defined(FEAT_BEVAL_TERM) || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001095 static void
1096pum_position_at_mouse(int min_width)
1097{
1098 if (Rows - mouse_row > pum_size)
1099 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001100 // Enough space below the mouse row.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001101 pum_row = mouse_row + 1;
1102 if (pum_height > Rows - pum_row)
1103 pum_height = Rows - pum_row;
1104 }
1105 else
1106 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001107 // Show above the mouse row, reduce height if it does not fit.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001108 pum_row = mouse_row - pum_size;
1109 if (pum_row < 0)
1110 {
1111 pum_height += pum_row;
1112 pum_row = 0;
1113 }
1114 }
1115 if (Columns - mouse_col >= pum_base_width
1116 || Columns - mouse_col > min_width)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001117 // Enough space to show at mouse column.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001118 pum_col = mouse_col;
1119 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001120 // Not enough space, right align with window.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001121 pum_col = Columns - (pum_base_width > min_width
1122 ? min_width : pum_base_width);
1123
1124 pum_width = Columns - pum_col;
1125 if (pum_width > pum_base_width + 1)
1126 pum_width = pum_base_width + 1;
Bram Moolenaar0e6e1792018-06-17 17:10:59 +02001127
1128 // Do not redraw at cursor position.
1129 pum_window = NULL;
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001130}
1131
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001132#endif
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001133
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001134#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001135static pumitem_T *balloon_array = NULL;
1136static int balloon_arraysize;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001137
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001138# define BALLOON_MIN_WIDTH 50
1139# define BALLOON_MIN_HEIGHT 10
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001140
Bram Moolenaar246fe032017-11-19 19:56:27 +01001141typedef struct {
1142 char_u *start;
1143 int bytelen;
1144 int cells;
1145 int indent;
1146} balpart_T;
1147
1148/*
1149 * Split a string into parts to display in the balloon.
1150 * Aimed at output from gdb. Attempts to split at white space, preserve quoted
1151 * strings and make a struct look good.
1152 * Resulting array is stored in "array" and returns the size of the array.
1153 */
1154 int
1155split_message(char_u *mesg, pumitem_T **array)
1156{
1157 garray_T ga;
1158 char_u *p;
1159 balpart_T *item;
1160 int quoted = FALSE;
1161 int height;
1162 int line;
1163 int item_idx;
1164 int indent = 0;
1165 int max_cells = 0;
Bram Moolenaard1c1c822019-11-09 16:59:14 +01001166 int max_height = Rows / 2 - 1;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001167 int long_item_count = 0;
1168 int split_long_items = FALSE;
1169
1170 ga_init2(&ga, sizeof(balpart_T), 20);
1171 p = mesg;
1172
1173 while (*p != NUL)
1174 {
1175 if (ga_grow(&ga, 1) == FAIL)
1176 goto failed;
1177 item = ((balpart_T *)ga.ga_data) + ga.ga_len;
1178 item->start = p;
1179 item->indent = indent;
1180 item->cells = indent * 2;
1181 ++ga.ga_len;
1182 while (*p != NUL)
1183 {
1184 if (*p == '"')
1185 quoted = !quoted;
Bram Moolenaard1c1c822019-11-09 16:59:14 +01001186 else if (*p == '\n')
1187 break;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001188 else if (*p == '\\' && p[1] != NUL)
1189 ++p;
1190 else if (!quoted)
1191 {
1192 if ((*p == ',' && p[1] == ' ') || *p == '{' || *p == '}')
1193 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001194 // Looks like a good point to break.
Bram Moolenaar246fe032017-11-19 19:56:27 +01001195 if (*p == '{')
1196 ++indent;
1197 else if (*p == '}' && indent > 0)
1198 --indent;
1199 ++item->cells;
1200 p = skipwhite(p + 1);
1201 break;
1202 }
1203 }
1204 item->cells += ptr2cells(p);
Bram Moolenaar1614a142019-10-06 22:00:13 +02001205 p += mb_ptr2len(p);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001206 }
1207 item->bytelen = p - item->start;
Bram Moolenaard1c1c822019-11-09 16:59:14 +01001208 if (*p == '\n')
1209 ++p;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001210 if (item->cells > max_cells)
1211 max_cells = item->cells;
Bram Moolenaara3571eb2017-11-26 16:53:16 +01001212 long_item_count += (item->cells - 1) / BALLOON_MIN_WIDTH;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001213 }
1214
1215 height = 2 + ga.ga_len;
1216
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001217 // If there are long items and the height is below the limit: split lines
Bram Moolenaar246fe032017-11-19 19:56:27 +01001218 if (long_item_count > 0 && height + long_item_count <= max_height)
1219 {
1220 split_long_items = TRUE;
1221 height += long_item_count;
1222 }
1223
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001224 // Limit to half the window height, it has to fit above or below the mouse
1225 // position.
Bram Moolenaar246fe032017-11-19 19:56:27 +01001226 if (height > max_height)
1227 height = max_height;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001228 *array = ALLOC_CLEAR_MULT(pumitem_T, height);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001229 if (*array == NULL)
1230 goto failed;
1231
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001232 // Add an empty line above and below, looks better.
Bram Moolenaar246fe032017-11-19 19:56:27 +01001233 (*array)->pum_text = vim_strsave((char_u *)"");
1234 (*array + height - 1)->pum_text = vim_strsave((char_u *)"");
1235
1236 for (line = 1, item_idx = 0; line < height - 1; ++item_idx)
1237 {
1238 int skip;
1239 int thislen;
1240 int copylen;
1241 int ind;
1242 int cells;
1243
1244 item = ((balpart_T *)ga.ga_data) + item_idx;
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001245 if (item->bytelen == 0)
1246 (*array)[line++].pum_text = vim_strsave((char_u *)"");
1247 else
1248 for (skip = 0; skip < item->bytelen; skip += thislen)
Bram Moolenaar246fe032017-11-19 19:56:27 +01001249 {
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001250 if (split_long_items && item->cells >= BALLOON_MIN_WIDTH)
1251 {
1252 cells = item->indent * 2;
1253 for (p = item->start + skip;
1254 p < item->start + item->bytelen;
Bram Moolenaar1614a142019-10-06 22:00:13 +02001255 p += mb_ptr2len(p))
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001256 if ((cells += ptr2cells(p)) > BALLOON_MIN_WIDTH)
1257 break;
1258 thislen = p - (item->start + skip);
1259 }
1260 else
1261 thislen = item->bytelen;
1262
1263 // put indent at the start
1264 p = alloc(thislen + item->indent * 2 + 1);
1265 if (p == NULL)
1266 {
1267 for (line = 0; line <= height - 1; ++line)
1268 vim_free((*array)[line].pum_text);
1269 vim_free(*array);
1270 goto failed;
1271 }
1272 for (ind = 0; ind < item->indent * 2; ++ind)
1273 p[ind] = ' ';
1274
1275 // exclude spaces at the end of the string
1276 for (copylen = thislen; copylen > 0; --copylen)
1277 if (item->start[skip + copylen - 1] != ' ')
Bram Moolenaar246fe032017-11-19 19:56:27 +01001278 break;
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001279
1280 vim_strncpy(p + ind, item->start + skip, copylen);
1281 (*array)[line].pum_text = p;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001282 item->indent = 0; // wrapped line has no indent
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001283 ++line;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001284 }
Bram Moolenaar246fe032017-11-19 19:56:27 +01001285 }
1286 ga_clear(&ga);
1287 return height;
1288
1289failed:
1290 ga_clear(&ga);
1291 return 0;
1292}
1293
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001294 void
1295ui_remove_balloon(void)
1296{
1297 if (balloon_array != NULL)
1298 {
1299 pum_undisplay();
1300 while (balloon_arraysize > 0)
1301 vim_free(balloon_array[--balloon_arraysize].pum_text);
Bram Moolenaard23a8232018-02-10 18:45:26 +01001302 VIM_CLEAR(balloon_array);
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001303 }
1304}
1305
1306/*
1307 * Terminal version of a balloon, uses the popup menu code.
1308 */
1309 void
Bram Moolenaar246fe032017-11-19 19:56:27 +01001310ui_post_balloon(char_u *mesg, list_T *list)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001311{
1312 ui_remove_balloon();
1313
Bram Moolenaar246fe032017-11-19 19:56:27 +01001314 if (mesg == NULL && list == NULL)
Bram Moolenaarbe0a2592019-05-09 13:50:16 +02001315 {
1316 pum_undisplay();
Bram Moolenaar246fe032017-11-19 19:56:27 +01001317 return;
Bram Moolenaarbe0a2592019-05-09 13:50:16 +02001318 }
Bram Moolenaar246fe032017-11-19 19:56:27 +01001319 if (list != NULL)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001320 {
Bram Moolenaar246fe032017-11-19 19:56:27 +01001321 listitem_T *li;
1322 int idx;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001323
Bram Moolenaar246fe032017-11-19 19:56:27 +01001324 balloon_arraysize = list->lv_len;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001325 balloon_array = ALLOC_CLEAR_MULT(pumitem_T, list->lv_len);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001326 if (balloon_array == NULL)
1327 return;
Bram Moolenaar7e9f3512020-05-13 22:44:22 +02001328 CHECK_LIST_MATERIALIZE(list);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001329 for (idx = 0, li = list->lv_first; li != NULL; li = li->li_next, ++idx)
1330 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001331 char_u *text = tv_get_string_chk(&li->li_tv);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001332
1333 balloon_array[idx].pum_text = vim_strsave(
1334 text == NULL ? (char_u *)"" : text);
1335 }
1336 }
1337 else
1338 balloon_arraysize = split_message(mesg, &balloon_array);
1339
1340 if (balloon_arraysize > 0)
1341 {
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001342 pum_array = balloon_array;
1343 pum_size = balloon_arraysize;
1344 pum_compute_size();
1345 pum_scrollbar = 0;
1346 pum_height = balloon_arraysize;
1347
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001348 pum_position_at_mouse(BALLOON_MIN_WIDTH);
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001349 pum_selected = -1;
1350 pum_first = 0;
1351 pum_redraw();
1352 }
1353}
1354
1355/*
1356 * Called when the mouse moved, may remove any displayed balloon.
1357 */
1358 void
1359ui_may_remove_balloon(void)
1360{
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001361 // For now: remove the balloon whenever the mouse moves to another screen
1362 // cell.
1363 ui_remove_balloon();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001364}
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001365#endif
Bram Moolenaara8f04aa2018-02-10 15:36:55 +01001366
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001367#if defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001368/*
1369 * Select the pum entry at the mouse position.
1370 */
1371 static void
1372pum_select_mouse_pos(void)
1373{
1374 int idx = mouse_row - pum_row;
1375
1376 if (idx < 0 || idx >= pum_size)
1377 pum_selected = -1;
1378 else if (*pum_array[idx].pum_text != NUL)
1379 pum_selected = idx;
1380}
1381
1382/*
1383 * Execute the currently selected popup menu item.
1384 */
1385 static void
Bram Moolenaar987723e2018-03-06 11:43:04 +01001386pum_execute_menu(vimmenu_T *menu, int mode)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001387{
1388 vimmenu_T *mp;
1389 int idx = 0;
1390 exarg_T ea;
1391
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001392 FOR_ALL_CHILD_MENUS(menu, mp)
Bram Moolenaar987723e2018-03-06 11:43:04 +01001393 if ((mp->modes & mp->enabled & mode) && idx++ == pum_selected)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001394 {
Bram Moolenaara80faa82020-04-12 19:37:17 +02001395 CLEAR_FIELD(ea);
Bram Moolenaar4c5d8152018-10-19 22:36:53 +02001396 execute_menu(&ea, mp, -1);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001397 break;
1398 }
1399}
1400
1401/*
1402 * Open the terminal version of the popup menu and don't return until it is
1403 * closed.
1404 */
1405 void
1406pum_show_popupmenu(vimmenu_T *menu)
1407{
1408 vimmenu_T *mp;
1409 int idx = 0;
1410 pumitem_T *array;
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001411# ifdef FEAT_BEVAL_TERM
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001412 int save_bevalterm = p_bevalterm;
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001413# endif
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001414 int mode;
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001415
1416 pum_undisplay();
1417 pum_size = 0;
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001418 mode = get_menu_mode_flag();
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001419
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001420 FOR_ALL_CHILD_MENUS(menu, mp)
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001421 if (menu_is_separator(mp->dname)
1422 || (mp->modes & mp->enabled & mode))
1423 ++pum_size;
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001424
Bram Moolenaarf42b45d2019-01-06 13:11:05 +01001425 // When there are only Terminal mode menus, using "popup Edit" results in
1426 // pum_size being zero.
1427 if (pum_size <= 0)
1428 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001429 emsg(e_menuothermode);
Bram Moolenaarf42b45d2019-01-06 13:11:05 +01001430 return;
1431 }
1432
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001433 array = ALLOC_CLEAR_MULT(pumitem_T, pum_size);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001434 if (array == NULL)
1435 return;
1436
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001437 FOR_ALL_CHILD_MENUS(menu, mp)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001438 if (menu_is_separator(mp->dname))
1439 array[idx++].pum_text = (char_u *)"";
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001440 else if (mp->modes & mp->enabled & mode)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001441 array[idx++].pum_text = mp->dname;
1442
1443 pum_array = array;
1444 pum_compute_size();
1445 pum_scrollbar = 0;
1446 pum_height = pum_size;
1447 pum_position_at_mouse(20);
1448
1449 pum_selected = -1;
1450 pum_first = 0;
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001451# ifdef FEAT_BEVAL_TERM
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001452 p_bevalterm = TRUE; // track mouse movement
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001453 mch_setmouse(TRUE);
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001454# endif
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001455
1456 for (;;)
1457 {
1458 int c;
1459
1460 pum_redraw();
Bram Moolenaar987723e2018-03-06 11:43:04 +01001461 setcursor_mayforce(TRUE);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001462 out_flush();
1463
1464 c = vgetc();
Bram Moolenaar5c3fb042019-05-30 15:53:29 +02001465
1466 // Bail out when typing Esc, CTRL-C or some callback closed the popup
1467 // menu.
1468 if (c == ESC || c == Ctrl_C || pum_array == NULL)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001469 break;
1470 else if (c == CAR || c == NL)
1471 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001472 // enter: select current item, if any, and close
Bram Moolenaar987723e2018-03-06 11:43:04 +01001473 pum_execute_menu(menu, mode);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001474 break;
1475 }
1476 else if (c == 'k' || c == K_UP || c == K_MOUSEUP)
1477 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001478 // cursor up: select previous item
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001479 while (pum_selected > 0)
1480 {
1481 --pum_selected;
1482 if (*array[pum_selected].pum_text != NUL)
1483 break;
1484 }
1485 }
1486 else if (c == 'j' || c == K_DOWN || c == K_MOUSEDOWN)
1487 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001488 // cursor down: select next item
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001489 while (pum_selected < pum_size - 1)
1490 {
1491 ++pum_selected;
1492 if (*array[pum_selected].pum_text != NUL)
1493 break;
1494 }
1495 }
1496 else if (c == K_RIGHTMOUSE)
1497 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001498 // Right mouse down: reposition the menu.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001499 vungetc(c);
1500 break;
1501 }
1502 else if (c == K_LEFTDRAG || c == K_RIGHTDRAG || c == K_MOUSEMOVE)
1503 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001504 // mouse moved: select item in the mouse row
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001505 pum_select_mouse_pos();
1506 }
1507 else if (c == K_LEFTMOUSE || c == K_LEFTMOUSE_NM || c == K_RIGHTRELEASE)
1508 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001509 // left mouse click: select clicked item, if any, and close;
1510 // right mouse release: select clicked item, close if any
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001511 pum_select_mouse_pos();
1512 if (pum_selected >= 0)
1513 {
Bram Moolenaar987723e2018-03-06 11:43:04 +01001514 pum_execute_menu(menu, mode);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001515 break;
1516 }
1517 if (c == K_LEFTMOUSE || c == K_LEFTMOUSE_NM)
1518 break;
1519 }
1520 }
1521
1522 vim_free(array);
1523 pum_undisplay();
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001524# ifdef FEAT_BEVAL_TERM
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001525 p_bevalterm = save_bevalterm;
1526 mch_setmouse(TRUE);
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001527# endif
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001528}
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001529
1530 void
1531pum_make_popup(char_u *path_name, int use_mouse_pos)
1532{
1533 vimmenu_T *menu;
1534
1535 if (!use_mouse_pos)
1536 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001537 // Hack: set mouse position at the cursor so that the menu pops up
1538 // around there.
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001539 mouse_row = curwin->w_winrow + curwin->w_wrow;
1540 mouse_col = curwin->w_wincol + curwin->w_wcol;
1541 }
1542
1543 menu = gui_find_menu(path_name);
1544 if (menu != NULL)
1545 pum_show_popupmenu(menu);
1546}
Bram Moolenaar4b779472005-10-04 09:12:31 +00001547#endif