blob: 8033d7211177abbbb247db74352490ff774ff4c8 [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 Moolenaar2dfae042020-11-15 14:09:37 +0100798 if (use_popup != USEPOPUP_NONE)
799 // don't use WinEnter or WinLeave autocommands for the info
800 // popup
801 block_autocmds();
Bram Moolenaard570ab92019-09-03 23:20:05 +0200802# endif
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200803 // Open a preview window and set "curwin" to it.
804 // 3 lines by default, prefer 'previewheight' if set and smaller.
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000805 g_do_tagpreview = 3;
Bram Moolenaaree236d02010-10-27 17:11:15 +0200806 if (p_pvh > 0 && p_pvh < g_do_tagpreview)
807 g_do_tagpreview = p_pvh;
Bram Moolenaarc8045152014-07-09 19:58:24 +0200808 ++RedrawingDisabled;
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200809 // Prevent undo sync here, if an autocommand syncs undo weird
810 // things can happen to the undo tree.
Bram Moolenaare7d13762015-10-30 14:23:33 +0100811 ++no_u_sync;
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200812 resized = prepare_tagpreview(FALSE, FALSE, use_popup);
Bram Moolenaare7d13762015-10-30 14:23:33 +0100813 --no_u_sync;
Bram Moolenaarc8045152014-07-09 19:58:24 +0200814 --RedrawingDisabled;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000815 g_do_tagpreview = 0;
816
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200817 if (curwin->w_p_pvw
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100818# ifdef FEAT_PROP_POPUP
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200819 || (curwin->w_popup_flags & POPF_INFO)
820# endif
821 )
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000822 {
Bram Moolenaar50e53762016-10-27 14:49:15 +0200823 if (!resized
824 && curbuf->b_nwindows == 1
825 && curbuf->b_fname == NULL
Bram Moolenaar26910de2019-06-15 19:37:15 +0200826 && bt_nofile(curbuf)
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000827 && curbuf->b_p_bh[0] == 'w')
828 {
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200829 // Already a "wipeout" buffer, make it empty.
Bram Moolenaarb5aedf32017-03-12 18:23:53 +0100830 while (!BUFEMPTY())
Bram Moolenaarca70c072020-05-30 20:30:46 +0200831 ml_delete((linenr_T)1);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000832 }
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000833 else
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000834 {
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200835 // Don't want to sync undo in the current buffer.
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000836 ++no_u_sync;
Bram Moolenaar701f7af2008-11-15 13:12:07 +0000837 res = do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, 0, NULL);
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000838 --no_u_sync;
839 if (res == OK)
840 {
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200841 // Edit a new, empty buffer. Set options for a "wipeout"
842 // buffer.
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000843 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL);
844 set_option_value((char_u *)"bt", 0L,
845 (char_u *)"nofile", OPT_LOCAL);
846 set_option_value((char_u *)"bh", 0L,
847 (char_u *)"wipe", OPT_LOCAL);
848 set_option_value((char_u *)"diff", 0L,
Bram Moolenaar7f514742007-06-28 19:33:43 +0000849 NULL, OPT_LOCAL);
Bram Moolenaar779b74b2006-04-10 14:55:34 +0000850 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000851 }
852 if (res == OK)
853 {
854 char_u *p, *e;
855 linenr_T lnum = 0;
856
857 for (p = pum_array[pum_selected].pum_info; *p != NUL; )
858 {
859 e = vim_strchr(p, '\n');
860 if (e == NULL)
861 {
862 ml_append(lnum++, p, 0, FALSE);
863 break;
864 }
865 else
866 {
867 *e = NUL;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000868 ml_append(lnum++, p, (int)(e - p + 1), FALSE);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000869 *e = '\n';
870 p = e + 1;
871 }
872 }
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200873 // delete the empty last line
Bram Moolenaarca70c072020-05-30 20:30:46 +0200874 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000875
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100876 // Increase the height of the preview window to show the
877 // text, but no more than 'previewheight' lines.
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200878 if (repeat == 0 && use_popup == USEPOPUP_NONE)
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000879 {
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000880 if (lnum > p_pvh)
881 lnum = p_pvh;
882 if (curwin->w_height < lnum)
883 {
884 win_setheight((int)lnum);
885 resized = TRUE;
886 }
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000887 }
888
889 curbuf->b_changed = 0;
890 curbuf->b_p_ma = FALSE;
Bram Moolenaarf0bc15c2019-08-18 19:23:45 +0200891 if (pum_selected != prev_selected)
892 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100893# ifdef FEAT_PROP_POPUP
Bram Moolenaarf0bc15c2019-08-18 19:23:45 +0200894 curwin->w_firstline = 1;
895# endif
896 curwin->w_topline = 1;
897 }
898 else if (curwin->w_topline > curbuf->b_ml.ml_line_count)
899 curwin->w_topline = curbuf->b_ml.ml_line_count;
900 curwin->w_cursor.lnum = curwin->w_topline;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000901 curwin->w_cursor.col = 0;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100902# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200903 if (use_popup != USEPOPUP_NONE)
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200904 {
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200905 pum_position_info_popup(curwin);
Bram Moolenaarc1f87c92019-08-21 19:33:16 +0200906 if (win_valid(curwin_save))
907 redraw_win_later(curwin_save, SOME_VALID);
908 }
909# endif
Bram Moolenaar9ad89c62017-10-26 22:04:04 +0200910 if ((curwin != curwin_save && win_valid(curwin_save))
911 || (curtab != curtab_save
912 && valid_tabpage(curtab_save)))
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000913 {
Bram Moolenaar9ad89c62017-10-26 22:04:04 +0200914 if (curtab != curtab_save && valid_tabpage(curtab_save))
915 goto_tabpage_tp(curtab_save, FALSE, FALSE);
916
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100917 // When the first completion is done and the preview
918 // window is not resized, skip the preview window's
919 // status line redrawing.
Bram Moolenaar2bace3e2014-07-23 21:10:43 +0200920 if (ins_compl_active() && !resized)
921 curwin->w_redr_status = FALSE;
922
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100923 // Return cursor to where we were
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000924 validate_cursor();
Bram Moolenaar600dddc2006-03-12 22:05:10 +0000925 redraw_later(SOME_VALID);
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000926
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100927 // When the preview window was resized we need to
928 // update the view on the buffer. Only go back to
929 // the window when needed, otherwise it will always be
Bram Moolenaar5e5a98d2019-12-15 14:55:33 +0100930 // redrawn.
Bram Moolenaar5dd143e2019-08-15 21:34:34 +0200931 if (resized && win_valid(curwin_save))
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000932 {
Bram Moolenaare7d13762015-10-30 14:23:33 +0100933 ++no_u_sync;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000934 win_enter(curwin_save, TRUE);
Bram Moolenaare7d13762015-10-30 14:23:33 +0100935 --no_u_sync;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000936 update_topline();
937 }
938
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100939 // Update the screen before drawing the popup menu.
940 // Enable updating the status lines.
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100941 pum_pretend_not_visible = TRUE;
942 // But don't draw text at the new popup menu position,
Bram Moolenaar5e5a98d2019-12-15 14:55:33 +0100943 // it causes flicker. When resizing we need to draw
944 // anyway, the position may change later.
945 pum_will_redraw = !resized;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000946 update_screen(0);
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100947 pum_pretend_not_visible = FALSE;
948 pum_will_redraw = FALSE;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000949
Bram Moolenaard2cec5b2006-03-28 21:08:56 +0000950 if (!resized && win_valid(curwin_save))
Bram Moolenaare7d13762015-10-30 14:23:33 +0100951 {
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100952# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200953 win_T *wp = curwin;
954# endif
Bram Moolenaare7d13762015-10-30 14:23:33 +0100955 ++no_u_sync;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000956 win_enter(curwin_save, TRUE);
Bram Moolenaare7d13762015-10-30 14:23:33 +0100957 --no_u_sync;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100958# ifdef FEAT_PROP_POPUP
Bram Moolenaardca7abe2019-10-20 18:17:57 +0200959 if (use_popup == USEPOPUP_HIDDEN && win_valid(wp))
960 popup_hide(wp);
961# endif
Bram Moolenaare7d13762015-10-30 14:23:33 +0100962 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000963
Bram Moolenaar63d9e732019-12-05 21:10:38 +0100964 // May need to update the screen again when there are
965 // autocommands involved.
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100966 pum_pretend_not_visible = TRUE;
Bram Moolenaar5e5a98d2019-12-15 14:55:33 +0100967 pum_will_redraw = !resized;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000968 update_screen(0);
Bram Moolenaar04357fb2019-12-10 21:50:56 +0100969 pum_pretend_not_visible = FALSE;
970 pum_will_redraw = FALSE;
Bram Moolenaarae654382019-01-17 21:09:05 +0100971 call_update_screen = FALSE;
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000972 }
973 }
974 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100975# if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaar5dd143e2019-08-15 21:34:34 +0200976 if (WIN_IS_POPUP(curwin))
977 // can't keep focus in a popup window
978 win_enter(firstwin, TRUE);
979# endif
Bram Moolenaar2dfae042020-11-15 14:09:37 +0100980# ifdef FEAT_PROP_POPUP
981 if (use_popup != USEPOPUP_NONE)
982 unblock_autocmds();
983# endif
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000984 }
985#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +0000986 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100987#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaar576a4a62019-08-18 15:25:17 +0200988 if (!has_info)
Bram Moolenaarc7c5f102019-08-21 18:31:03 +0200989 // hide any popup info window
990 popup_hide_info();
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200991#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +0000992
Bram Moolenaar96d2c5b2006-03-11 21:27:59 +0000993 if (!resized)
994 pum_redraw();
995
996 return resized;
Bram Moolenaar4b779472005-10-04 09:12:31 +0000997}
998
999/*
1000 * Undisplay the popup menu (later).
1001 */
1002 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001003pum_undisplay(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +00001004{
1005 pum_array = NULL;
Bram Moolenaar0b565e52018-05-14 23:08:32 +02001006 redraw_all_later(NOT_VALID);
Bram Moolenaar2d694602006-08-22 19:48:48 +00001007 redraw_tabline = TRUE;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001008 status_redraw_all();
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001009#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
Bram Moolenaarc7c5f102019-08-21 18:31:03 +02001010 // hide any popup info window
1011 popup_hide_info();
Bram Moolenaar576a4a62019-08-18 15:25:17 +02001012#endif
Bram Moolenaar4b779472005-10-04 09:12:31 +00001013}
1014
1015/*
1016 * Clear the popup menu. Currently only resets the offset to the first
1017 * displayed item.
1018 */
1019 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001020pum_clear(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +00001021{
1022 pum_first = 0;
1023}
1024
1025/*
Bram Moolenaar04357fb2019-12-10 21:50:56 +01001026 * Return TRUE if the popup menu is displayed. Used to avoid some redrawing
1027 * that could overwrite it. Overruled when "pum_pretend_not_visible" is set,
1028 * used to redraw the status lines.
Bram Moolenaar4b779472005-10-04 09:12:31 +00001029 */
1030 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001031pum_visible(void)
Bram Moolenaar4b779472005-10-04 09:12:31 +00001032{
Bram Moolenaar04357fb2019-12-10 21:50:56 +01001033 return !pum_pretend_not_visible && pum_array != NULL;
Bram Moolenaar4b779472005-10-04 09:12:31 +00001034}
1035
Bram Moolenaare3226be2005-12-18 22:10:00 +00001036/*
Bram Moolenaar491ac282018-06-17 14:47:55 +02001037 * Reposition the popup menu to adjust for window layout changes.
1038 */
1039 void
1040pum_may_redraw(void)
1041{
1042 pumitem_T *array = pum_array;
1043 int len = pum_size;
1044 int selected = pum_selected;
1045
Bram Moolenaar04357fb2019-12-10 21:50:56 +01001046 if (!pum_visible() || pum_will_redraw)
Bram Moolenaar491ac282018-06-17 14:47:55 +02001047 return; // nothing to do
1048
Bram Moolenaar0e6e1792018-06-17 17:10:59 +02001049 if (pum_window != curwin
1050 || (pum_win_row == curwin->w_wrow + W_WINROW(curwin)
1051 && pum_win_height == curwin->w_height
1052 && pum_win_col == curwin->w_wincol
1053 && pum_win_width == curwin->w_width))
Bram Moolenaar491ac282018-06-17 14:47:55 +02001054 {
1055 // window position didn't change, redraw in the same position
1056 pum_redraw();
1057 }
1058 else
1059 {
1060 int wcol = curwin->w_wcol;
1061
1062 // Window layout changed, recompute the position.
1063 // Use the remembered w_wcol value, the cursor may have moved when a
1064 // completion was inserted, but we want the menu in the same position.
1065 pum_undisplay();
1066 curwin->w_wcol = pum_win_wcol;
1067 curwin->w_valid |= VALID_WCOL;
1068 pum_display(array, len, selected);
1069 curwin->w_wcol = wcol;
1070 }
1071}
1072
1073/*
Bram Moolenaare3226be2005-12-18 22:10:00 +00001074 * Return the height of the popup menu, the number of entries visible.
1075 * Only valid when pum_visible() returns TRUE!
1076 */
1077 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001078pum_get_height(void)
Bram Moolenaare3226be2005-12-18 22:10:00 +00001079{
1080 return pum_height;
1081}
1082
Bram Moolenaar9cb698d2019-08-21 15:30:45 +02001083#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaard7f246c2019-04-08 18:15:41 +02001084/*
1085 * Add size information about the pum to "dict".
1086 */
1087 void
1088pum_set_event_info(dict_T *dict)
1089{
1090 if (!pum_visible())
1091 return;
Bram Moolenaarc0300632020-03-16 20:07:16 +01001092 (void)dict_add_number(dict, "height", pum_height);
1093 (void)dict_add_number(dict, "width", pum_width);
1094 (void)dict_add_number(dict, "row", pum_row);
1095 (void)dict_add_number(dict, "col", pum_col);
1096 (void)dict_add_number(dict, "size", pum_size);
1097 (void)dict_add_bool(dict, "scrollbar",
1098 pum_scrollbar ? VVAL_TRUE : VVAL_FALSE);
Bram Moolenaard7f246c2019-04-08 18:15:41 +02001099}
Bram Moolenaar9cb698d2019-08-21 15:30:45 +02001100#endif
Bram Moolenaard7f246c2019-04-08 18:15:41 +02001101
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001102#if defined(FEAT_BEVAL_TERM) || defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001103 static void
1104pum_position_at_mouse(int min_width)
1105{
1106 if (Rows - mouse_row > pum_size)
1107 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001108 // Enough space below the mouse row.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001109 pum_row = mouse_row + 1;
1110 if (pum_height > Rows - pum_row)
1111 pum_height = Rows - pum_row;
1112 }
1113 else
1114 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001115 // Show above the mouse row, reduce height if it does not fit.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001116 pum_row = mouse_row - pum_size;
1117 if (pum_row < 0)
1118 {
1119 pum_height += pum_row;
1120 pum_row = 0;
1121 }
1122 }
1123 if (Columns - mouse_col >= pum_base_width
1124 || Columns - mouse_col > min_width)
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001125 // Enough space to show at mouse column.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001126 pum_col = mouse_col;
1127 else
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001128 // Not enough space, right align with window.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001129 pum_col = Columns - (pum_base_width > min_width
1130 ? min_width : pum_base_width);
1131
1132 pum_width = Columns - pum_col;
1133 if (pum_width > pum_base_width + 1)
1134 pum_width = pum_base_width + 1;
Bram Moolenaar0e6e1792018-06-17 17:10:59 +02001135
1136 // Do not redraw at cursor position.
1137 pum_window = NULL;
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001138}
1139
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001140#endif
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001141
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001142#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001143static pumitem_T *balloon_array = NULL;
1144static int balloon_arraysize;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001145
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001146# define BALLOON_MIN_WIDTH 50
1147# define BALLOON_MIN_HEIGHT 10
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001148
Bram Moolenaar246fe032017-11-19 19:56:27 +01001149typedef struct {
1150 char_u *start;
1151 int bytelen;
1152 int cells;
1153 int indent;
1154} balpart_T;
1155
1156/*
1157 * Split a string into parts to display in the balloon.
1158 * Aimed at output from gdb. Attempts to split at white space, preserve quoted
1159 * strings and make a struct look good.
1160 * Resulting array is stored in "array" and returns the size of the array.
1161 */
1162 int
1163split_message(char_u *mesg, pumitem_T **array)
1164{
1165 garray_T ga;
1166 char_u *p;
1167 balpart_T *item;
1168 int quoted = FALSE;
1169 int height;
1170 int line;
1171 int item_idx;
1172 int indent = 0;
1173 int max_cells = 0;
Bram Moolenaard1c1c822019-11-09 16:59:14 +01001174 int max_height = Rows / 2 - 1;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001175 int long_item_count = 0;
1176 int split_long_items = FALSE;
1177
1178 ga_init2(&ga, sizeof(balpart_T), 20);
1179 p = mesg;
1180
1181 while (*p != NUL)
1182 {
1183 if (ga_grow(&ga, 1) == FAIL)
1184 goto failed;
1185 item = ((balpart_T *)ga.ga_data) + ga.ga_len;
1186 item->start = p;
1187 item->indent = indent;
1188 item->cells = indent * 2;
1189 ++ga.ga_len;
1190 while (*p != NUL)
1191 {
1192 if (*p == '"')
1193 quoted = !quoted;
Bram Moolenaard1c1c822019-11-09 16:59:14 +01001194 else if (*p == '\n')
1195 break;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001196 else if (*p == '\\' && p[1] != NUL)
1197 ++p;
1198 else if (!quoted)
1199 {
1200 if ((*p == ',' && p[1] == ' ') || *p == '{' || *p == '}')
1201 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001202 // Looks like a good point to break.
Bram Moolenaar246fe032017-11-19 19:56:27 +01001203 if (*p == '{')
1204 ++indent;
1205 else if (*p == '}' && indent > 0)
1206 --indent;
1207 ++item->cells;
1208 p = skipwhite(p + 1);
1209 break;
1210 }
1211 }
1212 item->cells += ptr2cells(p);
Bram Moolenaar1614a142019-10-06 22:00:13 +02001213 p += mb_ptr2len(p);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001214 }
1215 item->bytelen = p - item->start;
Bram Moolenaard1c1c822019-11-09 16:59:14 +01001216 if (*p == '\n')
1217 ++p;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001218 if (item->cells > max_cells)
1219 max_cells = item->cells;
Bram Moolenaara3571eb2017-11-26 16:53:16 +01001220 long_item_count += (item->cells - 1) / BALLOON_MIN_WIDTH;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001221 }
1222
1223 height = 2 + ga.ga_len;
1224
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001225 // If there are long items and the height is below the limit: split lines
Bram Moolenaar246fe032017-11-19 19:56:27 +01001226 if (long_item_count > 0 && height + long_item_count <= max_height)
1227 {
1228 split_long_items = TRUE;
1229 height += long_item_count;
1230 }
1231
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001232 // Limit to half the window height, it has to fit above or below the mouse
1233 // position.
Bram Moolenaar246fe032017-11-19 19:56:27 +01001234 if (height > max_height)
1235 height = max_height;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001236 *array = ALLOC_CLEAR_MULT(pumitem_T, height);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001237 if (*array == NULL)
1238 goto failed;
1239
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001240 // Add an empty line above and below, looks better.
Bram Moolenaar246fe032017-11-19 19:56:27 +01001241 (*array)->pum_text = vim_strsave((char_u *)"");
1242 (*array + height - 1)->pum_text = vim_strsave((char_u *)"");
1243
1244 for (line = 1, item_idx = 0; line < height - 1; ++item_idx)
1245 {
1246 int skip;
1247 int thislen;
1248 int copylen;
1249 int ind;
1250 int cells;
1251
1252 item = ((balpart_T *)ga.ga_data) + item_idx;
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001253 if (item->bytelen == 0)
1254 (*array)[line++].pum_text = vim_strsave((char_u *)"");
1255 else
1256 for (skip = 0; skip < item->bytelen; skip += thislen)
Bram Moolenaar246fe032017-11-19 19:56:27 +01001257 {
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001258 if (split_long_items && item->cells >= BALLOON_MIN_WIDTH)
1259 {
1260 cells = item->indent * 2;
1261 for (p = item->start + skip;
1262 p < item->start + item->bytelen;
Bram Moolenaar1614a142019-10-06 22:00:13 +02001263 p += mb_ptr2len(p))
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001264 if ((cells += ptr2cells(p)) > BALLOON_MIN_WIDTH)
1265 break;
1266 thislen = p - (item->start + skip);
1267 }
1268 else
1269 thislen = item->bytelen;
1270
1271 // put indent at the start
1272 p = alloc(thislen + item->indent * 2 + 1);
1273 if (p == NULL)
1274 {
1275 for (line = 0; line <= height - 1; ++line)
1276 vim_free((*array)[line].pum_text);
1277 vim_free(*array);
1278 goto failed;
1279 }
1280 for (ind = 0; ind < item->indent * 2; ++ind)
1281 p[ind] = ' ';
1282
1283 // exclude spaces at the end of the string
1284 for (copylen = thislen; copylen > 0; --copylen)
1285 if (item->start[skip + copylen - 1] != ' ')
Bram Moolenaar246fe032017-11-19 19:56:27 +01001286 break;
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001287
1288 vim_strncpy(p + ind, item->start + skip, copylen);
1289 (*array)[line].pum_text = p;
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001290 item->indent = 0; // wrapped line has no indent
Bram Moolenaar9ae862e2019-11-21 13:27:06 +01001291 ++line;
Bram Moolenaar246fe032017-11-19 19:56:27 +01001292 }
Bram Moolenaar246fe032017-11-19 19:56:27 +01001293 }
1294 ga_clear(&ga);
1295 return height;
1296
1297failed:
1298 ga_clear(&ga);
1299 return 0;
1300}
1301
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001302 void
1303ui_remove_balloon(void)
1304{
1305 if (balloon_array != NULL)
1306 {
1307 pum_undisplay();
1308 while (balloon_arraysize > 0)
1309 vim_free(balloon_array[--balloon_arraysize].pum_text);
Bram Moolenaard23a8232018-02-10 18:45:26 +01001310 VIM_CLEAR(balloon_array);
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001311 }
1312}
1313
1314/*
1315 * Terminal version of a balloon, uses the popup menu code.
1316 */
1317 void
Bram Moolenaar246fe032017-11-19 19:56:27 +01001318ui_post_balloon(char_u *mesg, list_T *list)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001319{
1320 ui_remove_balloon();
1321
Bram Moolenaar246fe032017-11-19 19:56:27 +01001322 if (mesg == NULL && list == NULL)
Bram Moolenaarbe0a2592019-05-09 13:50:16 +02001323 {
1324 pum_undisplay();
Bram Moolenaar246fe032017-11-19 19:56:27 +01001325 return;
Bram Moolenaarbe0a2592019-05-09 13:50:16 +02001326 }
Bram Moolenaar246fe032017-11-19 19:56:27 +01001327 if (list != NULL)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001328 {
Bram Moolenaar246fe032017-11-19 19:56:27 +01001329 listitem_T *li;
1330 int idx;
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001331
Bram Moolenaar246fe032017-11-19 19:56:27 +01001332 balloon_arraysize = list->lv_len;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001333 balloon_array = ALLOC_CLEAR_MULT(pumitem_T, list->lv_len);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001334 if (balloon_array == NULL)
1335 return;
Bram Moolenaar7e9f3512020-05-13 22:44:22 +02001336 CHECK_LIST_MATERIALIZE(list);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001337 for (idx = 0, li = list->lv_first; li != NULL; li = li->li_next, ++idx)
1338 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001339 char_u *text = tv_get_string_chk(&li->li_tv);
Bram Moolenaar246fe032017-11-19 19:56:27 +01001340
1341 balloon_array[idx].pum_text = vim_strsave(
1342 text == NULL ? (char_u *)"" : text);
1343 }
1344 }
1345 else
1346 balloon_arraysize = split_message(mesg, &balloon_array);
1347
1348 if (balloon_arraysize > 0)
1349 {
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001350 pum_array = balloon_array;
1351 pum_size = balloon_arraysize;
1352 pum_compute_size();
1353 pum_scrollbar = 0;
1354 pum_height = balloon_arraysize;
1355
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001356 pum_position_at_mouse(BALLOON_MIN_WIDTH);
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001357 pum_selected = -1;
1358 pum_first = 0;
1359 pum_redraw();
1360 }
1361}
1362
1363/*
1364 * Called when the mouse moved, may remove any displayed balloon.
1365 */
1366 void
1367ui_may_remove_balloon(void)
1368{
Bram Moolenaarb3d17a22019-07-07 18:28:14 +02001369 // For now: remove the balloon whenever the mouse moves to another screen
1370 // cell.
1371 ui_remove_balloon();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001372}
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001373#endif
Bram Moolenaara8f04aa2018-02-10 15:36:55 +01001374
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001375#if defined(FEAT_TERM_POPUP_MENU) || defined(PROTO)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001376/*
1377 * Select the pum entry at the mouse position.
1378 */
1379 static void
1380pum_select_mouse_pos(void)
1381{
1382 int idx = mouse_row - pum_row;
1383
1384 if (idx < 0 || idx >= pum_size)
1385 pum_selected = -1;
1386 else if (*pum_array[idx].pum_text != NUL)
1387 pum_selected = idx;
1388}
1389
1390/*
1391 * Execute the currently selected popup menu item.
1392 */
1393 static void
Bram Moolenaar987723e2018-03-06 11:43:04 +01001394pum_execute_menu(vimmenu_T *menu, int mode)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001395{
1396 vimmenu_T *mp;
1397 int idx = 0;
1398 exarg_T ea;
1399
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001400 FOR_ALL_CHILD_MENUS(menu, mp)
Bram Moolenaar987723e2018-03-06 11:43:04 +01001401 if ((mp->modes & mp->enabled & mode) && idx++ == pum_selected)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001402 {
Bram Moolenaara80faa82020-04-12 19:37:17 +02001403 CLEAR_FIELD(ea);
Bram Moolenaar4c5d8152018-10-19 22:36:53 +02001404 execute_menu(&ea, mp, -1);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001405 break;
1406 }
1407}
1408
1409/*
1410 * Open the terminal version of the popup menu and don't return until it is
1411 * closed.
1412 */
1413 void
1414pum_show_popupmenu(vimmenu_T *menu)
1415{
1416 vimmenu_T *mp;
1417 int idx = 0;
1418 pumitem_T *array;
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001419# ifdef FEAT_BEVAL_TERM
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001420 int save_bevalterm = p_bevalterm;
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001421# endif
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001422 int mode;
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001423
1424 pum_undisplay();
1425 pum_size = 0;
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001426 mode = get_menu_mode_flag();
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001427
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001428 FOR_ALL_CHILD_MENUS(menu, mp)
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001429 if (menu_is_separator(mp->dname)
1430 || (mp->modes & mp->enabled & mode))
1431 ++pum_size;
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001432
Bram Moolenaarf42b45d2019-01-06 13:11:05 +01001433 // When there are only Terminal mode menus, using "popup Edit" results in
1434 // pum_size being zero.
1435 if (pum_size <= 0)
1436 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001437 emsg(e_menuothermode);
Bram Moolenaarf42b45d2019-01-06 13:11:05 +01001438 return;
1439 }
1440
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001441 array = ALLOC_CLEAR_MULT(pumitem_T, pum_size);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001442 if (array == NULL)
1443 return;
1444
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001445 FOR_ALL_CHILD_MENUS(menu, mp)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001446 if (menu_is_separator(mp->dname))
1447 array[idx++].pum_text = (char_u *)"";
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001448 else if (mp->modes & mp->enabled & mode)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001449 array[idx++].pum_text = mp->dname;
1450
1451 pum_array = array;
1452 pum_compute_size();
1453 pum_scrollbar = 0;
1454 pum_height = pum_size;
1455 pum_position_at_mouse(20);
1456
1457 pum_selected = -1;
1458 pum_first = 0;
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001459# ifdef FEAT_BEVAL_TERM
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001460 p_bevalterm = TRUE; // track mouse movement
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001461 mch_setmouse(TRUE);
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001462# endif
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001463
1464 for (;;)
1465 {
1466 int c;
1467
1468 pum_redraw();
Bram Moolenaar987723e2018-03-06 11:43:04 +01001469 setcursor_mayforce(TRUE);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001470 out_flush();
1471
1472 c = vgetc();
Bram Moolenaar5c3fb042019-05-30 15:53:29 +02001473
1474 // Bail out when typing Esc, CTRL-C or some callback closed the popup
1475 // menu.
1476 if (c == ESC || c == Ctrl_C || pum_array == NULL)
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001477 break;
1478 else if (c == CAR || c == NL)
1479 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001480 // enter: select current item, if any, and close
Bram Moolenaar987723e2018-03-06 11:43:04 +01001481 pum_execute_menu(menu, mode);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001482 break;
1483 }
1484 else if (c == 'k' || c == K_UP || c == K_MOUSEUP)
1485 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001486 // cursor up: select previous item
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001487 while (pum_selected > 0)
1488 {
1489 --pum_selected;
1490 if (*array[pum_selected].pum_text != NUL)
1491 break;
1492 }
1493 }
1494 else if (c == 'j' || c == K_DOWN || c == K_MOUSEDOWN)
1495 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001496 // cursor down: select next item
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001497 while (pum_selected < pum_size - 1)
1498 {
1499 ++pum_selected;
1500 if (*array[pum_selected].pum_text != NUL)
1501 break;
1502 }
1503 }
1504 else if (c == K_RIGHTMOUSE)
1505 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001506 // Right mouse down: reposition the menu.
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001507 vungetc(c);
1508 break;
1509 }
1510 else if (c == K_LEFTDRAG || c == K_RIGHTDRAG || c == K_MOUSEMOVE)
1511 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001512 // mouse moved: select item in the mouse row
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001513 pum_select_mouse_pos();
1514 }
1515 else if (c == K_LEFTMOUSE || c == K_LEFTMOUSE_NM || c == K_RIGHTRELEASE)
1516 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001517 // left mouse click: select clicked item, if any, and close;
1518 // right mouse release: select clicked item, close if any
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001519 pum_select_mouse_pos();
1520 if (pum_selected >= 0)
1521 {
Bram Moolenaar987723e2018-03-06 11:43:04 +01001522 pum_execute_menu(menu, mode);
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001523 break;
1524 }
1525 if (c == K_LEFTMOUSE || c == K_LEFTMOUSE_NM)
1526 break;
1527 }
1528 }
1529
1530 vim_free(array);
1531 pum_undisplay();
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001532# ifdef FEAT_BEVAL_TERM
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001533 p_bevalterm = save_bevalterm;
1534 mch_setmouse(TRUE);
Bram Moolenaare2c453d2019-08-21 14:37:09 +02001535# endif
Bram Moolenaaraef8c3d2018-03-03 18:59:16 +01001536}
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001537
1538 void
1539pum_make_popup(char_u *path_name, int use_mouse_pos)
1540{
1541 vimmenu_T *menu;
1542
1543 if (!use_mouse_pos)
1544 {
Bram Moolenaar63d9e732019-12-05 21:10:38 +01001545 // Hack: set mouse position at the cursor so that the menu pops up
1546 // around there.
Bram Moolenaar29a2c082018-03-05 21:06:23 +01001547 mouse_row = curwin->w_winrow + curwin->w_wrow;
1548 mouse_col = curwin->w_wincol + curwin->w_wcol;
1549 }
1550
1551 menu = gui_find_menu(path_name);
1552 if (menu != NULL)
1553 pum_show_popupmenu(menu);
1554}
Bram Moolenaar4b779472005-10-04 09:12:31 +00001555#endif