blob: 9c433747aabfaf97d5afb8c37cded29e3ab54d8c [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read a list of people who contributed.
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#include "vim.h"
11
Bram Moolenaar071d4272004-06-13 20:20:40 +000012static int path_is_url __ARGS((char_u *p));
13#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar884ae642009-02-22 01:37:59 +000014static void win_init __ARGS((win_T *newp, win_T *oldp, int flags));
Bram Moolenaar746ebd32009-06-16 14:01:43 +000015static void win_init_some __ARGS((win_T *newp, win_T *oldp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016static void frame_comp_pos __ARGS((frame_T *topfrp, int *row, int *col));
17static void frame_setheight __ARGS((frame_T *curfrp, int height));
18#ifdef FEAT_VERTSPLIT
19static void frame_setwidth __ARGS((frame_T *curfrp, int width));
20#endif
21static void win_exchange __ARGS((long));
22static void win_rotate __ARGS((int, int));
23static void win_totop __ARGS((int size, int flags));
24static void win_equal_rec __ARGS((win_T *next_curwin, int current, frame_T *topfr, int dir, int col, int row, int width, int height));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000025static int last_window __ARGS((void));
Bram Moolenaar746ebd32009-06-16 14:01:43 +000026static int one_window __ARGS((void));
Bram Moolenaarf740b292006-02-16 22:11:02 +000027static win_T *win_free_mem __ARGS((win_T *win, int *dirp, tabpage_T *tp));
Bram Moolenaarf740b292006-02-16 22:11:02 +000028static frame_T *win_altframe __ARGS((win_T *win, tabpage_T *tp));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000029static tabpage_T *alt_tabpage __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000030static win_T *frame2win __ARGS((frame_T *frp));
31static int frame_has_win __ARGS((frame_T *frp, win_T *wp));
32static void frame_new_height __ARGS((frame_T *topfrp, int height, int topfirst, int wfh));
33static int frame_fixed_height __ARGS((frame_T *frp));
34#ifdef FEAT_VERTSPLIT
Bram Moolenaarbe4d5062006-03-18 21:30:13 +000035static int frame_fixed_width __ARGS((frame_T *frp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000036static void frame_add_statusline __ARGS((frame_T *frp));
Bram Moolenaarbe4d5062006-03-18 21:30:13 +000037static void frame_new_width __ARGS((frame_T *topfrp, int width, int leftfirst, int wfw));
Bram Moolenaar071d4272004-06-13 20:20:40 +000038static void frame_add_vsep __ARGS((frame_T *frp));
39static int frame_minwidth __ARGS((frame_T *topfrp, win_T *next_curwin));
40static void frame_fix_width __ARGS((win_T *wp));
41#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000042#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +000043static int win_alloc_firstwin __ARGS((win_T *oldwin));
Bram Moolenaar746ebd32009-06-16 14:01:43 +000044static void new_frame __ARGS((win_T *wp));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000045#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000046static tabpage_T *alloc_tabpage __ARGS((void));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000047static int leave_tabpage __ARGS((buf_T *new_curbuf));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000048static void enter_tabpage __ARGS((tabpage_T *tp, buf_T *old_curbuf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000049static void frame_fix_height __ARGS((win_T *wp));
50static int frame_minheight __ARGS((frame_T *topfrp, win_T *next_curwin));
51static void win_enter_ext __ARGS((win_T *wp, int undo_sync, int no_curwin));
Bram Moolenaarf740b292006-02-16 22:11:02 +000052static void win_free __ARGS((win_T *wp, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000053static void frame_append __ARGS((frame_T *after, frame_T *frp));
54static void frame_insert __ARGS((frame_T *before, frame_T *frp));
55static void frame_remove __ARGS((frame_T *frp));
56#ifdef FEAT_VERTSPLIT
57static void win_new_width __ARGS((win_T *wp, int width));
Bram Moolenaar071d4272004-06-13 20:20:40 +000058static void win_goto_ver __ARGS((int up, long count));
59static void win_goto_hor __ARGS((int left, long count));
60#endif
61static void frame_add_height __ARGS((frame_T *frp, int n));
62static void last_status_rec __ARGS((frame_T *fr, int statusline));
63
Bram Moolenaar071d4272004-06-13 20:20:40 +000064static void make_snapshot_rec __ARGS((frame_T *fr, frame_T **frp));
Bram Moolenaar746ebd32009-06-16 14:01:43 +000065static void clear_snapshot __ARGS((tabpage_T *tp, int idx));
Bram Moolenaar071d4272004-06-13 20:20:40 +000066static void clear_snapshot_rec __ARGS((frame_T *fr));
Bram Moolenaar071d4272004-06-13 20:20:40 +000067static int check_snapshot_rec __ARGS((frame_T *sn, frame_T *fr));
68static win_T *restore_snapshot_rec __ARGS((frame_T *sn, frame_T *fr));
69
70#endif /* FEAT_WINDOWS */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000071
Bram Moolenaar746ebd32009-06-16 14:01:43 +000072static win_T *win_alloc __ARGS((win_T *after, int hidden));
Bram Moolenaar0215e8e2010-12-17 17:35:10 +010073static void set_fraction __ARGS((win_T *wp));
74static void win_new_height __ARGS((win_T *wp, int height));
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
76#define URL_SLASH 1 /* path_is_url() has found "://" */
77#define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
78
Bram Moolenaarb6799ac2007-05-10 16:44:05 +000079#define NOWIN (win_T *)-1 /* non-existing window */
Bram Moolenaar071d4272004-06-13 20:20:40 +000080
Bram Moolenaar05159a02005-02-26 23:04:13 +000081#ifdef FEAT_WINDOWS
Bram Moolenaar32466aa2006-02-24 23:53:04 +000082# define ROWS_AVAIL (Rows - p_ch - tabline_height())
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000083#else
84# define ROWS_AVAIL (Rows - p_ch)
Bram Moolenaar05159a02005-02-26 23:04:13 +000085#endif
86
Bram Moolenaar071d4272004-06-13 20:20:40 +000087#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000088
89static char *m_onlyone = N_("Already only one window");
90
Bram Moolenaar071d4272004-06-13 20:20:40 +000091/*
92 * all CTRL-W window commands are handled here, called from normal_cmd().
93 */
94 void
95do_window(nchar, Prenum, xchar)
96 int nchar;
97 long Prenum;
98 int xchar; /* extra char from ":wincmd gx" or NUL */
99{
100 long Prenum1;
101 win_T *wp;
102#if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
103 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000104 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105#endif
106#ifdef FEAT_FIND_ID
107 int type = FIND_DEFINE;
108 int len;
109#endif
110 char_u cbuf[40];
111
112 if (Prenum == 0)
113 Prenum1 = 1;
114 else
115 Prenum1 = Prenum;
116
117#ifdef FEAT_CMDWIN
118# define CHECK_CMDWIN if (cmdwin_type != 0) { EMSG(_(e_cmdwin)); break; }
119#else
120# define CHECK_CMDWIN
121#endif
122
123 switch (nchar)
124 {
125/* split current window in two parts, horizontally */
126 case 'S':
127 case Ctrl_S:
128 case 's':
129 CHECK_CMDWIN
130#ifdef FEAT_VISUAL
131 reset_VIsual_and_resel(); /* stop Visual mode */
132#endif
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000133#ifdef FEAT_QUICKFIX
134 /* When splitting the quickfix window open a new buffer in it,
135 * don't replicate the quickfix buffer. */
136 if (bt_quickfix(curbuf))
137 goto newwindow;
138#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139#ifdef FEAT_GUI
140 need_mouse_correct = TRUE;
141#endif
142 win_split((int)Prenum, 0);
143 break;
144
145#ifdef FEAT_VERTSPLIT
146/* split current window in two parts, vertically */
147 case Ctrl_V:
148 case 'v':
149 CHECK_CMDWIN
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000150# ifdef FEAT_VISUAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000152# endif
153# ifdef FEAT_QUICKFIX
154 /* When splitting the quickfix window open a new buffer in it,
155 * don't replicate the quickfix buffer. */
156 if (bt_quickfix(curbuf))
157 goto newwindow;
158# endif
159# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 need_mouse_correct = TRUE;
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000161# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 win_split((int)Prenum, WSP_VERT);
163 break;
164#endif
165
166/* split current window and edit alternate file */
167 case Ctrl_HAT:
168 case '^':
169 CHECK_CMDWIN
170#ifdef FEAT_VISUAL
171 reset_VIsual_and_resel(); /* stop Visual mode */
172#endif
173 STRCPY(cbuf, "split #");
174 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000175 vim_snprintf((char *)cbuf + 7, sizeof(cbuf) - 7,
176 "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 do_cmdline_cmd(cbuf);
178 break;
179
180/* open new window */
181 case Ctrl_N:
182 case 'n':
183 CHECK_CMDWIN
184#ifdef FEAT_VISUAL
185 reset_VIsual_and_resel(); /* stop Visual mode */
186#endif
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000187#ifdef FEAT_QUICKFIX
188newwindow:
189#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000191 /* window height */
192 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 else
194 cbuf[0] = NUL;
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000195#if defined(FEAT_VERTSPLIT) && defined(FEAT_QUICKFIX)
196 if (nchar == 'v' || nchar == Ctrl_V)
197 STRCAT(cbuf, "v");
198#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 STRCAT(cbuf, "new");
200 do_cmdline_cmd(cbuf);
201 break;
202
203/* quit current window */
204 case Ctrl_Q:
205 case 'q':
206#ifdef FEAT_VISUAL
207 reset_VIsual_and_resel(); /* stop Visual mode */
208#endif
209 do_cmdline_cmd((char_u *)"quit");
210 break;
211
212/* close current window */
213 case Ctrl_C:
214 case 'c':
215#ifdef FEAT_VISUAL
216 reset_VIsual_and_resel(); /* stop Visual mode */
217#endif
218 do_cmdline_cmd((char_u *)"close");
219 break;
220
221#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
222/* close preview window */
223 case Ctrl_Z:
224 case 'z':
225 CHECK_CMDWIN
226#ifdef FEAT_VISUAL
227 reset_VIsual_and_resel(); /* stop Visual mode */
228#endif
229 do_cmdline_cmd((char_u *)"pclose");
230 break;
231
232/* cursor to preview window */
233 case 'P':
234 for (wp = firstwin; wp != NULL; wp = wp->w_next)
235 if (wp->w_p_pvw)
236 break;
237 if (wp == NULL)
238 EMSG(_("E441: There is no preview window"));
239 else
240 win_goto(wp);
241 break;
242#endif
243
244/* close all but current window */
245 case Ctrl_O:
246 case 'o':
247 CHECK_CMDWIN
248#ifdef FEAT_VISUAL
249 reset_VIsual_and_resel(); /* stop Visual mode */
250#endif
251 do_cmdline_cmd((char_u *)"only");
252 break;
253
254/* cursor to next window with wrap around */
255 case Ctrl_W:
256 case 'w':
257/* cursor to previous window with wrap around */
258 case 'W':
259 CHECK_CMDWIN
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000260 if (firstwin == lastwin && Prenum != 1) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 beep_flush();
262 else
263 {
264 if (Prenum) /* go to specified window */
265 {
266 for (wp = firstwin; --Prenum > 0; )
267 {
268 if (wp->w_next == NULL)
269 break;
270 else
271 wp = wp->w_next;
272 }
273 }
274 else
275 {
276 if (nchar == 'W') /* go to previous window */
277 {
278 wp = curwin->w_prev;
279 if (wp == NULL)
280 wp = lastwin; /* wrap around */
281 }
282 else /* go to next window */
283 {
284 wp = curwin->w_next;
285 if (wp == NULL)
286 wp = firstwin; /* wrap around */
287 }
288 }
289 win_goto(wp);
290 }
291 break;
292
293/* cursor to window below */
294 case 'j':
295 case K_DOWN:
296 case Ctrl_J:
297 CHECK_CMDWIN
298#ifdef FEAT_VERTSPLIT
299 win_goto_ver(FALSE, Prenum1);
300#else
301 for (wp = curwin; wp->w_next != NULL && Prenum1-- > 0;
302 wp = wp->w_next)
303 ;
304 win_goto(wp);
305#endif
306 break;
307
308/* cursor to window above */
309 case 'k':
310 case K_UP:
311 case Ctrl_K:
312 CHECK_CMDWIN
313#ifdef FEAT_VERTSPLIT
314 win_goto_ver(TRUE, Prenum1);
315#else
316 for (wp = curwin; wp->w_prev != NULL && Prenum1-- > 0;
317 wp = wp->w_prev)
318 ;
319 win_goto(wp);
320#endif
321 break;
322
323#ifdef FEAT_VERTSPLIT
324/* cursor to left window */
325 case 'h':
326 case K_LEFT:
327 case Ctrl_H:
328 case K_BS:
329 CHECK_CMDWIN
330 win_goto_hor(TRUE, Prenum1);
331 break;
332
333/* cursor to right window */
334 case 'l':
335 case K_RIGHT:
336 case Ctrl_L:
337 CHECK_CMDWIN
338 win_goto_hor(FALSE, Prenum1);
339 break;
340#endif
341
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000342/* move window to new tab page */
343 case 'T':
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000344 if (one_window())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000345 MSG(_(m_onlyone));
346 else
347 {
348 tabpage_T *oldtab = curtab;
349 tabpage_T *newtab;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000350
351 /* First create a new tab with the window, then go back to
352 * the old tab and close the window there. */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000353 wp = curwin;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000354 if (win_new_tabpage((int)Prenum) == OK
355 && valid_tabpage(oldtab))
356 {
357 newtab = curtab;
358 goto_tabpage_tp(oldtab);
359 if (curwin == wp)
360 win_close(curwin, FALSE);
361 if (valid_tabpage(newtab))
362 goto_tabpage_tp(newtab);
363 }
364 }
365 break;
366
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367/* cursor to top-left window */
368 case 't':
369 case Ctrl_T:
370 win_goto(firstwin);
371 break;
372
373/* cursor to bottom-right window */
374 case 'b':
375 case Ctrl_B:
376 win_goto(lastwin);
377 break;
378
379/* cursor to last accessed (previous) window */
380 case 'p':
381 case Ctrl_P:
382 if (prevwin == NULL)
383 beep_flush();
384 else
385 win_goto(prevwin);
386 break;
387
388/* exchange current and next window */
389 case 'x':
390 case Ctrl_X:
391 CHECK_CMDWIN
392 win_exchange(Prenum);
393 break;
394
395/* rotate windows downwards */
396 case Ctrl_R:
397 case 'r':
398 CHECK_CMDWIN
399#ifdef FEAT_VISUAL
400 reset_VIsual_and_resel(); /* stop Visual mode */
401#endif
402 win_rotate(FALSE, (int)Prenum1); /* downwards */
403 break;
404
405/* rotate windows upwards */
406 case 'R':
407 CHECK_CMDWIN
408#ifdef FEAT_VISUAL
409 reset_VIsual_and_resel(); /* stop Visual mode */
410#endif
411 win_rotate(TRUE, (int)Prenum1); /* upwards */
412 break;
413
414/* move window to the very top/bottom/left/right */
415 case 'K':
416 case 'J':
417#ifdef FEAT_VERTSPLIT
418 case 'H':
419 case 'L':
420#endif
421 CHECK_CMDWIN
422 win_totop((int)Prenum,
423 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
424 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT));
425 break;
426
427/* make all windows the same height */
428 case '=':
429#ifdef FEAT_GUI
430 need_mouse_correct = TRUE;
431#endif
432 win_equal(NULL, FALSE, 'b');
433 break;
434
435/* increase current window height */
436 case '+':
437#ifdef FEAT_GUI
438 need_mouse_correct = TRUE;
439#endif
440 win_setheight(curwin->w_height + (int)Prenum1);
441 break;
442
443/* decrease current window height */
444 case '-':
445#ifdef FEAT_GUI
446 need_mouse_correct = TRUE;
447#endif
448 win_setheight(curwin->w_height - (int)Prenum1);
449 break;
450
451/* set current window height */
452 case Ctrl__:
453 case '_':
454#ifdef FEAT_GUI
455 need_mouse_correct = TRUE;
456#endif
457 win_setheight(Prenum ? (int)Prenum : 9999);
458 break;
459
460#ifdef FEAT_VERTSPLIT
461/* increase current window width */
462 case '>':
463#ifdef FEAT_GUI
464 need_mouse_correct = TRUE;
465#endif
466 win_setwidth(curwin->w_width + (int)Prenum1);
467 break;
468
469/* decrease current window width */
470 case '<':
471#ifdef FEAT_GUI
472 need_mouse_correct = TRUE;
473#endif
474 win_setwidth(curwin->w_width - (int)Prenum1);
475 break;
476
477/* set current window width */
478 case '|':
479#ifdef FEAT_GUI
480 need_mouse_correct = TRUE;
481#endif
482 win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
483 break;
484#endif
485
486/* jump to tag and split window if tag exists (in preview window) */
487#if defined(FEAT_QUICKFIX)
488 case '}':
489 CHECK_CMDWIN
490 if (Prenum)
491 g_do_tagpreview = Prenum;
492 else
493 g_do_tagpreview = p_pvh;
494 /*FALLTHROUGH*/
495#endif
496 case ']':
497 case Ctrl_RSB:
498 CHECK_CMDWIN
499#ifdef FEAT_VISUAL
500 reset_VIsual_and_resel(); /* stop Visual mode */
501#endif
502 if (Prenum)
503 postponed_split = Prenum;
504 else
505 postponed_split = -1;
506
507 /* Execute the command right here, required when
508 * "wincmd ]" was used in a function. */
509 do_nv_ident(Ctrl_RSB, NUL);
510 break;
511
512#ifdef FEAT_SEARCHPATH
513/* edit file name under cursor in a new window */
514 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000515 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 case Ctrl_F:
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000517wingotofile:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 CHECK_CMDWIN
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000519
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000520 ptr = grab_file_name(Prenum1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 if (ptr != NULL)
522 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000523# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 need_mouse_correct = TRUE;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000525# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 setpcmark();
527 if (win_split(0, 0) == OK)
528 {
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200529 RESET_BINDING(curwin);
Bram Moolenaar701f7af2008-11-15 13:12:07 +0000530 (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL,
531 ECMD_HIDE, NULL);
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000532 if (nchar == 'F' && lnum >= 0)
533 {
534 curwin->w_cursor.lnum = lnum;
535 check_cursor_lnum();
536 beginline(BL_SOL | BL_FIX);
537 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 }
539 vim_free(ptr);
540 }
541 break;
542#endif
543
544#ifdef FEAT_FIND_ID
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000545/* Go to the first occurrence of the identifier under cursor along path in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 * new window -- webb
547 */
548 case 'i': /* Go to any match */
549 case Ctrl_I:
550 type = FIND_ANY;
551 /* FALLTHROUGH */
552 case 'd': /* Go to definition, using 'define' */
553 case Ctrl_D:
554 CHECK_CMDWIN
555 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
556 break;
557 find_pattern_in_path(ptr, 0, len, TRUE,
558 Prenum == 0 ? TRUE : FALSE, type,
559 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM);
560 curwin->w_set_curswant = TRUE;
561 break;
562#endif
563
Bram Moolenaar05159a02005-02-26 23:04:13 +0000564 case K_KENTER:
565 case CAR:
566#if defined(FEAT_QUICKFIX)
567 /*
568 * In a quickfix window a <CR> jumps to the error under the
569 * cursor in a new window.
570 */
571 if (bt_quickfix(curbuf))
572 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +0000573 sprintf((char *)cbuf, "split +%ld%s",
574 (long)curwin->w_cursor.lnum,
575 (curwin->w_llist_ref == NULL) ? "cc" : "ll");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000576 do_cmdline_cmd(cbuf);
577 }
578#endif
579 break;
580
581
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582/* CTRL-W g extended commands */
583 case 'g':
584 case Ctrl_G:
585 CHECK_CMDWIN
586#ifdef USE_ON_FLY_SCROLL
587 dont_scroll = TRUE; /* disallow scrolling here */
588#endif
589 ++no_mapping;
590 ++allow_keys; /* no mapping for xchar, but allow key codes */
591 if (xchar == NUL)
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000592 xchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 LANGMAP_ADJUST(xchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 --no_mapping;
595 --allow_keys;
596#ifdef FEAT_CMDL_INFO
597 (void)add_to_showcmd(xchar);
598#endif
599 switch (xchar)
600 {
601#if defined(FEAT_QUICKFIX)
602 case '}':
603 xchar = Ctrl_RSB;
604 if (Prenum)
605 g_do_tagpreview = Prenum;
606 else
607 g_do_tagpreview = p_pvh;
608 /*FALLTHROUGH*/
609#endif
610 case ']':
611 case Ctrl_RSB:
612#ifdef FEAT_VISUAL
613 reset_VIsual_and_resel(); /* stop Visual mode */
614#endif
615 if (Prenum)
616 postponed_split = Prenum;
617 else
618 postponed_split = -1;
619
620 /* Execute the command right here, required when
621 * "wincmd g}" was used in a function. */
622 do_nv_ident('g', xchar);
623 break;
624
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000625#ifdef FEAT_SEARCHPATH
626 case 'f': /* CTRL-W gf: "gf" in a new tab page */
Bram Moolenaar57657d82006-04-21 22:12:41 +0000627 case 'F': /* CTRL-W gF: "gF" in a new tab page */
Bram Moolenaar6d1dcff2010-01-27 20:26:46 +0100628 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar57657d82006-04-21 22:12:41 +0000629 nchar = xchar;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000630 goto wingotofile;
631#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 default:
633 beep_flush();
634 break;
635 }
636 break;
637
638 default: beep_flush();
639 break;
640 }
641}
642
643/*
644 * split the current window, implements CTRL-W s and :split
645 *
646 * "size" is the height or width for the new window, 0 to use half of current
647 * height or width.
648 *
649 * "flags":
650 * WSP_ROOM: require enough room for new window
651 * WSP_VERT: vertical split.
652 * WSP_TOP: open window at the top-left of the shell (help window).
653 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
654 * WSP_HELP: creating the help window, keep layout snapshot
655 *
656 * return FAIL for failure, OK otherwise
657 */
658 int
659win_split(size, flags)
660 int size;
661 int flags;
662{
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000663 /* When the ":tab" modifier was used open a new tab page instead. */
664 if (may_open_tabpage() == OK)
665 return OK;
666
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 /* Add flags from ":vertical", ":topleft" and ":botright". */
668 flags |= cmdmod.split;
669 if ((flags & WSP_TOP) && (flags & WSP_BOT))
670 {
671 EMSG(_("E442: Can't split topleft and botright at the same time"));
672 return FAIL;
673 }
674
675 /* When creating the help window make a snapshot of the window layout.
676 * Otherwise clear the snapshot, it's now invalid. */
677 if (flags & WSP_HELP)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000678 make_snapshot(SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000680 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681
682 return win_split_ins(size, flags, NULL, 0);
683}
684
685/*
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100686 * When "new_wp" is NULL: split the current window in two.
687 * When "new_wp" is not NULL: insert this window at the far
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 * top/left/right/bottom.
689 * return FAIL for failure, OK otherwise
690 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000691 int
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100692win_split_ins(size, flags, new_wp, dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 int size;
694 int flags;
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100695 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 int dir;
697{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100698 win_T *wp = new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 win_T *oldwin;
700 int new_size = size;
701 int i;
702 int need_status = 0;
703 int do_equal = FALSE;
704 int needed;
705 int available;
706 int oldwin_height = 0;
707 int layout;
708 frame_T *frp, *curfrp;
709 int before;
710
711 if (flags & WSP_TOP)
712 oldwin = firstwin;
713 else if (flags & WSP_BOT)
714 oldwin = lastwin;
715 else
716 oldwin = curwin;
717
718 /* add a status line when p_ls == 1 and splitting the first window */
719 if (lastwin == firstwin && p_ls == 1 && oldwin->w_status_height == 0)
720 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100721 if (oldwin->w_height <= p_wmh && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 {
723 EMSG(_(e_noroom));
724 return FAIL;
725 }
726 need_status = STATUS_HEIGHT;
727 }
728
Bram Moolenaaree79cbc2007-05-02 19:50:14 +0000729#ifdef FEAT_GUI
730 /* May be needed for the scrollbars that are going to change. */
731 if (gui.in_use)
732 out_flush();
733#endif
734
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735#ifdef FEAT_VERTSPLIT
736 if (flags & WSP_VERT)
737 {
738 layout = FR_ROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739
740 /*
741 * Check if we are able to split the current window and compute its
742 * width.
743 */
744 needed = p_wmw + 1;
745 if (flags & WSP_ROOM)
746 needed += p_wiw - p_wmw;
747 if (p_ea || (flags & (WSP_BOT | WSP_TOP)))
748 {
749 available = topframe->fr_width;
750 needed += frame_minwidth(topframe, NULL);
751 }
752 else
753 available = oldwin->w_width;
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100754 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 {
756 EMSG(_(e_noroom));
757 return FAIL;
758 }
759 if (new_size == 0)
760 new_size = oldwin->w_width / 2;
761 if (new_size > oldwin->w_width - p_wmw - 1)
762 new_size = oldwin->w_width - p_wmw - 1;
763 if (new_size < p_wmw)
764 new_size = p_wmw;
765
766 /* if it doesn't fit in the current window, need win_equal() */
767 if (oldwin->w_width - new_size - 1 < p_wmw)
768 do_equal = TRUE;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000769
770 /* We don't like to take lines for the new window from a
771 * 'winfixwidth' window. Take them from a window to the left or right
772 * instead, if possible. */
773 if (oldwin->w_p_wfw)
774 win_setwidth_win(oldwin->w_width + new_size, oldwin);
Bram Moolenaar67f71312007-08-12 14:55:56 +0000775
776 /* Only make all windows the same width if one of them (except oldwin)
777 * is wider than one of the split windows. */
778 if (!do_equal && p_ea && size == 0 && *p_ead != 'v'
779 && oldwin->w_frame->fr_parent != NULL)
780 {
781 frp = oldwin->w_frame->fr_parent->fr_child;
782 while (frp != NULL)
783 {
784 if (frp->fr_win != oldwin && frp->fr_win != NULL
785 && (frp->fr_win->w_width > new_size
786 || frp->fr_win->w_width > oldwin->w_width
787 - new_size - STATUS_HEIGHT))
788 {
789 do_equal = TRUE;
790 break;
791 }
792 frp = frp->fr_next;
793 }
794 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 }
796 else
797#endif
798 {
799 layout = FR_COL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800
801 /*
802 * Check if we are able to split the current window and compute its
803 * height.
804 */
805 needed = p_wmh + STATUS_HEIGHT + need_status;
806 if (flags & WSP_ROOM)
807 needed += p_wh - p_wmh;
808 if (p_ea || (flags & (WSP_BOT | WSP_TOP)))
809 {
810 available = topframe->fr_height;
811 needed += frame_minheight(topframe, NULL);
812 }
813 else
814 {
815 available = oldwin->w_height;
816 needed += p_wmh;
817 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100818 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 {
820 EMSG(_(e_noroom));
821 return FAIL;
822 }
823 oldwin_height = oldwin->w_height;
824 if (need_status)
825 {
826 oldwin->w_status_height = STATUS_HEIGHT;
827 oldwin_height -= STATUS_HEIGHT;
828 }
829 if (new_size == 0)
830 new_size = oldwin_height / 2;
831
832 if (new_size > oldwin_height - p_wmh - STATUS_HEIGHT)
833 new_size = oldwin_height - p_wmh - STATUS_HEIGHT;
834 if (new_size < p_wmh)
835 new_size = p_wmh;
836
837 /* if it doesn't fit in the current window, need win_equal() */
838 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh)
839 do_equal = TRUE;
840
841 /* We don't like to take lines for the new window from a
842 * 'winfixheight' window. Take them from a window above or below
843 * instead, if possible. */
844 if (oldwin->w_p_wfh)
845 {
846 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT,
847 oldwin);
848 oldwin_height = oldwin->w_height;
849 if (need_status)
850 oldwin_height -= STATUS_HEIGHT;
851 }
Bram Moolenaar67f71312007-08-12 14:55:56 +0000852
853 /* Only make all windows the same height if one of them (except oldwin)
854 * is higher than one of the split windows. */
855 if (!do_equal && p_ea && size == 0
856#ifdef FEAT_VERTSPLIT
857 && *p_ead != 'h'
858#endif
859 && oldwin->w_frame->fr_parent != NULL)
860 {
861 frp = oldwin->w_frame->fr_parent->fr_child;
862 while (frp != NULL)
863 {
864 if (frp->fr_win != oldwin && frp->fr_win != NULL
865 && (frp->fr_win->w_height > new_size
866 || frp->fr_win->w_height > oldwin_height - new_size
867 - STATUS_HEIGHT))
868 {
869 do_equal = TRUE;
870 break;
871 }
872 frp = frp->fr_next;
873 }
874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 }
876
877 /*
878 * allocate new window structure and link it in the window list
879 */
880 if ((flags & WSP_TOP) == 0
881 && ((flags & WSP_BOT)
882 || (flags & WSP_BELOW)
883 || (!(flags & WSP_ABOVE)
884 && (
885#ifdef FEAT_VERTSPLIT
886 (flags & WSP_VERT) ? p_spr :
887#endif
888 p_sb))))
889 {
890 /* new window below/right of current one */
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100891 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000892 wp = win_alloc(oldwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 else
894 win_append(oldwin, wp);
895 }
896 else
897 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100898 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000899 wp = win_alloc(oldwin->w_prev, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 else
901 win_append(oldwin->w_prev, wp);
902 }
903
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100904 if (new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 {
906 if (wp == NULL)
907 return FAIL;
908
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000909 new_frame(wp);
910 if (wp->w_frame == NULL)
911 {
912 win_free(wp, NULL);
913 return FAIL;
914 }
915
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000916 /* make the contents of the new window the same as the current one */
Bram Moolenaar884ae642009-02-22 01:37:59 +0000917 win_init(wp, curwin, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918 }
919
920 /*
921 * Reorganise the tree of frames to insert the new window.
922 */
923 if (flags & (WSP_TOP | WSP_BOT))
924 {
925#ifdef FEAT_VERTSPLIT
926 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0)
927 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0))
928#else
929 if (topframe->fr_layout == FR_COL)
930#endif
931 {
932 curfrp = topframe->fr_child;
933 if (flags & WSP_BOT)
934 while (curfrp->fr_next != NULL)
935 curfrp = curfrp->fr_next;
936 }
937 else
938 curfrp = topframe;
939 before = (flags & WSP_TOP);
940 }
941 else
942 {
943 curfrp = oldwin->w_frame;
944 if (flags & WSP_BELOW)
945 before = FALSE;
946 else if (flags & WSP_ABOVE)
947 before = TRUE;
948 else
949#ifdef FEAT_VERTSPLIT
950 if (flags & WSP_VERT)
951 before = !p_spr;
952 else
953#endif
954 before = !p_sb;
955 }
956 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout)
957 {
958 /* Need to create a new frame in the tree to make a branch. */
959 frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
960 *frp = *curfrp;
961 curfrp->fr_layout = layout;
962 frp->fr_parent = curfrp;
963 frp->fr_next = NULL;
964 frp->fr_prev = NULL;
965 curfrp->fr_child = frp;
966 curfrp->fr_win = NULL;
967 curfrp = frp;
968 if (frp->fr_win != NULL)
969 oldwin->w_frame = frp;
970 else
971 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
972 frp->fr_parent = curfrp;
973 }
974
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100975 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000976 frp = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 else
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100978 frp = new_wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 frp->fr_parent = curfrp->fr_parent;
980
981 /* Insert the new frame at the right place in the frame list. */
982 if (before)
983 frame_insert(curfrp, frp);
984 else
985 frame_append(curfrp, frp);
986
Bram Moolenaar0215e8e2010-12-17 17:35:10 +0100987 /* Set w_fraction now so that the cursor keeps the same relative
988 * vertical position. */
Bram Moolenaar13d831f2011-01-08 14:46:03 +0100989 if (oldwin->w_height > 0)
990 set_fraction(oldwin);
Bram Moolenaar0215e8e2010-12-17 17:35:10 +0100991 wp->w_fraction = oldwin->w_fraction;
992
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993#ifdef FEAT_VERTSPLIT
994 if (flags & WSP_VERT)
995 {
996 wp->w_p_scr = curwin->w_p_scr;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +0100997
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 if (need_status)
999 {
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001000 win_new_height(oldwin, oldwin->w_height - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 oldwin->w_status_height = need_status;
1002 }
1003 if (flags & (WSP_TOP | WSP_BOT))
1004 {
1005 /* set height and row of new window to full height */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001006 wp->w_winrow = tabline_height();
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001007 win_new_height(wp, curfrp->fr_height - (p_ls > 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 wp->w_status_height = (p_ls > 0);
1009 }
1010 else
1011 {
1012 /* height and row of new window is same as current window */
1013 wp->w_winrow = oldwin->w_winrow;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001014 win_new_height(wp, oldwin->w_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 wp->w_status_height = oldwin->w_status_height;
1016 }
1017 frp->fr_height = curfrp->fr_height;
1018
1019 /* "new_size" of the current window goes to the new window, use
1020 * one column for the vertical separator */
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001021 win_new_width(wp, new_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 if (before)
1023 wp->w_vsep_width = 1;
1024 else
1025 {
1026 wp->w_vsep_width = oldwin->w_vsep_width;
1027 oldwin->w_vsep_width = 1;
1028 }
1029 if (flags & (WSP_TOP | WSP_BOT))
1030 {
1031 if (flags & WSP_BOT)
1032 frame_add_vsep(curfrp);
1033 /* Set width of neighbor frame */
1034 frame_new_width(curfrp, curfrp->fr_width
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001035 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP,
1036 FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 }
1038 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001039 win_new_width(oldwin, oldwin->w_width - (new_size + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 if (before) /* new window left of current one */
1041 {
1042 wp->w_wincol = oldwin->w_wincol;
1043 oldwin->w_wincol += new_size + 1;
1044 }
1045 else /* new window right of current one */
1046 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1;
1047 frame_fix_width(oldwin);
1048 frame_fix_width(wp);
1049 }
1050 else
1051#endif
1052 {
1053 /* width and column of new window is same as current window */
1054#ifdef FEAT_VERTSPLIT
1055 if (flags & (WSP_TOP | WSP_BOT))
1056 {
1057 wp->w_wincol = 0;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001058 win_new_width(wp, Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 wp->w_vsep_width = 0;
1060 }
1061 else
1062 {
1063 wp->w_wincol = oldwin->w_wincol;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001064 win_new_width(wp, oldwin->w_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 wp->w_vsep_width = oldwin->w_vsep_width;
1066 }
1067 frp->fr_width = curfrp->fr_width;
1068#endif
1069
1070 /* "new_size" of the current window goes to the new window, use
1071 * one row for the status line */
1072 win_new_height(wp, new_size);
1073 if (flags & (WSP_TOP | WSP_BOT))
1074 frame_new_height(curfrp, curfrp->fr_height
1075 - (new_size + STATUS_HEIGHT), flags & WSP_TOP, FALSE);
1076 else
1077 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT));
1078 if (before) /* new window above current one */
1079 {
1080 wp->w_winrow = oldwin->w_winrow;
1081 wp->w_status_height = STATUS_HEIGHT;
1082 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT;
1083 }
1084 else /* new window below current one */
1085 {
1086 wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT;
1087 wp->w_status_height = oldwin->w_status_height;
1088 oldwin->w_status_height = STATUS_HEIGHT;
1089 }
1090#ifdef FEAT_VERTSPLIT
1091 if (flags & WSP_BOT)
1092 frame_add_statusline(curfrp);
1093#endif
1094 frame_fix_height(wp);
1095 frame_fix_height(oldwin);
1096 }
1097
1098 if (flags & (WSP_TOP | WSP_BOT))
1099 (void)win_comp_pos();
1100
1101 /*
1102 * Both windows need redrawing
1103 */
1104 redraw_win_later(wp, NOT_VALID);
1105 wp->w_redr_status = TRUE;
1106 redraw_win_later(oldwin, NOT_VALID);
1107 oldwin->w_redr_status = TRUE;
1108
1109 if (need_status)
1110 {
1111 msg_row = Rows - 1;
1112 msg_col = sc_col;
1113 msg_clr_eos_force(); /* Old command/ruler may still be there */
1114 comp_col();
1115 msg_row = Rows - 1;
1116 msg_col = 0; /* put position back at start of line */
1117 }
1118
1119 /*
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001120 * equalize the window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 */
1122 if (do_equal || dir != 0)
1123 win_equal(wp, TRUE,
1124#ifdef FEAT_VERTSPLIT
1125 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h')
1126 : dir == 'h' ? 'b' :
1127#endif
1128 'v');
1129
1130 /* Don't change the window height/width to 'winheight' / 'winwidth' if a
1131 * size was given. */
1132#ifdef FEAT_VERTSPLIT
1133 if (flags & WSP_VERT)
1134 {
1135 i = p_wiw;
1136 if (size != 0)
1137 p_wiw = size;
1138
1139# ifdef FEAT_GUI
1140 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */
1141 if (gui.in_use)
1142 gui_init_which_components(NULL);
1143# endif
1144 }
1145 else
1146#endif
1147 {
1148 i = p_wh;
1149 if (size != 0)
1150 p_wh = size;
1151 }
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001152
1153 /*
1154 * make the new window the current window
1155 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 win_enter(wp, FALSE);
1157#ifdef FEAT_VERTSPLIT
1158 if (flags & WSP_VERT)
1159 p_wiw = i;
1160 else
1161#endif
1162 p_wh = i;
1163
1164 return OK;
1165}
1166
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001167
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001168/*
1169 * Initialize window "newp" from window "oldp".
1170 * Used when splitting a window and when creating a new tab page.
1171 * The windows will both edit the same buffer.
Bram Moolenaar884ae642009-02-22 01:37:59 +00001172 * WSP_NEWLOC may be specified in flags to prevent the location list from
1173 * being copied.
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001174 */
1175 static void
Bram Moolenaar884ae642009-02-22 01:37:59 +00001176win_init(newp, oldp, flags)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001177 win_T *newp;
1178 win_T *oldp;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001179 int flags UNUSED;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001180{
1181 int i;
1182
1183 newp->w_buffer = oldp->w_buffer;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001184#ifdef FEAT_SYN_HL
Bram Moolenaarfd29f462010-06-06 16:11:09 +02001185 newp->w_s = &(oldp->w_buffer->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02001186#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001187 oldp->w_buffer->b_nwindows++;
1188 newp->w_cursor = oldp->w_cursor;
1189 newp->w_valid = 0;
1190 newp->w_curswant = oldp->w_curswant;
1191 newp->w_set_curswant = oldp->w_set_curswant;
1192 newp->w_topline = oldp->w_topline;
1193#ifdef FEAT_DIFF
1194 newp->w_topfill = oldp->w_topfill;
1195#endif
1196 newp->w_leftcol = oldp->w_leftcol;
1197 newp->w_pcmark = oldp->w_pcmark;
1198 newp->w_prev_pcmark = oldp->w_prev_pcmark;
1199 newp->w_alt_fnum = oldp->w_alt_fnum;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00001200 newp->w_wrow = oldp->w_wrow;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001201 newp->w_fraction = oldp->w_fraction;
1202 newp->w_prev_fraction_row = oldp->w_prev_fraction_row;
1203#ifdef FEAT_JUMPLIST
1204 copy_jumplist(oldp, newp);
1205#endif
1206#ifdef FEAT_QUICKFIX
Bram Moolenaar884ae642009-02-22 01:37:59 +00001207 if (flags & WSP_NEWLOC)
1208 {
1209 /* Don't copy the location list. */
1210 newp->w_llist = NULL;
1211 newp->w_llist_ref = NULL;
1212 }
1213 else
1214 copy_loclist(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001215#endif
1216 if (oldp->w_localdir != NULL)
1217 newp->w_localdir = vim_strsave(oldp->w_localdir);
1218
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001219 /* copy tagstack and folds */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001220 for (i = 0; i < oldp->w_tagstacklen; i++)
1221 {
1222 newp->w_tagstack[i] = oldp->w_tagstack[i];
1223 if (newp->w_tagstack[i].tagname != NULL)
1224 newp->w_tagstack[i].tagname =
1225 vim_strsave(newp->w_tagstack[i].tagname);
1226 }
1227 newp->w_tagstackidx = oldp->w_tagstackidx;
1228 newp->w_tagstacklen = oldp->w_tagstacklen;
Bram Moolenaara971b822011-09-14 14:43:25 +02001229#ifdef FEAT_FOLDING
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001230 copyFoldingState(oldp, newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001231#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001232
1233 win_init_some(newp, oldp);
Bram Moolenaar1a384422010-07-14 19:53:30 +02001234
Bram Moolenaara971b822011-09-14 14:43:25 +02001235#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02001236 check_colorcolumn(newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001237#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001238}
1239
1240/*
1241 * Initialize window "newp" from window"old".
1242 * Only the essential things are copied.
1243 */
1244 static void
1245win_init_some(newp, oldp)
1246 win_T *newp;
1247 win_T *oldp;
1248{
1249 /* Use the same argument list. */
1250 newp->w_alist = oldp->w_alist;
1251 ++newp->w_alist->al_refcount;
1252 newp->w_arg_idx = oldp->w_arg_idx;
1253
1254 /* copy options from existing window */
1255 win_copy_options(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001256}
1257
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258#endif /* FEAT_WINDOWS */
1259
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260#if defined(FEAT_WINDOWS) || defined(PROTO)
1261/*
1262 * Check if "win" is a pointer to an existing window.
1263 */
1264 int
1265win_valid(win)
1266 win_T *win;
1267{
1268 win_T *wp;
1269
1270 if (win == NULL)
1271 return FALSE;
1272 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1273 if (wp == win)
1274 return TRUE;
1275 return FALSE;
1276}
1277
1278/*
1279 * Return the number of windows.
1280 */
1281 int
1282win_count()
1283{
1284 win_T *wp;
1285 int count = 0;
1286
1287 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1288 ++count;
1289 return count;
1290}
1291
1292/*
1293 * Make "count" windows on the screen.
1294 * Return actual number of windows on the screen.
1295 * Must be called when there is just one window, filling the whole screen
1296 * (excluding the command line).
1297 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 int
1299make_windows(count, vertical)
1300 int count;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001301 int vertical UNUSED; /* split windows vertically if TRUE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302{
1303 int maxcount;
1304 int todo;
1305
1306#ifdef FEAT_VERTSPLIT
1307 if (vertical)
1308 {
1309 /* Each windows needs at least 'winminwidth' lines and a separator
1310 * column. */
1311 maxcount = (curwin->w_width + curwin->w_vsep_width
1312 - (p_wiw - p_wmw)) / (p_wmw + 1);
1313 }
1314 else
1315#endif
1316 {
1317 /* Each window needs at least 'winminheight' lines and a status line. */
1318 maxcount = (curwin->w_height + curwin->w_status_height
1319 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT);
1320 }
1321
1322 if (maxcount < 2)
1323 maxcount = 2;
1324 if (count > maxcount)
1325 count = maxcount;
1326
1327 /*
1328 * add status line now, otherwise first window will be too big
1329 */
1330 if (count > 1)
1331 last_status(TRUE);
1332
1333#ifdef FEAT_AUTOCMD
1334 /*
1335 * Don't execute autocommands while creating the windows. Must do that
1336 * when putting the buffers in the windows.
1337 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001338 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339#endif
1340
1341 /* todo is number of windows left to create */
1342 for (todo = count - 1; todo > 0; --todo)
1343#ifdef FEAT_VERTSPLIT
1344 if (vertical)
1345 {
1346 if (win_split(curwin->w_width - (curwin->w_width - todo)
1347 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL)
1348 break;
1349 }
1350 else
1351#endif
1352 {
1353 if (win_split(curwin->w_height - (curwin->w_height - todo
1354 * STATUS_HEIGHT) / (todo + 1)
1355 - STATUS_HEIGHT, WSP_ABOVE) == FAIL)
1356 break;
1357 }
1358
1359#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001360 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361#endif
1362
1363 /* return actual number of windows */
1364 return (count - todo);
1365}
1366
1367/*
1368 * Exchange current and next window
1369 */
1370 static void
1371win_exchange(Prenum)
1372 long Prenum;
1373{
1374 frame_T *frp;
1375 frame_T *frp2;
1376 win_T *wp;
1377 win_T *wp2;
1378 int temp;
1379
1380 if (lastwin == firstwin) /* just one window */
1381 {
1382 beep_flush();
1383 return;
1384 }
1385
1386#ifdef FEAT_GUI
1387 need_mouse_correct = TRUE;
1388#endif
1389
1390 /*
1391 * find window to exchange with
1392 */
1393 if (Prenum)
1394 {
1395 frp = curwin->w_frame->fr_parent->fr_child;
1396 while (frp != NULL && --Prenum > 0)
1397 frp = frp->fr_next;
1398 }
1399 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */
1400 frp = curwin->w_frame->fr_next;
1401 else /* Swap last window in row/col with previous */
1402 frp = curwin->w_frame->fr_prev;
1403
1404 /* We can only exchange a window with another window, not with a frame
1405 * containing windows. */
1406 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin)
1407 return;
1408 wp = frp->fr_win;
1409
1410/*
1411 * 1. remove curwin from the list. Remember after which window it was in wp2
1412 * 2. insert curwin before wp in the list
1413 * if wp != wp2
1414 * 3. remove wp from the list
1415 * 4. insert wp after wp2
1416 * 5. exchange the status line height and vsep width.
1417 */
1418 wp2 = curwin->w_prev;
1419 frp2 = curwin->w_frame->fr_prev;
1420 if (wp->w_prev != curwin)
1421 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001422 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 frame_remove(curwin->w_frame);
1424 win_append(wp->w_prev, curwin);
1425 frame_insert(frp, curwin->w_frame);
1426 }
1427 if (wp != wp2)
1428 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001429 win_remove(wp, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 frame_remove(wp->w_frame);
1431 win_append(wp2, wp);
1432 if (frp2 == NULL)
1433 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame);
1434 else
1435 frame_append(frp2, wp->w_frame);
1436 }
1437 temp = curwin->w_status_height;
1438 curwin->w_status_height = wp->w_status_height;
1439 wp->w_status_height = temp;
1440#ifdef FEAT_VERTSPLIT
1441 temp = curwin->w_vsep_width;
1442 curwin->w_vsep_width = wp->w_vsep_width;
1443 wp->w_vsep_width = temp;
1444
1445 /* If the windows are not in the same frame, exchange the sizes to avoid
1446 * messing up the window layout. Otherwise fix the frame sizes. */
1447 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent)
1448 {
1449 temp = curwin->w_height;
1450 curwin->w_height = wp->w_height;
1451 wp->w_height = temp;
1452 temp = curwin->w_width;
1453 curwin->w_width = wp->w_width;
1454 wp->w_width = temp;
1455 }
1456 else
1457 {
1458 frame_fix_height(curwin);
1459 frame_fix_height(wp);
1460 frame_fix_width(curwin);
1461 frame_fix_width(wp);
1462 }
1463#endif
1464
1465 (void)win_comp_pos(); /* recompute window positions */
1466
1467 win_enter(wp, TRUE);
1468 redraw_later(CLEAR);
1469}
1470
1471/*
1472 * rotate windows: if upwards TRUE the second window becomes the first one
1473 * if upwards FALSE the first window becomes the second one
1474 */
1475 static void
1476win_rotate(upwards, count)
1477 int upwards;
1478 int count;
1479{
1480 win_T *wp1;
1481 win_T *wp2;
1482 frame_T *frp;
1483 int n;
1484
1485 if (firstwin == lastwin) /* nothing to do */
1486 {
1487 beep_flush();
1488 return;
1489 }
1490
1491#ifdef FEAT_GUI
1492 need_mouse_correct = TRUE;
1493#endif
1494
1495#ifdef FEAT_VERTSPLIT
1496 /* Check if all frames in this row/col have one window. */
1497 for (frp = curwin->w_frame->fr_parent->fr_child; frp != NULL;
1498 frp = frp->fr_next)
1499 if (frp->fr_win == NULL)
1500 {
1501 EMSG(_("E443: Cannot rotate when another window is split"));
1502 return;
1503 }
1504#endif
1505
1506 while (count--)
1507 {
1508 if (upwards) /* first window becomes last window */
1509 {
1510 /* remove first window/frame from the list */
1511 frp = curwin->w_frame->fr_parent->fr_child;
1512 wp1 = frp->fr_win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001513 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 frame_remove(frp);
1515
1516 /* find last frame and append removed window/frame after it */
1517 for ( ; frp->fr_next != NULL; frp = frp->fr_next)
1518 ;
1519 win_append(frp->fr_win, wp1);
1520 frame_append(frp, wp1->w_frame);
1521
1522 wp2 = frp->fr_win; /* previously last window */
1523 }
1524 else /* last window becomes first window */
1525 {
1526 /* find last window/frame in the list and remove it */
1527 for (frp = curwin->w_frame; frp->fr_next != NULL;
1528 frp = frp->fr_next)
1529 ;
1530 wp1 = frp->fr_win;
1531 wp2 = wp1->w_prev; /* will become last window */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001532 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 frame_remove(frp);
1534
1535 /* append the removed window/frame before the first in the list */
1536 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1);
1537 frame_insert(frp->fr_parent->fr_child, frp);
1538 }
1539
1540 /* exchange status height and vsep width of old and new last window */
1541 n = wp2->w_status_height;
1542 wp2->w_status_height = wp1->w_status_height;
1543 wp1->w_status_height = n;
1544 frame_fix_height(wp1);
1545 frame_fix_height(wp2);
1546#ifdef FEAT_VERTSPLIT
1547 n = wp2->w_vsep_width;
1548 wp2->w_vsep_width = wp1->w_vsep_width;
1549 wp1->w_vsep_width = n;
1550 frame_fix_width(wp1);
1551 frame_fix_width(wp2);
1552#endif
1553
1554 /* recompute w_winrow and w_wincol for all windows */
1555 (void)win_comp_pos();
1556 }
1557
1558 redraw_later(CLEAR);
1559}
1560
1561/*
1562 * Move the current window to the very top/bottom/left/right of the screen.
1563 */
1564 static void
1565win_totop(size, flags)
1566 int size;
1567 int flags;
1568{
1569 int dir;
1570 int height = curwin->w_height;
1571
1572 if (lastwin == firstwin)
1573 {
1574 beep_flush();
1575 return;
1576 }
1577
1578 /* Remove the window and frame from the tree of frames. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001579 (void)winframe_remove(curwin, &dir, NULL);
1580 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 last_status(FALSE); /* may need to remove last status line */
1582 (void)win_comp_pos(); /* recompute window positions */
1583
1584 /* Split a window on the desired side and put the window there. */
1585 (void)win_split_ins(size, flags, curwin, dir);
1586 if (!(flags & WSP_VERT))
1587 {
1588 win_setheight(height);
1589 if (p_ea)
1590 win_equal(curwin, TRUE, 'v');
1591 }
1592
1593#if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
1594 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1595 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001596 gui_may_update_scrollbars();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598}
1599
1600/*
1601 * Move window "win1" to below/right of "win2" and make "win1" the current
1602 * window. Only works within the same frame!
1603 */
1604 void
1605win_move_after(win1, win2)
1606 win_T *win1, *win2;
1607{
1608 int height;
1609
1610 /* check if the arguments are reasonable */
1611 if (win1 == win2)
1612 return;
1613
1614 /* check if there is something to do */
1615 if (win2->w_next != win1)
1616 {
1617 /* may need move the status line/vertical separator of the last window
1618 * */
1619 if (win1 == lastwin)
1620 {
1621 height = win1->w_prev->w_status_height;
1622 win1->w_prev->w_status_height = win1->w_status_height;
1623 win1->w_status_height = height;
1624#ifdef FEAT_VERTSPLIT
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001625 if (win1->w_prev->w_vsep_width == 1)
1626 {
1627 /* Remove the vertical separator from the last-but-one window,
1628 * add it to the last window. Adjust the frame widths. */
1629 win1->w_prev->w_vsep_width = 0;
1630 win1->w_prev->w_frame->fr_width -= 1;
1631 win1->w_vsep_width = 1;
1632 win1->w_frame->fr_width += 1;
1633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634#endif
1635 }
1636 else if (win2 == lastwin)
1637 {
1638 height = win1->w_status_height;
1639 win1->w_status_height = win2->w_status_height;
1640 win2->w_status_height = height;
1641#ifdef FEAT_VERTSPLIT
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001642 if (win1->w_vsep_width == 1)
1643 {
1644 /* Remove the vertical separator from win1, add it to the last
1645 * window, win2. Adjust the frame widths. */
1646 win2->w_vsep_width = 1;
1647 win2->w_frame->fr_width += 1;
1648 win1->w_vsep_width = 0;
1649 win1->w_frame->fr_width -= 1;
1650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651#endif
1652 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001653 win_remove(win1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 frame_remove(win1->w_frame);
1655 win_append(win2, win1);
1656 frame_append(win2->w_frame, win1->w_frame);
1657
1658 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1659 redraw_later(NOT_VALID);
1660 }
1661 win_enter(win1, FALSE);
1662}
1663
1664/*
1665 * Make all windows the same height.
1666 * 'next_curwin' will soon be the current window, make sure it has enough
1667 * rows.
1668 */
1669 void
1670win_equal(next_curwin, current, dir)
1671 win_T *next_curwin; /* pointer to current window to be or NULL */
1672 int current; /* do only frame with current window */
1673 int dir; /* 'v' for vertically, 'h' for horizontally,
1674 'b' for both, 0 for using p_ead */
1675{
1676 if (dir == 0)
1677#ifdef FEAT_VERTSPLIT
1678 dir = *p_ead;
1679#else
1680 dir = 'b';
1681#endif
1682 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001683 topframe, dir, 0, tabline_height(),
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001684 (int)Columns, topframe->fr_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685}
1686
1687/*
1688 * Set a frame to a new position and height, spreading the available room
1689 * equally over contained frames.
1690 * The window "next_curwin" (if not NULL) should at least get the size from
1691 * 'winheight' and 'winwidth' if possible.
1692 */
1693 static void
1694win_equal_rec(next_curwin, current, topfr, dir, col, row, width, height)
1695 win_T *next_curwin; /* pointer to current window to be or NULL */
1696 int current; /* do only frame with current window */
1697 frame_T *topfr; /* frame to set size off */
1698 int dir; /* 'v', 'h' or 'b', see win_equal() */
1699 int col; /* horizontal position for frame */
1700 int row; /* vertical position for frame */
1701 int width; /* new width of frame */
1702 int height; /* new height of frame */
1703{
1704 int n, m;
1705 int extra_sep = 0;
1706 int wincount, totwincount = 0;
1707 frame_T *fr;
1708 int next_curwin_size = 0;
1709 int room = 0;
1710 int new_size;
1711 int has_next_curwin = 0;
1712 int hnc;
1713
1714 if (topfr->fr_layout == FR_LEAF)
1715 {
1716 /* Set the width/height of this frame.
1717 * Redraw when size or position changes */
1718 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
1719#ifdef FEAT_VERTSPLIT
1720 || topfr->fr_width != width || topfr->fr_win->w_wincol != col
1721#endif
1722 )
1723 {
1724 topfr->fr_win->w_winrow = row;
1725 frame_new_height(topfr, height, FALSE, FALSE);
1726#ifdef FEAT_VERTSPLIT
1727 topfr->fr_win->w_wincol = col;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001728 frame_new_width(topfr, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729#endif
1730 redraw_all_later(CLEAR);
1731 }
1732 }
1733#ifdef FEAT_VERTSPLIT
1734 else if (topfr->fr_layout == FR_ROW)
1735 {
1736 topfr->fr_width = width;
1737 topfr->fr_height = height;
1738
1739 if (dir != 'v') /* equalize frame widths */
1740 {
1741 /* Compute the maximum number of windows horizontally in this
1742 * frame. */
1743 n = frame_minwidth(topfr, NOWIN);
1744 /* add one for the rightmost window, it doesn't have a separator */
1745 if (col + width == Columns)
1746 extra_sep = 1;
1747 else
1748 extra_sep = 0;
1749 totwincount = (n + extra_sep) / (p_wmw + 1);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001750 has_next_curwin = frame_has_win(topfr, next_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001752 /*
1753 * Compute width for "next_curwin" window and room available for
1754 * other windows.
1755 * "m" is the minimal width when counting p_wiw for "next_curwin".
1756 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 m = frame_minwidth(topfr, next_curwin);
1758 room = width - m;
1759 if (room < 0)
1760 {
1761 next_curwin_size = p_wiw + room;
1762 room = 0;
1763 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 else
1765 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001766 next_curwin_size = -1;
1767 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1768 {
1769 /* If 'winfixwidth' set keep the window width if
1770 * possible.
1771 * Watch out for this window being the next_curwin. */
1772 if (frame_fixed_width(fr))
1773 {
1774 n = frame_minwidth(fr, NOWIN);
1775 new_size = fr->fr_width;
1776 if (frame_has_win(fr, next_curwin))
1777 {
1778 room += p_wiw - p_wmw;
1779 next_curwin_size = 0;
1780 if (new_size < p_wiw)
1781 new_size = p_wiw;
1782 }
1783 else
1784 /* These windows don't use up room. */
1785 totwincount -= (n + (fr->fr_next == NULL
1786 ? extra_sep : 0)) / (p_wmw + 1);
1787 room -= new_size - n;
1788 if (room < 0)
1789 {
1790 new_size += room;
1791 room = 0;
1792 }
1793 fr->fr_newwidth = new_size;
1794 }
1795 }
1796 if (next_curwin_size == -1)
1797 {
1798 if (!has_next_curwin)
1799 next_curwin_size = 0;
1800 else if (totwincount > 1
1801 && (room + (totwincount - 2))
1802 / (totwincount - 1) > p_wiw)
1803 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001804 /* Can make all windows wider than 'winwidth', spread
1805 * the room equally. */
1806 next_curwin_size = (room + p_wiw
1807 + (totwincount - 1) * p_wmw
1808 + (totwincount - 1)) / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001809 room -= next_curwin_size - p_wiw;
1810 }
1811 else
1812 next_curwin_size = p_wiw;
1813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001815
1816 if (has_next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 --totwincount; /* don't count curwin */
1818 }
1819
1820 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1821 {
1822 n = m = 0;
1823 wincount = 1;
1824 if (fr->fr_next == NULL)
1825 /* last frame gets all that remains (avoid roundoff error) */
1826 new_size = width;
1827 else if (dir == 'v')
1828 new_size = fr->fr_width;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001829 else if (frame_fixed_width(fr))
1830 {
1831 new_size = fr->fr_newwidth;
1832 wincount = 0; /* doesn't count as a sizeable window */
1833 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 else
1835 {
1836 /* Compute the maximum number of windows horiz. in "fr". */
1837 n = frame_minwidth(fr, NOWIN);
1838 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1839 / (p_wmw + 1);
1840 m = frame_minwidth(fr, next_curwin);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001841 if (has_next_curwin)
1842 hnc = frame_has_win(fr, next_curwin);
1843 else
1844 hnc = FALSE;
1845 if (hnc) /* don't count next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 --wincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001847 if (totwincount == 0)
1848 new_size = room;
1849 else
1850 new_size = (wincount * room + ((unsigned)totwincount >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001852 if (hnc) /* add next_curwin size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 {
1854 next_curwin_size -= p_wiw - (m - n);
1855 new_size += next_curwin_size;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001856 room -= new_size - next_curwin_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001858 else
1859 room -= new_size;
1860 new_size += n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 }
1862
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001863 /* Skip frame that is full width when splitting or closing a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 * window, unless equalizing all frames. */
1865 if (!current || dir != 'v' || topfr->fr_parent != NULL
1866 || (new_size != fr->fr_width)
1867 || frame_has_win(fr, next_curwin))
1868 win_equal_rec(next_curwin, current, fr, dir, col, row,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001869 new_size, height);
1870 col += new_size;
1871 width -= new_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 totwincount -= wincount;
1873 }
1874 }
1875#endif
1876 else /* topfr->fr_layout == FR_COL */
1877 {
1878#ifdef FEAT_VERTSPLIT
1879 topfr->fr_width = width;
1880#endif
1881 topfr->fr_height = height;
1882
1883 if (dir != 'h') /* equalize frame heights */
1884 {
1885 /* Compute maximum number of windows vertically in this frame. */
1886 n = frame_minheight(topfr, NOWIN);
1887 /* add one for the bottom window if it doesn't have a statusline */
1888 if (row + height == cmdline_row && p_ls == 0)
1889 extra_sep = 1;
1890 else
1891 extra_sep = 0;
1892 totwincount = (n + extra_sep) / (p_wmh + 1);
1893 has_next_curwin = frame_has_win(topfr, next_curwin);
1894
1895 /*
1896 * Compute height for "next_curwin" window and room available for
1897 * other windows.
1898 * "m" is the minimal height when counting p_wh for "next_curwin".
1899 */
1900 m = frame_minheight(topfr, next_curwin);
1901 room = height - m;
1902 if (room < 0)
1903 {
1904 /* The room is less then 'winheight', use all space for the
1905 * current window. */
1906 next_curwin_size = p_wh + room;
1907 room = 0;
1908 }
1909 else
1910 {
1911 next_curwin_size = -1;
1912 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1913 {
1914 /* If 'winfixheight' set keep the window height if
1915 * possible.
1916 * Watch out for this window being the next_curwin. */
1917 if (frame_fixed_height(fr))
1918 {
1919 n = frame_minheight(fr, NOWIN);
1920 new_size = fr->fr_height;
1921 if (frame_has_win(fr, next_curwin))
1922 {
1923 room += p_wh - p_wmh;
1924 next_curwin_size = 0;
1925 if (new_size < p_wh)
1926 new_size = p_wh;
1927 }
1928 else
1929 /* These windows don't use up room. */
1930 totwincount -= (n + (fr->fr_next == NULL
1931 ? extra_sep : 0)) / (p_wmh + 1);
1932 room -= new_size - n;
1933 if (room < 0)
1934 {
1935 new_size += room;
1936 room = 0;
1937 }
1938 fr->fr_newheight = new_size;
1939 }
1940 }
1941 if (next_curwin_size == -1)
1942 {
1943 if (!has_next_curwin)
1944 next_curwin_size = 0;
1945 else if (totwincount > 1
1946 && (room + (totwincount - 2))
1947 / (totwincount - 1) > p_wh)
1948 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001949 /* can make all windows higher than 'winheight',
1950 * spread the room equally. */
1951 next_curwin_size = (room + p_wh
1952 + (totwincount - 1) * p_wmh
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 + (totwincount - 1)) / totwincount;
1954 room -= next_curwin_size - p_wh;
1955 }
1956 else
1957 next_curwin_size = p_wh;
1958 }
1959 }
1960
1961 if (has_next_curwin)
1962 --totwincount; /* don't count curwin */
1963 }
1964
1965 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1966 {
1967 n = m = 0;
1968 wincount = 1;
1969 if (fr->fr_next == NULL)
1970 /* last frame gets all that remains (avoid roundoff error) */
1971 new_size = height;
1972 else if (dir == 'h')
1973 new_size = fr->fr_height;
1974 else if (frame_fixed_height(fr))
1975 {
1976 new_size = fr->fr_newheight;
1977 wincount = 0; /* doesn't count as a sizeable window */
1978 }
1979 else
1980 {
1981 /* Compute the maximum number of windows vert. in "fr". */
1982 n = frame_minheight(fr, NOWIN);
1983 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1984 / (p_wmh + 1);
1985 m = frame_minheight(fr, next_curwin);
1986 if (has_next_curwin)
1987 hnc = frame_has_win(fr, next_curwin);
1988 else
1989 hnc = FALSE;
1990 if (hnc) /* don't count next_curwin */
1991 --wincount;
1992 if (totwincount == 0)
1993 new_size = room;
1994 else
1995 new_size = (wincount * room + ((unsigned)totwincount >> 1))
1996 / totwincount;
1997 if (hnc) /* add next_curwin size */
1998 {
1999 next_curwin_size -= p_wh - (m - n);
2000 new_size += next_curwin_size;
2001 room -= new_size - next_curwin_size;
2002 }
2003 else
2004 room -= new_size;
2005 new_size += n;
2006 }
2007 /* Skip frame that is full width when splitting or closing a
2008 * window, unless equalizing all frames. */
2009 if (!current || dir != 'h' || topfr->fr_parent != NULL
2010 || (new_size != fr->fr_height)
2011 || frame_has_win(fr, next_curwin))
2012 win_equal_rec(next_curwin, current, fr, dir, col, row,
2013 width, new_size);
2014 row += new_size;
2015 height -= new_size;
2016 totwincount -= wincount;
2017 }
2018 }
2019}
2020
2021/*
2022 * close all windows for buffer 'buf'
2023 */
2024 void
Bram Moolenaarf740b292006-02-16 22:11:02 +00002025close_windows(buf, keep_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 buf_T *buf;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002027 int keep_curwin; /* don't close "curwin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028{
Bram Moolenaarf740b292006-02-16 22:11:02 +00002029 win_T *wp;
2030 tabpage_T *tp, *nexttp;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002031 int h = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032
2033 ++RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002034
2035 for (wp = firstwin; wp != NULL && lastwin != firstwin; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00002037 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00002039 win_close(wp, FALSE);
2040
2041 /* Start all over, autocommands may change the window layout. */
2042 wp = firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 }
2044 else
Bram Moolenaarf740b292006-02-16 22:11:02 +00002045 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002047
2048 /* Also check windows in other tab pages. */
2049 for (tp = first_tabpage; tp != NULL; tp = nexttp)
2050 {
2051 nexttp = tp->tp_next;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002052 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002053 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
2054 if (wp->w_buffer == buf)
2055 {
2056 win_close_othertab(wp, FALSE, tp);
2057
2058 /* Start all over, the tab page may be closed and
2059 * autocommands may change the window layout. */
2060 nexttp = first_tabpage;
2061 break;
2062 }
2063 }
2064
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 --RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002066
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002067 if (h != tabline_height())
Bram Moolenaarf740b292006-02-16 22:11:02 +00002068 shell_new_rows();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069}
2070
2071/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002072 * Return TRUE if the current window is the only window that exists (ignoring
2073 * "aucmd_win").
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002074 * Returns FALSE if there is a window, possibly in another tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002075 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002076 static int
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002077last_window()
2078{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002079 return (one_window() && first_tabpage->tp_next == NULL);
2080}
2081
2082/*
2083 * Return TRUE if there is only one window other than "aucmd_win" in the
2084 * current tab page.
2085 */
2086 static int
2087one_window()
2088{
2089#ifdef FEAT_AUTOCMD
2090 win_T *wp;
2091 int seen_one = FALSE;
2092
2093 FOR_ALL_WINDOWS(wp)
2094 {
2095 if (wp != aucmd_win)
2096 {
2097 if (seen_one)
2098 return FALSE;
2099 seen_one = TRUE;
2100 }
2101 }
2102 return TRUE;
2103#else
2104 return firstwin == lastwin;
2105#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002106}
2107
2108/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002109 * Close window "win". Only works for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110 * If "free_buf" is TRUE related buffer may be unloaded.
2111 *
2112 * called by :quit, :close, :xit, :wq and findtag()
2113 */
2114 void
2115win_close(win, free_buf)
2116 win_T *win;
2117 int free_buf;
2118{
2119 win_T *wp;
2120#ifdef FEAT_AUTOCMD
2121 int other_buffer = FALSE;
2122#endif
2123 int close_curwin = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 int dir;
2125 int help_window = FALSE;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002126 tabpage_T *prev_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002128 if (last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 {
2130 EMSG(_("E444: Cannot close last window"));
2131 return;
2132 }
2133
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002134#ifdef FEAT_AUTOCMD
2135 if (win == aucmd_win)
2136 {
2137 EMSG(_("E813: Cannot close autocmd window"));
2138 return;
2139 }
2140 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window())
2141 {
2142 EMSG(_("E814: Cannot close window, only autocmd window would remain"));
2143 return;
2144 }
2145#endif
2146
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002147 /*
2148 * When closing the last window in a tab page first go to another tab
2149 * page and then close the window and the tab page. This avoids that
2150 * curwin and curtab are not invalid while we are freeing memory, they may
2151 * be used in GUI events.
2152 */
2153 if (firstwin == lastwin)
2154 {
2155 goto_tabpage_tp(alt_tabpage());
2156 redraw_tabline = TRUE;
2157
2158 /* Safety check: Autocommands may have closed the window when jumping
2159 * to the other tab page. */
2160 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win)
2161 {
2162 int h = tabline_height();
2163
2164 win_close_othertab(win, free_buf, prev_curtab);
2165 if (h != tabline_height())
2166 shell_new_rows();
2167 }
2168 return;
2169 }
2170
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 /* When closing the help window, try restoring a snapshot after closing
2172 * the window. Otherwise clear the snapshot, it's now invalid. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002173 if (win->w_buffer != NULL && win->w_buffer->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 help_window = TRUE;
2175 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002176 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177
2178#ifdef FEAT_AUTOCMD
2179 if (win == curwin)
2180 {
2181 /*
2182 * Guess which window is going to be the new current window.
2183 * This may change because of the autocommands (sigh).
2184 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002185 wp = frame2win(win_altframe(win, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186
2187 /*
2188 * Be careful: If autocommands delete the window, return now.
2189 */
2190 if (wp->w_buffer != curbuf)
2191 {
2192 other_buffer = TRUE;
2193 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002194 if (!win_valid(win) || last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 return;
2196 }
2197 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002198 if (!win_valid(win) || last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 return;
2200# ifdef FEAT_EVAL
2201 /* autocmds may abort script processing */
2202 if (aborting())
2203 return;
2204# endif
2205 }
2206#endif
2207
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002208#ifdef FEAT_GUI
2209 /* Avoid trouble with scrollbars that are going to be deleted in
2210 * win_free(). */
2211 if (gui.in_use)
2212 out_flush();
2213#endif
2214
Bram Moolenaara971b822011-09-14 14:43:25 +02002215#ifdef FEAT_SYN_HL
2216 /* Free independent synblock before the buffer is freed. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002217 if (win->w_buffer != NULL)
2218 reset_synblock(win);
Bram Moolenaara971b822011-09-14 14:43:25 +02002219#endif
2220
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 /*
2222 * Close the link to the buffer.
2223 */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002224 if (win->w_buffer != NULL)
2225 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0);
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002226
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 /* Autocommands may have closed the window already, or closed the only
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002228 * other window or moved to another tab page. */
2229 if (!win_valid(win) || last_window() || curtab != prev_curtab)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 return;
2231
Bram Moolenaara971b822011-09-14 14:43:25 +02002232 /* Free the memory used for the window and get the window that received
2233 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002234 wp = win_free_mem(win, &dir, NULL);
2235
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 /* Make sure curwin isn't invalid. It can cause severe trouble when
2237 * printing an error message. For win_equal() curbuf needs to be valid
2238 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002239 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 {
2241 curwin = wp;
2242#ifdef FEAT_QUICKFIX
2243 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2244 {
2245 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002246 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 * finding another window to go to.
2248 */
2249 for (;;)
2250 {
2251 if (wp->w_next == NULL)
2252 wp = firstwin;
2253 else
2254 wp = wp->w_next;
2255 if (wp == curwin)
2256 break;
2257 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2258 {
2259 curwin = wp;
2260 break;
2261 }
2262 }
2263 }
2264#endif
2265 curbuf = curwin->w_buffer;
2266 close_curwin = TRUE;
2267 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002268 if (p_ea
2269#ifdef FEAT_VERTSPLIT
2270 && (*p_ead == 'b' || *p_ead == dir)
2271#endif
2272 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 win_equal(curwin, TRUE,
2274#ifdef FEAT_VERTSPLIT
2275 dir
2276#else
2277 0
2278#endif
2279 );
2280 else
2281 win_comp_pos();
2282 if (close_curwin)
2283 {
2284 win_enter_ext(wp, FALSE, TRUE);
2285#ifdef FEAT_AUTOCMD
2286 if (other_buffer)
2287 /* careful: after this wp and win may be invalid! */
2288 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
2289#endif
2290 }
2291
2292 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002293 * If last window has a status line now and we don't want one,
2294 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 */
2296 last_status(FALSE);
2297
2298 /* After closing the help window, try restoring the window layout from
2299 * before it was opened. */
2300 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002301 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302
2303#if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
2304 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2305 if (gui.in_use && !win_hasvertsplit())
2306 gui_init_which_components(NULL);
2307#endif
2308
2309 redraw_all_later(NOT_VALID);
2310}
2311
2312/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002313 * Close window "win" in tab page "tp", which is not the current tab page.
2314 * This may be the last window ih that tab page and result in closing the tab,
2315 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002316 * Caller must check if buffer is hidden and whether the tabline needs to be
2317 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002318 */
2319 void
2320win_close_othertab(win, free_buf, tp)
2321 win_T *win;
2322 int free_buf;
2323 tabpage_T *tp;
2324{
2325 win_T *wp;
2326 int dir;
2327 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002328 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002329
2330 /* Close the link to the buffer. */
2331 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0);
2332
2333 /* Careful: Autocommands may have closed the tab page or made it the
2334 * current tab page. */
2335 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2336 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002337 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002338 return;
2339
2340 /* Autocommands may have closed the window already. */
2341 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2342 ;
2343 if (wp == NULL)
2344 return;
2345
Bram Moolenaarf740b292006-02-16 22:11:02 +00002346 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002347 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002348 {
2349 if (tp == first_tabpage)
2350 first_tabpage = tp->tp_next;
2351 else
2352 {
2353 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2354 ptp = ptp->tp_next)
2355 ;
2356 if (ptp == NULL)
2357 {
2358 EMSG2(_(e_intern2), "win_close_othertab()");
2359 return;
2360 }
2361 ptp->tp_next = tp->tp_next;
2362 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002363 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002364 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002365
2366 /* Free the memory used for the window. */
2367 win_free_mem(win, &dir, tp);
2368
2369 if (free_tp)
2370 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002371}
2372
2373/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002374 * Free the memory used for a window.
2375 * Returns a pointer to the window that got the freed up space.
2376 */
2377 static win_T *
Bram Moolenaarf740b292006-02-16 22:11:02 +00002378win_free_mem(win, dirp, tp)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002379 win_T *win;
2380 int *dirp; /* set to 'v' or 'h' for direction if 'ea' */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002381 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002382{
2383 frame_T *frp;
2384 win_T *wp;
2385
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002386 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002387 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002388 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002389 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002390 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002391
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002392 /* When deleting the current window of another tab page select a new
2393 * current window. */
2394 if (tp != NULL && win == tp->tp_curwin)
2395 tp->tp_curwin = wp;
2396
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002397 return wp;
2398}
2399
2400#if defined(EXITFREE) || defined(PROTO)
2401 void
2402win_free_all()
2403{
2404 int dummy;
2405
Bram Moolenaarf740b292006-02-16 22:11:02 +00002406# ifdef FEAT_WINDOWS
2407 while (first_tabpage->tp_next != NULL)
2408 tabpage_close(TRUE);
2409# endif
2410
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002411# ifdef FEAT_AUTOCMD
2412 if (aucmd_win != NULL)
2413 {
2414 (void)win_free_mem(aucmd_win, &dummy, NULL);
2415 aucmd_win = NULL;
2416 }
2417# endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002418
2419 while (firstwin != NULL)
2420 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002421}
2422#endif
2423
2424/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 * Remove a window and its frame from the tree of frames.
2426 * Returns a pointer to the window that got the freed up space.
2427 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002428 win_T *
Bram Moolenaarf740b292006-02-16 22:11:02 +00002429winframe_remove(win, dirp, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 win_T *win;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002431 int *dirp UNUSED; /* set to 'v' or 'h' for direction if 'ea' */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002432 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433{
2434 frame_T *frp, *frp2, *frp3;
2435 frame_T *frp_close = win->w_frame;
2436 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437
2438 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002439 * If there is only one window there is nothing to remove.
2440 */
2441 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
2442 return NULL;
2443
2444 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 * Remove the window from its frame.
2446 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002447 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 wp = frame2win(frp2);
2449
2450 /* Remove this frame from the list of frames. */
2451 frame_remove(frp_close);
2452
2453#ifdef FEAT_VERTSPLIT
2454 if (frp_close->fr_parent->fr_layout == FR_COL)
2455 {
2456#endif
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002457 /* When 'winfixheight' is set, try to find another frame in the column
2458 * (as close to the closed frame as possible) to distribute the height
2459 * to. */
2460 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2461 {
2462 frp = frp_close->fr_prev;
2463 frp3 = frp_close->fr_next;
2464 while (frp != NULL || frp3 != NULL)
2465 {
2466 if (frp != NULL)
2467 {
2468 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh)
2469 {
2470 frp2 = frp;
2471 wp = frp->fr_win;
2472 break;
2473 }
2474 frp = frp->fr_prev;
2475 }
2476 if (frp3 != NULL)
2477 {
2478 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2479 {
2480 frp2 = frp3;
2481 wp = frp3->fr_win;
2482 break;
2483 }
2484 frp3 = frp3->fr_next;
2485 }
2486 }
2487 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2489 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490#ifdef FEAT_VERTSPLIT
2491 *dirp = 'v';
2492 }
2493 else
2494 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002495 /* When 'winfixwidth' is set, try to find another frame in the column
2496 * (as close to the closed frame as possible) to distribute the width
2497 * to. */
2498 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
2499 {
2500 frp = frp_close->fr_prev;
2501 frp3 = frp_close->fr_next;
2502 while (frp != NULL || frp3 != NULL)
2503 {
2504 if (frp != NULL)
2505 {
2506 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw)
2507 {
2508 frp2 = frp;
2509 wp = frp->fr_win;
2510 break;
2511 }
2512 frp = frp->fr_prev;
2513 }
2514 if (frp3 != NULL)
2515 {
2516 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
2517 {
2518 frp2 = frp3;
2519 wp = frp3->fr_win;
2520 break;
2521 }
2522 frp3 = frp3->fr_next;
2523 }
2524 }
2525 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002527 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 *dirp = 'h';
2529 }
2530#endif
2531
2532 /* If rows/columns go to a window below/right its positions need to be
2533 * updated. Can only be done after the sizes have been updated. */
2534 if (frp2 == frp_close->fr_next)
2535 {
2536 int row = win->w_winrow;
2537 int col = W_WINCOL(win);
2538
2539 frame_comp_pos(frp2, &row, &col);
2540 }
2541
2542 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2543 {
2544 /* There is no other frame in this list, move its info to the parent
2545 * and remove it. */
2546 frp2->fr_parent->fr_layout = frp2->fr_layout;
2547 frp2->fr_parent->fr_child = frp2->fr_child;
2548 for (frp = frp2->fr_child; frp != NULL; frp = frp->fr_next)
2549 frp->fr_parent = frp2->fr_parent;
2550 frp2->fr_parent->fr_win = frp2->fr_win;
2551 if (frp2->fr_win != NULL)
2552 frp2->fr_win->w_frame = frp2->fr_parent;
2553 frp = frp2->fr_parent;
2554 vim_free(frp2);
2555
2556 frp2 = frp->fr_parent;
2557 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2558 {
2559 /* The frame above the parent has the same layout, have to merge
2560 * the frames into this list. */
2561 if (frp2->fr_child == frp)
2562 frp2->fr_child = frp->fr_child;
2563 frp->fr_child->fr_prev = frp->fr_prev;
2564 if (frp->fr_prev != NULL)
2565 frp->fr_prev->fr_next = frp->fr_child;
2566 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2567 {
2568 frp3->fr_parent = frp2;
2569 if (frp3->fr_next == NULL)
2570 {
2571 frp3->fr_next = frp->fr_next;
2572 if (frp->fr_next != NULL)
2573 frp->fr_next->fr_prev = frp3;
2574 break;
2575 }
2576 }
2577 vim_free(frp);
2578 }
2579 }
2580
2581 return wp;
2582}
2583
2584/*
2585 * Find out which frame is going to get the freed up space when "win" is
2586 * closed.
2587 * if 'splitbelow'/'splitleft' the space goes to the window above/left.
2588 * if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right.
2589 * This makes opening a window and closing it immediately keep the same window
2590 * layout.
2591 */
2592 static frame_T *
Bram Moolenaarf740b292006-02-16 22:11:02 +00002593win_altframe(win, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002595 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596{
2597 frame_T *frp;
2598 int b;
2599
Bram Moolenaarf740b292006-02-16 22:11:02 +00002600 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002601 /* Last window in this tab page, will go to next tab page. */
2602 return alt_tabpage()->tp_curwin->w_frame;
2603
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 frp = win->w_frame;
2605#ifdef FEAT_VERTSPLIT
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002606 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 b = p_spr;
2608 else
2609#endif
2610 b = p_sb;
2611 if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL)
2612 return frp->fr_next;
2613 return frp->fr_prev;
2614}
2615
2616/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002617 * Return the tabpage that will be used if the current one is closed.
2618 */
2619 static tabpage_T *
2620alt_tabpage()
2621{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002622 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002623
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002624 /* Use the next tab page if possible. */
2625 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002626 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002627
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002628 /* Find the last but one tab page. */
2629 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2630 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002631 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002632}
2633
2634/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 * Find the left-upper window in frame "frp".
2636 */
2637 static win_T *
2638frame2win(frp)
2639 frame_T *frp;
2640{
2641 while (frp->fr_win == NULL)
2642 frp = frp->fr_child;
2643 return frp->fr_win;
2644}
2645
2646/*
2647 * Return TRUE if frame "frp" contains window "wp".
2648 */
2649 static int
2650frame_has_win(frp, wp)
2651 frame_T *frp;
2652 win_T *wp;
2653{
2654 frame_T *p;
2655
2656 if (frp->fr_layout == FR_LEAF)
2657 return frp->fr_win == wp;
2658
2659 for (p = frp->fr_child; p != NULL; p = p->fr_next)
2660 if (frame_has_win(p, wp))
2661 return TRUE;
2662 return FALSE;
2663}
2664
2665/*
2666 * Set a new height for a frame. Recursively sets the height for contained
2667 * frames and windows. Caller must take care of positions.
2668 */
2669 static void
2670frame_new_height(topfrp, height, topfirst, wfh)
2671 frame_T *topfrp;
2672 int height;
2673 int topfirst; /* resize topmost contained frame first */
2674 int wfh; /* obey 'winfixheight' when there is a choice;
2675 may cause the height not to be set */
2676{
2677 frame_T *frp;
2678 int extra_lines;
2679 int h;
2680
2681 if (topfrp->fr_win != NULL)
2682 {
2683 /* Simple case: just one window. */
2684 win_new_height(topfrp->fr_win,
2685 height - topfrp->fr_win->w_status_height);
2686 }
2687#ifdef FEAT_VERTSPLIT
2688 else if (topfrp->fr_layout == FR_ROW)
2689 {
2690 do
2691 {
2692 /* All frames in this row get the same new height. */
2693 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2694 {
2695 frame_new_height(frp, height, topfirst, wfh);
2696 if (frp->fr_height > height)
2697 {
2698 /* Could not fit the windows, make the whole row higher. */
2699 height = frp->fr_height;
2700 break;
2701 }
2702 }
2703 }
2704 while (frp != NULL);
2705 }
2706#endif
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002707 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 {
2709 /* Complicated case: Resize a column of frames. Resize the bottom
2710 * frame first, frames above that when needed. */
2711
2712 frp = topfrp->fr_child;
2713 if (wfh)
2714 /* Advance past frames with one window with 'wfh' set. */
2715 while (frame_fixed_height(frp))
2716 {
2717 frp = frp->fr_next;
2718 if (frp == NULL)
2719 return; /* no frame without 'wfh', give up */
2720 }
2721 if (!topfirst)
2722 {
2723 /* Find the bottom frame of this column */
2724 while (frp->fr_next != NULL)
2725 frp = frp->fr_next;
2726 if (wfh)
2727 /* Advance back for frames with one window with 'wfh' set. */
2728 while (frame_fixed_height(frp))
2729 frp = frp->fr_prev;
2730 }
2731
2732 extra_lines = height - topfrp->fr_height;
2733 if (extra_lines < 0)
2734 {
2735 /* reduce height of contained frames, bottom or top frame first */
2736 while (frp != NULL)
2737 {
2738 h = frame_minheight(frp, NULL);
2739 if (frp->fr_height + extra_lines < h)
2740 {
2741 extra_lines += frp->fr_height - h;
2742 frame_new_height(frp, h, topfirst, wfh);
2743 }
2744 else
2745 {
2746 frame_new_height(frp, frp->fr_height + extra_lines,
2747 topfirst, wfh);
2748 break;
2749 }
2750 if (topfirst)
2751 {
2752 do
2753 frp = frp->fr_next;
2754 while (wfh && frp != NULL && frame_fixed_height(frp));
2755 }
2756 else
2757 {
2758 do
2759 frp = frp->fr_prev;
2760 while (wfh && frp != NULL && frame_fixed_height(frp));
2761 }
2762 /* Increase "height" if we could not reduce enough frames. */
2763 if (frp == NULL)
2764 height -= extra_lines;
2765 }
2766 }
2767 else if (extra_lines > 0)
2768 {
2769 /* increase height of bottom or top frame */
2770 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
2771 }
2772 }
2773 topfrp->fr_height = height;
2774}
2775
2776/*
2777 * Return TRUE if height of frame "frp" should not be changed because of
2778 * the 'winfixheight' option.
2779 */
2780 static int
2781frame_fixed_height(frp)
2782 frame_T *frp;
2783{
2784 /* frame with one window: fixed height if 'winfixheight' set. */
2785 if (frp->fr_win != NULL)
2786 return frp->fr_win->w_p_wfh;
2787
2788 if (frp->fr_layout == FR_ROW)
2789 {
2790 /* The frame is fixed height if one of the frames in the row is fixed
2791 * height. */
2792 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2793 if (frame_fixed_height(frp))
2794 return TRUE;
2795 return FALSE;
2796 }
2797
2798 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
2799 * frames in the row are fixed height. */
2800 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2801 if (!frame_fixed_height(frp))
2802 return FALSE;
2803 return TRUE;
2804}
2805
2806#ifdef FEAT_VERTSPLIT
2807/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002808 * Return TRUE if width of frame "frp" should not be changed because of
2809 * the 'winfixwidth' option.
2810 */
2811 static int
2812frame_fixed_width(frp)
2813 frame_T *frp;
2814{
2815 /* frame with one window: fixed width if 'winfixwidth' set. */
2816 if (frp->fr_win != NULL)
2817 return frp->fr_win->w_p_wfw;
2818
2819 if (frp->fr_layout == FR_COL)
2820 {
2821 /* The frame is fixed width if one of the frames in the row is fixed
2822 * width. */
2823 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2824 if (frame_fixed_width(frp))
2825 return TRUE;
2826 return FALSE;
2827 }
2828
2829 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
2830 * frames in the row are fixed width. */
2831 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2832 if (!frame_fixed_width(frp))
2833 return FALSE;
2834 return TRUE;
2835}
2836
2837/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 * Add a status line to windows at the bottom of "frp".
2839 * Note: Does not check if there is room!
2840 */
2841 static void
2842frame_add_statusline(frp)
2843 frame_T *frp;
2844{
2845 win_T *wp;
2846
2847 if (frp->fr_layout == FR_LEAF)
2848 {
2849 wp = frp->fr_win;
2850 if (wp->w_status_height == 0)
2851 {
2852 if (wp->w_height > 0) /* don't make it negative */
2853 --wp->w_height;
2854 wp->w_status_height = STATUS_HEIGHT;
2855 }
2856 }
2857 else if (frp->fr_layout == FR_ROW)
2858 {
2859 /* Handle all the frames in the row. */
2860 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2861 frame_add_statusline(frp);
2862 }
2863 else /* frp->fr_layout == FR_COL */
2864 {
2865 /* Only need to handle the last frame in the column. */
2866 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
2867 ;
2868 frame_add_statusline(frp);
2869 }
2870}
2871
2872/*
2873 * Set width of a frame. Handles recursively going through contained frames.
2874 * May remove separator line for windows at the right side (for win_close()).
2875 */
2876 static void
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002877frame_new_width(topfrp, width, leftfirst, wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 frame_T *topfrp;
2879 int width;
2880 int leftfirst; /* resize leftmost contained frame first */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002881 int wfw; /* obey 'winfixwidth' when there is a choice;
2882 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883{
2884 frame_T *frp;
2885 int extra_cols;
2886 int w;
2887 win_T *wp;
2888
2889 if (topfrp->fr_layout == FR_LEAF)
2890 {
2891 /* Simple case: just one window. */
2892 wp = topfrp->fr_win;
2893 /* Find out if there are any windows right of this one. */
2894 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
2895 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
2896 break;
2897 if (frp->fr_parent == NULL)
2898 wp->w_vsep_width = 0;
2899 win_new_width(wp, width - wp->w_vsep_width);
2900 }
2901 else if (topfrp->fr_layout == FR_COL)
2902 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002903 do
2904 {
2905 /* All frames in this column get the same new width. */
2906 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2907 {
2908 frame_new_width(frp, width, leftfirst, wfw);
2909 if (frp->fr_width > width)
2910 {
2911 /* Could not fit the windows, make whole column wider. */
2912 width = frp->fr_width;
2913 break;
2914 }
2915 }
2916 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 }
2918 else /* fr_layout == FR_ROW */
2919 {
2920 /* Complicated case: Resize a row of frames. Resize the rightmost
2921 * frame first, frames left of it when needed. */
2922
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002924 if (wfw)
2925 /* Advance past frames with one window with 'wfw' set. */
2926 while (frame_fixed_width(frp))
2927 {
2928 frp = frp->fr_next;
2929 if (frp == NULL)
2930 return; /* no frame without 'wfw', give up */
2931 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002933 {
2934 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 while (frp->fr_next != NULL)
2936 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002937 if (wfw)
2938 /* Advance back for frames with one window with 'wfw' set. */
2939 while (frame_fixed_width(frp))
2940 frp = frp->fr_prev;
2941 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942
2943 extra_cols = width - topfrp->fr_width;
2944 if (extra_cols < 0)
2945 {
2946 /* reduce frame width, rightmost frame first */
2947 while (frp != NULL)
2948 {
2949 w = frame_minwidth(frp, NULL);
2950 if (frp->fr_width + extra_cols < w)
2951 {
2952 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002953 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 }
2955 else
2956 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002957 frame_new_width(frp, frp->fr_width + extra_cols,
2958 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 break;
2960 }
2961 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002962 {
2963 do
2964 frp = frp->fr_next;
2965 while (wfw && frp != NULL && frame_fixed_width(frp));
2966 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002968 {
2969 do
2970 frp = frp->fr_prev;
2971 while (wfw && frp != NULL && frame_fixed_width(frp));
2972 }
2973 /* Increase "width" if we could not reduce enough frames. */
2974 if (frp == NULL)
2975 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976 }
2977 }
2978 else if (extra_cols > 0)
2979 {
2980 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002981 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 }
2983 }
2984 topfrp->fr_width = width;
2985}
2986
2987/*
2988 * Add the vertical separator to windows at the right side of "frp".
2989 * Note: Does not check if there is room!
2990 */
2991 static void
2992frame_add_vsep(frp)
2993 frame_T *frp;
2994{
2995 win_T *wp;
2996
2997 if (frp->fr_layout == FR_LEAF)
2998 {
2999 wp = frp->fr_win;
3000 if (wp->w_vsep_width == 0)
3001 {
3002 if (wp->w_width > 0) /* don't make it negative */
3003 --wp->w_width;
3004 wp->w_vsep_width = 1;
3005 }
3006 }
3007 else if (frp->fr_layout == FR_COL)
3008 {
3009 /* Handle all the frames in the column. */
3010 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3011 frame_add_vsep(frp);
3012 }
3013 else /* frp->fr_layout == FR_ROW */
3014 {
3015 /* Only need to handle the last frame in the row. */
3016 frp = frp->fr_child;
3017 while (frp->fr_next != NULL)
3018 frp = frp->fr_next;
3019 frame_add_vsep(frp);
3020 }
3021}
3022
3023/*
3024 * Set frame width from the window it contains.
3025 */
3026 static void
3027frame_fix_width(wp)
3028 win_T *wp;
3029{
3030 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3031}
3032#endif
3033
3034/*
3035 * Set frame height from the window it contains.
3036 */
3037 static void
3038frame_fix_height(wp)
3039 win_T *wp;
3040{
3041 wp->w_frame->fr_height = wp->w_height + wp->w_status_height;
3042}
3043
3044/*
3045 * Compute the minimal height for frame "topfrp".
3046 * Uses the 'winminheight' option.
3047 * When "next_curwin" isn't NULL, use p_wh for this window.
3048 * When "next_curwin" is NOWIN, don't use at least one line for the current
3049 * window.
3050 */
3051 static int
3052frame_minheight(topfrp, next_curwin)
3053 frame_T *topfrp;
3054 win_T *next_curwin;
3055{
3056 frame_T *frp;
3057 int m;
3058#ifdef FEAT_VERTSPLIT
3059 int n;
3060#endif
3061
3062 if (topfrp->fr_win != NULL)
3063 {
3064 if (topfrp->fr_win == next_curwin)
3065 m = p_wh + topfrp->fr_win->w_status_height;
3066 else
3067 {
3068 /* window: minimal height of the window plus status line */
3069 m = p_wmh + topfrp->fr_win->w_status_height;
3070 /* Current window is minimal one line high */
3071 if (p_wmh == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3072 ++m;
3073 }
3074 }
3075#ifdef FEAT_VERTSPLIT
3076 else if (topfrp->fr_layout == FR_ROW)
3077 {
3078 /* get the minimal height from each frame in this row */
3079 m = 0;
3080 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3081 {
3082 n = frame_minheight(frp, next_curwin);
3083 if (n > m)
3084 m = n;
3085 }
3086 }
3087#endif
3088 else
3089 {
3090 /* Add up the minimal heights for all frames in this column. */
3091 m = 0;
3092 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3093 m += frame_minheight(frp, next_curwin);
3094 }
3095
3096 return m;
3097}
3098
3099#ifdef FEAT_VERTSPLIT
3100/*
3101 * Compute the minimal width for frame "topfrp".
3102 * When "next_curwin" isn't NULL, use p_wiw for this window.
3103 * When "next_curwin" is NOWIN, don't use at least one column for the current
3104 * window.
3105 */
3106 static int
3107frame_minwidth(topfrp, next_curwin)
3108 frame_T *topfrp;
3109 win_T *next_curwin; /* use p_wh and p_wiw for next_curwin */
3110{
3111 frame_T *frp;
3112 int m, n;
3113
3114 if (topfrp->fr_win != NULL)
3115 {
3116 if (topfrp->fr_win == next_curwin)
3117 m = p_wiw + topfrp->fr_win->w_vsep_width;
3118 else
3119 {
3120 /* window: minimal width of the window plus separator column */
3121 m = p_wmw + topfrp->fr_win->w_vsep_width;
3122 /* Current window is minimal one column wide */
3123 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3124 ++m;
3125 }
3126 }
3127 else if (topfrp->fr_layout == FR_COL)
3128 {
3129 /* get the minimal width from each frame in this column */
3130 m = 0;
3131 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3132 {
3133 n = frame_minwidth(frp, next_curwin);
3134 if (n > m)
3135 m = n;
3136 }
3137 }
3138 else
3139 {
3140 /* Add up the minimal widths for all frames in this row. */
3141 m = 0;
3142 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3143 m += frame_minwidth(frp, next_curwin);
3144 }
3145
3146 return m;
3147}
3148#endif
3149
3150
3151/*
3152 * Try to close all windows except current one.
3153 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3154 * used and the buffer was modified.
3155 *
3156 * Used by ":bdel" and ":only".
3157 */
3158 void
3159close_others(message, forceit)
3160 int message;
3161 int forceit; /* always hide all other windows */
3162{
3163 win_T *wp;
3164 win_T *nextwp;
3165 int r;
3166
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003167 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 {
3169 if (message
3170#ifdef FEAT_AUTOCMD
3171 && !autocmd_busy
3172#endif
3173 )
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003174 MSG(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 return;
3176 }
3177
3178 /* Be very careful here: autocommands may change the window layout. */
3179 for (wp = firstwin; win_valid(wp); wp = nextwp)
3180 {
3181 nextwp = wp->w_next;
3182 if (wp != curwin) /* don't close current window */
3183 {
3184
3185 /* Check if it's allowed to abandon this window */
3186 r = can_abandon(wp->w_buffer, forceit);
3187#ifdef FEAT_AUTOCMD
3188 if (!win_valid(wp)) /* autocommands messed wp up */
3189 {
3190 nextwp = firstwin;
3191 continue;
3192 }
3193#endif
3194 if (!r)
3195 {
3196#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3197 if (message && (p_confirm || cmdmod.confirm) && p_write)
3198 {
3199 dialog_changed(wp->w_buffer, FALSE);
3200# ifdef FEAT_AUTOCMD
3201 if (!win_valid(wp)) /* autocommands messed wp up */
3202 {
3203 nextwp = firstwin;
3204 continue;
3205 }
3206# endif
3207 }
3208 if (bufIsChanged(wp->w_buffer))
3209#endif
3210 continue;
3211 }
3212 win_close(wp, !P_HID(wp->w_buffer) && !bufIsChanged(wp->w_buffer));
3213 }
3214 }
3215
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003216 if (message && lastwin != firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 EMSG(_("E445: Other window contains changes"));
3218}
3219
3220#endif /* FEAT_WINDOWS */
3221
3222/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003223 * Init the current window "curwin".
3224 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 */
3226 void
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003227curwin_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003229 win_init_empty(curwin);
3230}
3231
3232 void
3233win_init_empty(wp)
3234 win_T *wp;
3235{
3236 redraw_win_later(wp, NOT_VALID);
3237 wp->w_lines_valid = 0;
3238 wp->w_cursor.lnum = 1;
3239 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003240#ifdef FEAT_VIRTUALEDIT
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003241 wp->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003243 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3244 wp->w_pcmark.col = 0;
3245 wp->w_prev_pcmark.lnum = 0;
3246 wp->w_prev_pcmark.col = 0;
3247 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003249 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003251 wp->w_botline = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252#ifdef FEAT_FKMAP
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003253 if (wp->w_p_rl)
3254 wp->w_farsi = W_CONV + W_R_L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255 else
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003256 wp->w_farsi = W_CONV;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257#endif
Bram Moolenaara971b822011-09-14 14:43:25 +02003258#ifdef FEAT_SYN_HL
3259 wp->w_s = &wp->w_buffer->b_s;
3260#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261}
3262
3263/*
3264 * Allocate the first window and put an empty buffer in it.
3265 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003266 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003268 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269win_alloc_first()
3270{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003271 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003272 return FAIL;
3273
3274#ifdef FEAT_WINDOWS
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003275 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003276 if (first_tabpage == NULL)
3277 return FAIL;
3278 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003279 curtab = first_tabpage;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003280#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003281
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003282 return OK;
3283}
3284
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003285#if defined(FEAT_AUTOCMD) || defined(PROTO)
3286/*
3287 * Init "aucmd_win". This can only be done after the first
3288 * window is fully initialized, thus it can't be in win_alloc_first().
3289 */
3290 void
3291win_alloc_aucmd_win()
3292{
3293 aucmd_win = win_alloc(NULL, TRUE);
3294 if (aucmd_win != NULL)
3295 {
3296 win_init_some(aucmd_win, curwin);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003297 RESET_BINDING(aucmd_win);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003298 new_frame(aucmd_win);
3299 }
3300}
3301#endif
3302
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003303/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003304 * Allocate the first window or the first window in a new tab page.
3305 * When "oldwin" is NULL create an empty buffer for it.
3306 * When "oldwin" is not NULL copy info from it to the new window (only with
3307 * FEAT_WINDOWS).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003308 * Return FAIL when something goes wrong (out of memory).
3309 */
3310 static int
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003311win_alloc_firstwin(oldwin)
3312 win_T *oldwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003313{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003314 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003315 if (oldwin == NULL)
3316 {
3317 /* Very first window, need to create an empty buffer for it and
3318 * initialize from scratch. */
3319 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3320 if (curwin == NULL || curbuf == NULL)
3321 return FAIL;
3322 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003323#ifdef FEAT_SYN_HL
3324 curwin->w_s = &(curbuf->b_s);
3325#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003326 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327#ifdef FEAT_WINDOWS
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003328 curwin->w_alist = &global_alist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003330 curwin_init(); /* init current window */
3331 }
3332#ifdef FEAT_WINDOWS
3333 else
3334 {
3335 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003336 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003337
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003338 /* We don't want cursor- and scroll-binding in the first window. */
3339 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003340 }
3341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003343 new_frame(curwin);
3344 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003345 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003346 topframe = curwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347#ifdef FEAT_VERTSPLIT
3348 topframe->fr_width = Columns;
3349#endif
3350 topframe->fr_height = Rows - p_ch;
3351 topframe->fr_win = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003352
3353 return OK;
3354}
3355
3356/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003357 * Create a frame for window "wp".
3358 */
3359 static void
3360new_frame(win_T *wp)
3361{
3362 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
3363
3364 wp->w_frame = frp;
3365 if (frp != NULL)
3366 {
3367 frp->fr_layout = FR_LEAF;
3368 frp->fr_win = wp;
3369 }
3370}
3371
3372/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003373 * Initialize the window and frame size to the maximum.
3374 */
3375 void
3376win_init_size()
3377{
3378 firstwin->w_height = ROWS_AVAIL;
3379 topframe->fr_height = ROWS_AVAIL;
3380#ifdef FEAT_VERTSPLIT
3381 firstwin->w_width = Columns;
3382 topframe->fr_width = Columns;
3383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384}
3385
3386#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003387
3388/*
3389 * Allocate a new tabpage_T and init the values.
3390 * Returns NULL when out of memory.
3391 */
3392 static tabpage_T *
3393alloc_tabpage()
3394{
3395 tabpage_T *tp;
3396
3397 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T));
3398 if (tp != NULL)
3399 {
Bram Moolenaar371d5402006-03-20 21:47:49 +00003400# ifdef FEAT_GUI
3401 int i;
3402
3403 for (i = 0; i < 3; i++)
3404 tp->tp_prev_which_scrollbars[i] = -1;
3405# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003406# ifdef FEAT_DIFF
3407 tp->tp_diff_invalid = TRUE;
3408# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003409#ifdef FEAT_EVAL
3410 /* init t: variables */
3411 init_var_dict(&tp->tp_vars, &tp->tp_winvar);
3412#endif
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003413 tp->tp_ch_used = p_ch;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003414 }
3415 return tp;
3416}
3417
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003418 void
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003419free_tabpage(tp)
3420 tabpage_T *tp;
3421{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003422 int idx;
3423
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003424# ifdef FEAT_DIFF
3425 diff_clear(tp);
3426# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003427 for (idx = 0; idx < SNAP_COUNT; ++idx)
3428 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003429#ifdef FEAT_EVAL
3430 vars_clear(&tp->tp_vars.dv_hashtab); /* free all t: variables */
3431#endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003432 vim_free(tp);
3433}
3434
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003435/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003436 * Create a new Tab page with one window.
3437 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003438 * When "after" is 0 put it just after the current Tab page.
3439 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003440 * Return FAIL or OK.
3441 */
3442 int
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003443win_new_tabpage(after)
3444 int after;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003445{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003446 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003447 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003448 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003449
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003450 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003451 if (newtp == NULL)
3452 return FAIL;
3453
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003454 /* Remember the current windows in this Tab page. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003455 if (leave_tabpage(curbuf) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003456 {
3457 vim_free(newtp);
3458 return FAIL;
3459 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003460 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003461
3462 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003463 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003464 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003465 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003466 if (after == 1)
3467 {
3468 /* New tab page becomes the first one. */
3469 newtp->tp_next = first_tabpage;
3470 first_tabpage = newtp;
3471 }
3472 else
3473 {
3474 if (after > 0)
3475 {
3476 /* Put new tab page before tab page "after". */
3477 n = 2;
3478 for (tp = first_tabpage; tp->tp_next != NULL
3479 && n < after; tp = tp->tp_next)
3480 ++n;
3481 }
3482 newtp->tp_next = tp->tp_next;
3483 tp->tp_next = newtp;
3484 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003485 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003486 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003487 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003488
3489 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003490 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003491
3492#if defined(FEAT_GUI)
3493 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3494 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003495 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003496#endif
3497
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003498 redraw_all_later(CLEAR);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003499#ifdef FEAT_AUTOCMD
3500 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3501 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
3502#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003503 return OK;
3504 }
3505
3506 /* Failed, get back the previous Tab page */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003507 enter_tabpage(curtab, curbuf);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003508 return FAIL;
3509}
3510
3511/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003512 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3513 * like with ":split".
3514 * Returns OK if a new tab page was created, FAIL otherwise.
3515 */
3516 int
3517may_open_tabpage()
3518{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003519 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003520
Bram Moolenaard326ce82007-03-11 14:48:29 +00003521 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003522 {
3523 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003524 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003525 return win_new_tabpage(n);
3526 }
3527 return FAIL;
3528}
3529
3530/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003531 * Create up to "maxcount" tabpages with empty windows.
3532 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003533 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003534 int
3535make_tabpages(maxcount)
3536 int maxcount;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003537{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003538 int count = maxcount;
3539 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003540
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003541 /* Limit to 'tabpagemax' tabs. */
3542 if (count > p_tpm)
3543 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003544
3545#ifdef FEAT_AUTOCMD
3546 /*
3547 * Don't execute autocommands while creating the tab pages. Must do that
3548 * when putting the buffers in the windows.
3549 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003550 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003551#endif
3552
3553 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003554 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003555 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003556
3557#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003558 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003559#endif
3560
3561 /* return actual number of tab pages */
3562 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003563}
3564
3565/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003566 * Return TRUE when "tpc" points to a valid tab page.
3567 */
3568 int
3569valid_tabpage(tpc)
3570 tabpage_T *tpc;
3571{
3572 tabpage_T *tp;
3573
3574 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
3575 if (tp == tpc)
3576 return TRUE;
3577 return FALSE;
3578}
3579
3580/*
3581 * Find tab page "n" (first one is 1). Returns NULL when not found.
3582 */
3583 tabpage_T *
3584find_tabpage(n)
3585 int n;
3586{
3587 tabpage_T *tp;
3588 int i = 1;
3589
3590 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3591 ++i;
3592 return tp;
3593}
3594
3595/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003596 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003597 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003598 */
3599 int
3600tabpage_index(ftp)
3601 tabpage_T *ftp;
3602{
3603 int i = 1;
3604 tabpage_T *tp;
3605
3606 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3607 ++i;
3608 return i;
3609}
3610
3611/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003612 * Prepare for leaving the current tab page.
3613 * When autocomands change "curtab" we don't leave the tab page and return
3614 * FAIL.
3615 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003616 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003617 static int
3618leave_tabpage(new_curbuf)
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00003619 buf_T *new_curbuf UNUSED; /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003620 NULL if unknown */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003621{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003622 tabpage_T *tp = curtab;
3623
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003624#ifdef FEAT_VISUAL
3625 reset_VIsual_and_resel(); /* stop Visual mode */
3626#endif
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003627#ifdef FEAT_AUTOCMD
3628 if (new_curbuf != curbuf)
3629 {
3630 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3631 if (curtab != tp)
3632 return FAIL;
3633 }
3634 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3635 if (curtab != tp)
3636 return FAIL;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003637 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003638 if (curtab != tp)
3639 return FAIL;
3640#endif
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003641#if defined(FEAT_GUI)
3642 /* Remove the scrollbars. They may be added back later. */
3643 if (gui.in_use)
3644 gui_remove_scrollbars();
3645#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003646 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003647 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003648 tp->tp_firstwin = firstwin;
3649 tp->tp_lastwin = lastwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003650 tp->tp_old_Rows = Rows;
3651 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003652 firstwin = NULL;
3653 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003654 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003655}
3656
3657/*
3658 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003659 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003660 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003661 static void
3662enter_tabpage(tp, old_curbuf)
3663 tabpage_T *tp;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00003664 buf_T *old_curbuf UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003665{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003666 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003667 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003668
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003669 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003670 firstwin = tp->tp_firstwin;
3671 lastwin = tp->tp_lastwin;
3672 topframe = tp->tp_topframe;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003673
3674 /* We would like doing the TabEnter event first, but we don't have a
3675 * valid current window yet, which may break some commands.
3676 * This triggers autocommands, thus may make "tp" invalid. */
3677 win_enter_ext(tp->tp_curwin, FALSE, TRUE);
3678 prevwin = next_prevwin;
3679
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003680#ifdef FEAT_AUTOCMD
3681 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003682
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003683 if (old_curbuf != curbuf)
3684 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
3685#endif
3686
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003687 last_status(FALSE); /* status line may appear or disappear */
3688 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003689 must_redraw = CLEAR; /* need to redraw everything */
3690#ifdef FEAT_DIFF
3691 diff_need_scrollbind = TRUE;
3692#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003693
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003694 /* The tabpage line may have appeared or disappeared, may need to resize
3695 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003696 * frame sizes too. Use the stored value of p_ch, so that it can be
3697 * different for each tab page. */
3698 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003699 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
3700#ifdef FEAT_GUI_TABLINE
3701 && !gui_use_tabline()
3702#endif
3703 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003704 shell_new_rows();
3705#ifdef FEAT_VERTSPLIT
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003706 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003707 shell_new_columns(); /* update window widths */
3708#endif
3709
3710#if defined(FEAT_GUI)
3711 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3712 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003713 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003714#endif
3715
3716 redraw_all_later(CLEAR);
3717}
3718
3719/*
3720 * Go to tab page "n". For ":tab N" and "Ngt".
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003721 * When "n" is 9999 go to the last tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003722 */
3723 void
3724goto_tabpage(n)
3725 int n;
3726{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003727 tabpage_T *tp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003728 tabpage_T *ttp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003729 int i;
3730
Bram Moolenaard68071d2006-05-02 22:08:30 +00003731 if (text_locked())
3732 {
3733 /* Not allowed when editing the command line. */
3734#ifdef FEAT_CMDWIN
3735 if (cmdwin_type != 0)
3736 EMSG(_(e_cmdwin));
3737 else
3738#endif
3739 EMSG(_(e_secure));
3740 return;
3741 }
3742
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003743 /* If there is only one it can't work. */
3744 if (first_tabpage->tp_next == NULL)
3745 {
3746 if (n > 1)
3747 beep_flush();
3748 return;
3749 }
3750
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003751 if (n == 0)
3752 {
3753 /* No count, go to next tab page, wrap around end. */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003754 if (curtab->tp_next == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003755 tp = first_tabpage;
3756 else
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003757 tp = curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003758 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003759 else if (n < 0)
3760 {
3761 /* "gT": go to previous tab page, wrap around end. "N gT" repeats
3762 * this N times. */
3763 ttp = curtab;
3764 for (i = n; i < 0; ++i)
3765 {
3766 for (tp = first_tabpage; tp->tp_next != ttp && tp->tp_next != NULL;
3767 tp = tp->tp_next)
3768 ;
3769 ttp = tp;
3770 }
3771 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003772 else if (n == 9999)
3773 {
3774 /* Go to last tab page. */
3775 for (tp = first_tabpage; tp->tp_next != NULL; tp = tp->tp_next)
3776 ;
3777 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003778 else
3779 {
3780 /* Go to tab page "n". */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003781 tp = find_tabpage(n);
Bram Moolenaarf740b292006-02-16 22:11:02 +00003782 if (tp == NULL)
3783 {
3784 beep_flush();
3785 return;
3786 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003787 }
3788
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003789 goto_tabpage_tp(tp);
3790
3791#ifdef FEAT_GUI_TABLINE
3792 if (gui_use_tabline())
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003793 gui_mch_set_curtab(tabpage_index(curtab));
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003794#endif
3795}
3796
3797/*
3798 * Go to tabpage "tp".
3799 * Note: doesn't update the GUI tab.
3800 */
3801 void
3802goto_tabpage_tp(tp)
3803 tabpage_T *tp;
3804{
Bram Moolenaarc6af8122010-05-21 12:04:55 +02003805 /* Don't repeat a message in another tab page. */
3806 set_keep_msg(NULL, 0);
3807
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003808 if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer) == OK)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003809 {
3810 if (valid_tabpage(tp))
3811 enter_tabpage(tp, curbuf);
3812 else
3813 enter_tabpage(curtab, curbuf);
3814 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003815}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816
3817/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003818 * Enter window "wp" in tab page "tp".
3819 * Also updates the GUI tab.
3820 */
3821 void
3822goto_tabpage_win(tp, wp)
3823 tabpage_T *tp;
3824 win_T *wp;
3825{
3826 goto_tabpage_tp(tp);
3827 if (curtab == tp && win_valid(wp))
3828 {
3829 win_enter(wp, TRUE);
3830# ifdef FEAT_GUI_TABLINE
3831 if (gui_use_tabline())
3832 gui_mch_set_curtab(tabpage_index(curtab));
3833# endif
3834 }
3835}
3836
3837/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003838 * Move the current tab page to before tab page "nr".
3839 */
3840 void
3841tabpage_move(nr)
3842 int nr;
3843{
3844 int n = nr;
3845 tabpage_T *tp;
3846
3847 if (first_tabpage->tp_next == NULL)
3848 return;
3849
3850 /* Remove the current tab page from the list of tab pages. */
3851 if (curtab == first_tabpage)
3852 first_tabpage = curtab->tp_next;
3853 else
3854 {
3855 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
3856 if (tp->tp_next == curtab)
3857 break;
3858 if (tp == NULL) /* "cannot happen" */
3859 return;
3860 tp->tp_next = curtab->tp_next;
3861 }
3862
3863 /* Re-insert it at the specified position. */
3864 if (n == 0)
3865 {
3866 curtab->tp_next = first_tabpage;
3867 first_tabpage = curtab;
3868 }
3869 else
3870 {
3871 for (tp = first_tabpage; tp->tp_next != NULL && n > 1; tp = tp->tp_next)
3872 --n;
3873 curtab->tp_next = tp->tp_next;
3874 tp->tp_next = curtab;
3875 }
3876
3877 /* Need to redraw the tabline. Tab page contents doesn't change. */
3878 redraw_tabline = TRUE;
3879}
3880
3881
3882/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 * Go to another window.
3884 * When jumping to another buffer, stop Visual mode. Do this before
3885 * changing windows so we can yank the selection into the '*' register.
3886 * When jumping to another window on the same buffer, adjust its cursor
3887 * position to keep the same Visual area.
3888 */
3889 void
3890win_goto(wp)
3891 win_T *wp;
3892{
Bram Moolenaar23c347c2010-07-14 20:57:00 +02003893#ifdef FEAT_CONCEAL
3894 win_T *owp = curwin;
3895#endif
3896
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003897 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 {
3899 beep_flush();
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003900 text_locked_msg();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 return;
3902 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003903#ifdef FEAT_AUTOCMD
3904 if (curbuf_locked())
3905 return;
3906#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003907
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908#ifdef FEAT_VISUAL
3909 if (wp->w_buffer != curbuf)
3910 reset_VIsual_and_resel();
3911 else if (VIsual_active)
3912 wp->w_cursor = curwin->w_cursor;
3913#endif
3914
3915#ifdef FEAT_GUI
3916 need_mouse_correct = TRUE;
3917#endif
3918 win_enter(wp, TRUE);
Bram Moolenaar23c347c2010-07-14 20:57:00 +02003919
3920#ifdef FEAT_CONCEAL
3921 /* Conceal cursor line in previous window, unconceal in current window. */
3922 if (win_valid(owp))
3923 update_single_line(owp, owp->w_cursor.lnum);
3924 update_single_line(curwin, curwin->w_cursor.lnum);
3925#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926}
3927
3928#if defined(FEAT_PERL) || defined(PROTO)
3929/*
3930 * Find window number "winnr" (counting top to bottom).
3931 */
3932 win_T *
3933win_find_nr(winnr)
3934 int winnr;
3935{
3936 win_T *wp;
3937
3938# ifdef FEAT_WINDOWS
3939 for (wp = firstwin; wp != NULL; wp = wp->w_next)
3940 if (--winnr == 0)
3941 break;
3942 return wp;
3943# else
3944 return curwin;
3945# endif
3946}
3947#endif
3948
3949#ifdef FEAT_VERTSPLIT
3950/*
3951 * Move to window above or below "count" times.
3952 */
3953 static void
3954win_goto_ver(up, count)
3955 int up; /* TRUE to go to win above */
3956 long count;
3957{
3958 frame_T *fr;
3959 frame_T *nfr;
3960 frame_T *foundfr;
3961
3962 foundfr = curwin->w_frame;
3963 while (count--)
3964 {
3965 /*
3966 * First go upwards in the tree of frames until we find a upwards or
3967 * downwards neighbor.
3968 */
3969 fr = foundfr;
3970 for (;;)
3971 {
3972 if (fr == topframe)
3973 goto end;
3974 if (up)
3975 nfr = fr->fr_prev;
3976 else
3977 nfr = fr->fr_next;
3978 if (fr->fr_parent->fr_layout == FR_COL && nfr != NULL)
3979 break;
3980 fr = fr->fr_parent;
3981 }
3982
3983 /*
3984 * Now go downwards to find the bottom or top frame in it.
3985 */
3986 for (;;)
3987 {
3988 if (nfr->fr_layout == FR_LEAF)
3989 {
3990 foundfr = nfr;
3991 break;
3992 }
3993 fr = nfr->fr_child;
3994 if (nfr->fr_layout == FR_ROW)
3995 {
3996 /* Find the frame at the cursor row. */
3997 while (fr->fr_next != NULL
3998 && frame2win(fr)->w_wincol + fr->fr_width
3999 <= curwin->w_wincol + curwin->w_wcol)
4000 fr = fr->fr_next;
4001 }
4002 if (nfr->fr_layout == FR_COL && up)
4003 while (fr->fr_next != NULL)
4004 fr = fr->fr_next;
4005 nfr = fr;
4006 }
4007 }
4008end:
4009 if (foundfr != NULL)
4010 win_goto(foundfr->fr_win);
4011}
4012
4013/*
4014 * Move to left or right window.
4015 */
4016 static void
4017win_goto_hor(left, count)
4018 int left; /* TRUE to go to left win */
4019 long count;
4020{
4021 frame_T *fr;
4022 frame_T *nfr;
4023 frame_T *foundfr;
4024
4025 foundfr = curwin->w_frame;
4026 while (count--)
4027 {
4028 /*
4029 * First go upwards in the tree of frames until we find a left or
4030 * right neighbor.
4031 */
4032 fr = foundfr;
4033 for (;;)
4034 {
4035 if (fr == topframe)
4036 goto end;
4037 if (left)
4038 nfr = fr->fr_prev;
4039 else
4040 nfr = fr->fr_next;
4041 if (fr->fr_parent->fr_layout == FR_ROW && nfr != NULL)
4042 break;
4043 fr = fr->fr_parent;
4044 }
4045
4046 /*
4047 * Now go downwards to find the leftmost or rightmost frame in it.
4048 */
4049 for (;;)
4050 {
4051 if (nfr->fr_layout == FR_LEAF)
4052 {
4053 foundfr = nfr;
4054 break;
4055 }
4056 fr = nfr->fr_child;
4057 if (nfr->fr_layout == FR_COL)
4058 {
4059 /* Find the frame at the cursor row. */
4060 while (fr->fr_next != NULL
4061 && frame2win(fr)->w_winrow + fr->fr_height
4062 <= curwin->w_winrow + curwin->w_wrow)
4063 fr = fr->fr_next;
4064 }
4065 if (nfr->fr_layout == FR_ROW && left)
4066 while (fr->fr_next != NULL)
4067 fr = fr->fr_next;
4068 nfr = fr;
4069 }
4070 }
4071end:
4072 if (foundfr != NULL)
4073 win_goto(foundfr->fr_win);
4074}
4075#endif
4076
4077/*
4078 * Make window "wp" the current window.
4079 */
4080 void
4081win_enter(wp, undo_sync)
4082 win_T *wp;
4083 int undo_sync;
4084{
4085 win_enter_ext(wp, undo_sync, FALSE);
4086}
4087
4088/*
4089 * Make window wp the current window.
4090 * Can be called with "curwin_invalid" TRUE, which means that curwin has just
4091 * been closed and isn't valid.
4092 */
4093 static void
4094win_enter_ext(wp, undo_sync, curwin_invalid)
4095 win_T *wp;
4096 int undo_sync;
4097 int curwin_invalid;
4098{
4099#ifdef FEAT_AUTOCMD
4100 int other_buffer = FALSE;
4101#endif
4102
4103 if (wp == curwin && !curwin_invalid) /* nothing to do */
4104 return;
4105
4106#ifdef FEAT_AUTOCMD
4107 if (!curwin_invalid)
4108 {
4109 /*
4110 * Be careful: If autocommands delete the window, return now.
4111 */
4112 if (wp->w_buffer != curbuf)
4113 {
4114 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
4115 other_buffer = TRUE;
4116 if (!win_valid(wp))
4117 return;
4118 }
4119 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
4120 if (!win_valid(wp))
4121 return;
4122# ifdef FEAT_EVAL
4123 /* autocmds may abort script processing */
4124 if (aborting())
4125 return;
4126# endif
4127 }
4128#endif
4129
4130 /* sync undo before leaving the current buffer */
4131 if (undo_sync && curbuf != wp->w_buffer)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004132 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 /* may have to copy the buffer options when 'cpo' contains 'S' */
4134 if (wp->w_buffer != curbuf)
4135 buf_copy_options(wp->w_buffer, BCO_ENTER | BCO_NOHELP);
4136 if (!curwin_invalid)
4137 {
4138 prevwin = curwin; /* remember for CTRL-W p */
4139 curwin->w_redr_status = TRUE;
4140 }
4141 curwin = wp;
4142 curbuf = wp->w_buffer;
4143 check_cursor();
4144#ifdef FEAT_VIRTUALEDIT
4145 if (!virtual_active())
4146 curwin->w_cursor.coladd = 0;
4147#endif
4148 changed_line_abv_curs(); /* assume cursor position needs updating */
4149
4150 if (curwin->w_localdir != NULL)
4151 {
4152 /* Window has a local directory: Save current directory as global
4153 * directory (unless that was done already) and change to the local
4154 * directory. */
4155 if (globaldir == NULL)
4156 {
4157 char_u cwd[MAXPATHL];
4158
4159 if (mch_dirname(cwd, MAXPATHL) == OK)
4160 globaldir = vim_strsave(cwd);
4161 }
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004162 if (mch_chdir((char *)curwin->w_localdir) == 0)
4163 shorten_fnames(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 }
4165 else if (globaldir != NULL)
4166 {
4167 /* Window doesn't have a local directory and we are not in the global
4168 * directory: Change to the global directory. */
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004169 ignored = mch_chdir((char *)globaldir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 vim_free(globaldir);
4171 globaldir = NULL;
4172 shorten_fnames(TRUE);
4173 }
4174
4175#ifdef FEAT_AUTOCMD
4176 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
4177 if (other_buffer)
4178 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
4179#endif
4180
4181#ifdef FEAT_TITLE
4182 maketitle();
4183#endif
4184 curwin->w_redr_status = TRUE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004185 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 if (restart_edit)
4187 redraw_later(VALID); /* causes status line redraw */
4188
4189 /* set window height to desired minimal value */
4190 if (curwin->w_height < p_wh && !curwin->w_p_wfh)
4191 win_setheight((int)p_wh);
4192 else if (curwin->w_height == 0)
4193 win_setheight(1);
4194
4195#ifdef FEAT_VERTSPLIT
4196 /* set window width to desired minimal value */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004197 if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 win_setwidth((int)p_wiw);
4199#endif
4200
4201#ifdef FEAT_MOUSE
4202 setmouse(); /* in case jumped to/from help buffer */
4203#endif
4204
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004205 /* Change directories when the 'acd' option is set. */
4206 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207}
4208
4209#endif /* FEAT_WINDOWS */
4210
4211#if defined(FEAT_WINDOWS) || defined(FEAT_SIGNS) || defined(PROTO)
4212/*
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004213 * Jump to the first open window that contains buffer "buf", if one exists.
4214 * Returns a pointer to the window found, otherwise NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 */
4216 win_T *
4217buf_jump_open_win(buf)
4218 buf_T *buf;
4219{
4220# ifdef FEAT_WINDOWS
4221 win_T *wp;
4222
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004223 for (wp = firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 if (wp->w_buffer == buf)
4225 break;
4226 if (wp != NULL)
4227 win_enter(wp, FALSE);
4228 return wp;
4229# else
4230 if (curwin->w_buffer == buf)
4231 return curwin;
4232 return NULL;
4233# endif
4234}
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004235
4236/*
4237 * Jump to the first open window in any tab page that contains buffer "buf",
4238 * if one exists.
4239 * Returns a pointer to the window found, otherwise NULL.
4240 */
4241 win_T *
4242buf_jump_open_tab(buf)
4243 buf_T *buf;
4244{
4245# ifdef FEAT_WINDOWS
4246 win_T *wp;
4247 tabpage_T *tp;
4248
4249 /* First try the current tab page. */
4250 wp = buf_jump_open_win(buf);
4251 if (wp != NULL)
4252 return wp;
4253
4254 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
4255 if (tp != curtab)
4256 {
4257 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
4258 if (wp->w_buffer == buf)
4259 break;
4260 if (wp != NULL)
4261 {
4262 goto_tabpage_win(tp, wp);
4263 if (curwin != wp)
4264 wp = NULL; /* something went wrong */
4265 break;
4266 }
4267 }
4268
4269 return wp;
4270# else
4271 if (curwin->w_buffer == buf)
4272 return curwin;
4273 return NULL;
4274# endif
4275}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276#endif
4277
4278/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004279 * Allocate a window structure and link it in the window list when "hidden" is
4280 * FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 static win_T *
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004283win_alloc(after, hidden)
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00004284 win_T *after UNUSED;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004285 int hidden UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286{
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004287 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288
4289 /*
4290 * allocate window structure and linesizes arrays
4291 */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004292 new_wp = (win_T *)alloc_clear((unsigned)sizeof(win_T));
4293 if (new_wp != NULL && win_alloc_lines(new_wp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004295 vim_free(new_wp);
4296 new_wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 }
4298
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004299 if (new_wp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 {
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004301#ifdef FEAT_AUTOCMD
4302 /* Don't execute autocommands while the window is not properly
4303 * initialized yet. gui_create_scrollbar() may trigger a FocusGained
4304 * event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004305 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004306#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 /*
4308 * link the window in the window list
4309 */
4310#ifdef FEAT_WINDOWS
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004311 if (!hidden)
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004312 win_append(after, new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313#endif
4314#ifdef FEAT_VERTSPLIT
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004315 new_wp->w_wincol = 0;
4316 new_wp->w_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317#endif
4318
4319 /* position the display and the cursor at the top of the file. */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004320 new_wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321#ifdef FEAT_DIFF
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004322 new_wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323#endif
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004324 new_wp->w_botline = 2;
4325 new_wp->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326#ifdef FEAT_SCROLLBIND
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004327 new_wp->w_scbind_pos = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328#endif
4329
4330 /* We won't calculate w_fraction until resizing the window */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004331 new_wp->w_fraction = 0;
4332 new_wp->w_prev_fraction_row = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333
4334#ifdef FEAT_GUI
4335 if (gui.in_use)
4336 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004337 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_LEFT],
4338 SBAR_LEFT, new_wp);
4339 gui_create_scrollbar(&new_wp->w_scrollbars[SBAR_RIGHT],
4340 SBAR_RIGHT, new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 }
4342#endif
4343#ifdef FEAT_EVAL
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00004344 /* init w: variables */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004345 init_var_dict(&new_wp->w_vars, &new_wp->w_winvar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346#endif
4347#ifdef FEAT_FOLDING
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004348 foldInitWin(new_wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349#endif
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004350#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004351 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004352#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004353#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004354 new_wp->w_match_head = NULL;
4355 new_wp->w_next_match_id = 4;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004356#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004358 return new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359}
4360
4361#if defined(FEAT_WINDOWS) || defined(PROTO)
4362
4363/*
4364 * remove window 'wp' from the window list and free the structure
4365 */
4366 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00004367win_free(wp, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004369 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370{
4371 int i;
4372
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004373#ifdef FEAT_FOLDING
4374 clearFolding(wp);
4375#endif
4376
4377 /* reduce the reference count to the argument list. */
4378 alist_unlink(wp->w_alist);
4379
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004380#ifdef FEAT_AUTOCMD
4381 /* Don't execute autocommands while the window is halfway being deleted.
4382 * gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004383 block_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004384#endif
4385
Bram Moolenaar0ba04292010-07-14 23:23:17 +02004386#ifdef FEAT_LUA
4387 lua_window_free(wp);
4388#endif
4389
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004390#ifdef FEAT_MZSCHEME
4391 mzscheme_window_free(wp);
4392#endif
4393
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394#ifdef FEAT_PERL
4395 perl_win_free(wp);
4396#endif
4397
4398#ifdef FEAT_PYTHON
4399 python_window_free(wp);
4400#endif
4401
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02004402#ifdef FEAT_PYTHON3
4403 python3_window_free(wp);
4404#endif
4405
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406#ifdef FEAT_TCL
4407 tcl_window_free(wp);
4408#endif
4409
4410#ifdef FEAT_RUBY
4411 ruby_window_free(wp);
4412#endif
4413
4414 clear_winopt(&wp->w_onebuf_opt);
4415 clear_winopt(&wp->w_allbuf_opt);
4416
4417#ifdef FEAT_EVAL
Bram Moolenaar1fad5d42005-01-25 21:44:33 +00004418 vars_clear(&wp->w_vars.dv_hashtab); /* free all w: variables */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419#endif
4420
4421 if (prevwin == wp)
4422 prevwin = NULL;
4423 win_free_lsize(wp);
4424
4425 for (i = 0; i < wp->w_tagstacklen; ++i)
4426 vim_free(wp->w_tagstack[i].tagname);
4427
4428 vim_free(wp->w_localdir);
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004429
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004431 clear_matches(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00004433
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434#ifdef FEAT_JUMPLIST
4435 free_jumplist(wp);
4436#endif
4437
Bram Moolenaar28c258f2006-01-25 22:02:51 +00004438#ifdef FEAT_QUICKFIX
4439 qf_free_all(wp);
4440#endif
4441
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442#ifdef FEAT_GUI
4443 if (gui.in_use)
4444 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
4446 gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
4447 }
4448#endif /* FEAT_GUI */
4449
Bram Moolenaar860cae12010-06-05 23:22:07 +02004450#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02004451 vim_free(wp->w_p_cc_cols);
Bram Moolenaar860cae12010-06-05 23:22:07 +02004452#endif
4453
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00004454#ifdef FEAT_AUTOCMD
4455 if (wp != aucmd_win)
4456#endif
Bram Moolenaarfd29f462010-06-06 16:11:09 +02004457 win_remove(wp, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 vim_free(wp);
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004459
4460#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00004461 unblock_autocmds();
Bram Moolenaaree79cbc2007-05-02 19:50:14 +00004462#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463}
4464
4465/*
4466 * Append window "wp" in the window list after window "after".
4467 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004468 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469win_append(after, wp)
4470 win_T *after, *wp;
4471{
4472 win_T *before;
4473
4474 if (after == NULL) /* after NULL is in front of the first */
4475 before = firstwin;
4476 else
4477 before = after->w_next;
4478
4479 wp->w_next = before;
4480 wp->w_prev = after;
4481 if (after == NULL)
4482 firstwin = wp;
4483 else
4484 after->w_next = wp;
4485 if (before == NULL)
4486 lastwin = wp;
4487 else
4488 before->w_prev = wp;
4489}
4490
4491/*
4492 * Remove a window from the window list.
4493 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00004494 void
Bram Moolenaarf740b292006-02-16 22:11:02 +00004495win_remove(wp, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004497 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498{
4499 if (wp->w_prev != NULL)
4500 wp->w_prev->w_next = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004501 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 firstwin = wp->w_next;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004503 else
4504 tp->tp_firstwin = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 if (wp->w_next != NULL)
4506 wp->w_next->w_prev = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004507 else if (tp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 lastwin = wp->w_prev;
Bram Moolenaarf740b292006-02-16 22:11:02 +00004509 else
4510 tp->tp_lastwin = wp->w_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511}
4512
4513/*
4514 * Append frame "frp" in a frame list after frame "after".
4515 */
4516 static void
4517frame_append(after, frp)
4518 frame_T *after, *frp;
4519{
4520 frp->fr_next = after->fr_next;
4521 after->fr_next = frp;
4522 if (frp->fr_next != NULL)
4523 frp->fr_next->fr_prev = frp;
4524 frp->fr_prev = after;
4525}
4526
4527/*
4528 * Insert frame "frp" in a frame list before frame "before".
4529 */
4530 static void
4531frame_insert(before, frp)
4532 frame_T *before, *frp;
4533{
4534 frp->fr_next = before;
4535 frp->fr_prev = before->fr_prev;
4536 before->fr_prev = frp;
4537 if (frp->fr_prev != NULL)
4538 frp->fr_prev->fr_next = frp;
4539 else
4540 frp->fr_parent->fr_child = frp;
4541}
4542
4543/*
4544 * Remove a frame from a frame list.
4545 */
4546 static void
4547frame_remove(frp)
4548 frame_T *frp;
4549{
4550 if (frp->fr_prev != NULL)
4551 frp->fr_prev->fr_next = frp->fr_next;
4552 else
4553 frp->fr_parent->fr_child = frp->fr_next;
4554 if (frp->fr_next != NULL)
4555 frp->fr_next->fr_prev = frp->fr_prev;
4556}
4557
4558#endif /* FEAT_WINDOWS */
4559
4560/*
4561 * Allocate w_lines[] for window "wp".
4562 * Return FAIL for failure, OK for success.
4563 */
4564 int
4565win_alloc_lines(wp)
4566 win_T *wp;
4567{
4568 wp->w_lines_valid = 0;
Bram Moolenaar9334c342006-11-21 19:57:30 +00004569 wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 if (wp->w_lines == NULL)
4571 return FAIL;
4572 return OK;
4573}
4574
4575/*
4576 * free lsize arrays for a window
4577 */
4578 void
4579win_free_lsize(wp)
4580 win_T *wp;
4581{
4582 vim_free(wp->w_lines);
4583 wp->w_lines = NULL;
4584}
4585
4586/*
4587 * Called from win_new_shellsize() after Rows changed.
Bram Moolenaarf740b292006-02-16 22:11:02 +00004588 * This only does the current tab page, others must be done when made active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 */
4590 void
4591shell_new_rows()
4592{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004593 int h = (int)ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594
4595 if (firstwin == NULL) /* not initialized yet */
4596 return;
4597#ifdef FEAT_WINDOWS
4598 if (h < frame_minheight(topframe, NULL))
4599 h = frame_minheight(topframe, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004600
4601 /* First try setting the heights of windows with 'winfixheight'. If
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 * that doesn't result in the right height, forget about that option. */
4603 frame_new_height(topframe, h, FALSE, TRUE);
4604 if (topframe->fr_height != h)
4605 frame_new_height(topframe, h, FALSE, FALSE);
4606
4607 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4608#else
4609 if (h < 1)
4610 h = 1;
4611 win_new_height(firstwin, h);
4612#endif
4613 compute_cmdrow();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004614#ifdef FEAT_WINDOWS
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00004615 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004616#endif
4617
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618#if 0
4619 /* Disabled: don't want making the screen smaller make a window larger. */
4620 if (p_ea)
4621 win_equal(curwin, FALSE, 'v');
4622#endif
4623}
4624
4625#if defined(FEAT_VERTSPLIT) || defined(PROTO)
4626/*
4627 * Called from win_new_shellsize() after Columns changed.
4628 */
4629 void
4630shell_new_columns()
4631{
4632 if (firstwin == NULL) /* not initialized yet */
4633 return;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00004634
4635 /* First try setting the widths of windows with 'winfixwidth'. If that
4636 * doesn't result in the right width, forget about that option. */
4637 frame_new_width(topframe, (int)Columns, FALSE, TRUE);
4638 if (topframe->fr_width != Columns)
4639 frame_new_width(topframe, (int)Columns, FALSE, FALSE);
4640
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 (void)win_comp_pos(); /* recompute w_winrow and w_wincol */
4642#if 0
4643 /* Disabled: don't want making the screen smaller make a window larger. */
4644 if (p_ea)
4645 win_equal(curwin, FALSE, 'h');
4646#endif
4647}
4648#endif
4649
4650#if defined(FEAT_CMDWIN) || defined(PROTO)
4651/*
4652 * Save the size of all windows in "gap".
4653 */
4654 void
4655win_size_save(gap)
4656 garray_T *gap;
4657
4658{
4659 win_T *wp;
4660
4661 ga_init2(gap, (int)sizeof(int), 1);
4662 if (ga_grow(gap, win_count() * 2) == OK)
4663 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4664 {
4665 ((int *)gap->ga_data)[gap->ga_len++] =
4666 wp->w_width + wp->w_vsep_width;
4667 ((int *)gap->ga_data)[gap->ga_len++] = wp->w_height;
4668 }
4669}
4670
4671/*
4672 * Restore window sizes, but only if the number of windows is still the same.
4673 * Does not free the growarray.
4674 */
4675 void
4676win_size_restore(gap)
4677 garray_T *gap;
4678{
4679 win_T *wp;
4680 int i;
4681
4682 if (win_count() * 2 == gap->ga_len)
4683 {
4684 i = 0;
4685 for (wp = firstwin; wp != NULL; wp = wp->w_next)
4686 {
4687 frame_setwidth(wp->w_frame, ((int *)gap->ga_data)[i++]);
4688 win_setheight_win(((int *)gap->ga_data)[i++], wp);
4689 }
4690 /* recompute the window positions */
4691 (void)win_comp_pos();
4692 }
4693}
4694#endif /* FEAT_CMDWIN */
4695
4696#if defined(FEAT_WINDOWS) || defined(PROTO)
4697/*
4698 * Update the position for all windows, using the width and height of the
4699 * frames.
4700 * Returns the row just after the last window.
4701 */
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00004702 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703win_comp_pos()
4704{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004705 int row = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 int col = 0;
4707
4708 frame_comp_pos(topframe, &row, &col);
4709 return row;
4710}
4711
4712/*
4713 * Update the position of the windows in frame "topfrp", using the width and
4714 * height of the frames.
4715 * "*row" and "*col" are the top-left position of the frame. They are updated
4716 * to the bottom-right position plus one.
4717 */
4718 static void
4719frame_comp_pos(topfrp, row, col)
4720 frame_T *topfrp;
4721 int *row;
4722 int *col;
4723{
4724 win_T *wp;
4725 frame_T *frp;
4726#ifdef FEAT_VERTSPLIT
4727 int startcol;
4728 int startrow;
4729#endif
4730
4731 wp = topfrp->fr_win;
4732 if (wp != NULL)
4733 {
4734 if (wp->w_winrow != *row
4735#ifdef FEAT_VERTSPLIT
4736 || wp->w_wincol != *col
4737#endif
4738 )
4739 {
4740 /* position changed, redraw */
4741 wp->w_winrow = *row;
4742#ifdef FEAT_VERTSPLIT
4743 wp->w_wincol = *col;
4744#endif
4745 redraw_win_later(wp, NOT_VALID);
4746 wp->w_redr_status = TRUE;
4747 }
4748 *row += wp->w_height + wp->w_status_height;
4749#ifdef FEAT_VERTSPLIT
4750 *col += wp->w_width + wp->w_vsep_width;
4751#endif
4752 }
4753 else
4754 {
4755#ifdef FEAT_VERTSPLIT
4756 startrow = *row;
4757 startcol = *col;
4758#endif
4759 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
4760 {
4761#ifdef FEAT_VERTSPLIT
4762 if (topfrp->fr_layout == FR_ROW)
4763 *row = startrow; /* all frames are at the same row */
4764 else
4765 *col = startcol; /* all frames are at the same col */
4766#endif
4767 frame_comp_pos(frp, row, col);
4768 }
4769 }
4770}
4771
4772#endif /* FEAT_WINDOWS */
4773
4774/*
4775 * Set current window height and take care of repositioning other windows to
4776 * fit around it.
4777 */
4778 void
4779win_setheight(height)
4780 int height;
4781{
4782 win_setheight_win(height, curwin);
4783}
4784
4785/*
4786 * Set the window height of window "win" and take care of repositioning other
4787 * windows to fit around it.
4788 */
4789 void
4790win_setheight_win(height, win)
4791 int height;
4792 win_T *win;
4793{
4794 int row;
4795
4796 if (win == curwin)
4797 {
4798 /* Always keep current window at least one line high, even when
4799 * 'winminheight' is zero. */
4800#ifdef FEAT_WINDOWS
4801 if (height < p_wmh)
4802 height = p_wmh;
4803#endif
4804 if (height == 0)
4805 height = 1;
4806 }
4807
4808#ifdef FEAT_WINDOWS
4809 frame_setheight(win->w_frame, height + win->w_status_height);
4810
4811 /* recompute the window positions */
4812 row = win_comp_pos();
4813#else
4814 if (height > topframe->fr_height)
4815 height = topframe->fr_height;
4816 win->w_height = height;
4817 row = height;
4818#endif
4819
4820 /*
4821 * If there is extra space created between the last window and the command
4822 * line, clear it.
4823 */
4824 if (full_screen && msg_scrolled == 0 && row < cmdline_row)
4825 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
4826 cmdline_row = row;
4827 msg_row = row;
4828 msg_col = 0;
4829
4830 redraw_all_later(NOT_VALID);
4831}
4832
4833#if defined(FEAT_WINDOWS) || defined(PROTO)
4834
4835/*
4836 * Set the height of a frame to "height" and take care that all frames and
4837 * windows inside it are resized. Also resize frames on the left and right if
4838 * the are in the same FR_ROW frame.
4839 *
4840 * Strategy:
4841 * If the frame is part of a FR_COL frame, try fitting the frame in that
4842 * frame. If that doesn't work (the FR_COL frame is too small), recursively
4843 * go to containing frames to resize them and make room.
4844 * If the frame is part of a FR_ROW frame, all frames must be resized as well.
4845 * Check for the minimal height of the FR_ROW frame.
4846 * At the top level we can also use change the command line height.
4847 */
4848 static void
4849frame_setheight(curfrp, height)
4850 frame_T *curfrp;
4851 int height;
4852{
4853 int room; /* total number of lines available */
4854 int take; /* number of lines taken from other windows */
4855 int room_cmdline; /* lines available from cmdline */
4856 int run;
4857 frame_T *frp;
4858 int h;
4859 int room_reserved;
4860
4861 /* If the height already is the desired value, nothing to do. */
4862 if (curfrp->fr_height == height)
4863 return;
4864
4865 if (curfrp->fr_parent == NULL)
4866 {
4867 /* topframe: can only change the command line */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004868 if (height > ROWS_AVAIL)
4869 height = ROWS_AVAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 if (height > 0)
4871 frame_new_height(curfrp, height, FALSE, FALSE);
4872 }
4873 else if (curfrp->fr_parent->fr_layout == FR_ROW)
4874 {
4875 /* Row of frames: Also need to resize frames left and right of this
4876 * one. First check for the minimal height of these. */
4877 h = frame_minheight(curfrp->fr_parent, NULL);
4878 if (height < h)
4879 height = h;
4880 frame_setheight(curfrp->fr_parent, height);
4881 }
4882 else
4883 {
4884 /*
4885 * Column of frames: try to change only frames in this column.
4886 */
4887#ifdef FEAT_VERTSPLIT
4888 /*
4889 * Do this twice:
4890 * 1: compute room available, if it's not enough try resizing the
4891 * containing frame.
4892 * 2: compute the room available and adjust the height to it.
4893 * Try not to reduce the height of a window with 'winfixheight' set.
4894 */
4895 for (run = 1; run <= 2; ++run)
4896#else
4897 for (;;)
4898#endif
4899 {
4900 room = 0;
4901 room_reserved = 0;
4902 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
4903 frp = frp->fr_next)
4904 {
4905 if (frp != curfrp
4906 && frp->fr_win != NULL
4907 && frp->fr_win->w_p_wfh)
4908 room_reserved += frp->fr_height;
4909 room += frp->fr_height;
4910 if (frp != curfrp)
4911 room -= frame_minheight(frp, NULL);
4912 }
4913#ifdef FEAT_VERTSPLIT
4914 if (curfrp->fr_width != Columns)
4915 room_cmdline = 0;
4916 else
4917#endif
4918 {
4919 room_cmdline = Rows - p_ch - (lastwin->w_winrow
4920 + lastwin->w_height + lastwin->w_status_height);
4921 if (room_cmdline < 0)
4922 room_cmdline = 0;
4923 }
4924
4925 if (height <= room + room_cmdline)
4926 break;
4927#ifdef FEAT_VERTSPLIT
4928 if (run == 2 || curfrp->fr_width == Columns)
4929#endif
4930 {
4931 if (height > room + room_cmdline)
4932 height = room + room_cmdline;
4933 break;
4934 }
4935#ifdef FEAT_VERTSPLIT
4936 frame_setheight(curfrp->fr_parent, height
4937 + frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1);
4938#endif
4939 /*NOTREACHED*/
4940 }
4941
4942 /*
4943 * Compute the number of lines we will take from others frames (can be
4944 * negative!).
4945 */
4946 take = height - curfrp->fr_height;
4947
4948 /* If there is not enough room, also reduce the height of a window
4949 * with 'winfixheight' set. */
4950 if (height > room + room_cmdline - room_reserved)
4951 room_reserved = room + room_cmdline - height;
4952 /* If there is only a 'winfixheight' window and making the
4953 * window smaller, need to make the other window taller. */
4954 if (take < 0 && room - curfrp->fr_height < room_reserved)
4955 room_reserved = 0;
4956
4957 if (take > 0 && room_cmdline > 0)
4958 {
4959 /* use lines from cmdline first */
4960 if (take < room_cmdline)
4961 room_cmdline = take;
4962 take -= room_cmdline;
4963 topframe->fr_height += room_cmdline;
4964 }
4965
4966 /*
4967 * set the current frame to the new height
4968 */
4969 frame_new_height(curfrp, height, FALSE, FALSE);
4970
4971 /*
4972 * First take lines from the frames after the current frame. If
4973 * that is not enough, takes lines from frames above the current
4974 * frame.
4975 */
4976 for (run = 0; run < 2; ++run)
4977 {
4978 if (run == 0)
4979 frp = curfrp->fr_next; /* 1st run: start with next window */
4980 else
4981 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
4982 while (frp != NULL && take != 0)
4983 {
4984 h = frame_minheight(frp, NULL);
4985 if (room_reserved > 0
4986 && frp->fr_win != NULL
4987 && frp->fr_win->w_p_wfh)
4988 {
4989 if (room_reserved >= frp->fr_height)
4990 room_reserved -= frp->fr_height;
4991 else
4992 {
4993 if (frp->fr_height - room_reserved > take)
4994 room_reserved = frp->fr_height - take;
4995 take -= frp->fr_height - room_reserved;
4996 frame_new_height(frp, room_reserved, FALSE, FALSE);
4997 room_reserved = 0;
4998 }
4999 }
5000 else
5001 {
5002 if (frp->fr_height - take < h)
5003 {
5004 take -= frp->fr_height - h;
5005 frame_new_height(frp, h, FALSE, FALSE);
5006 }
5007 else
5008 {
5009 frame_new_height(frp, frp->fr_height - take,
5010 FALSE, FALSE);
5011 take = 0;
5012 }
5013 }
5014 if (run == 0)
5015 frp = frp->fr_next;
5016 else
5017 frp = frp->fr_prev;
5018 }
5019 }
5020 }
5021}
5022
5023#if defined(FEAT_VERTSPLIT) || defined(PROTO)
5024/*
5025 * Set current window width and take care of repositioning other windows to
5026 * fit around it.
5027 */
5028 void
5029win_setwidth(width)
5030 int width;
5031{
5032 win_setwidth_win(width, curwin);
5033}
5034
5035 void
5036win_setwidth_win(width, wp)
5037 int width;
5038 win_T *wp;
5039{
5040 /* Always keep current window at least one column wide, even when
5041 * 'winminwidth' is zero. */
5042 if (wp == curwin)
5043 {
5044 if (width < p_wmw)
5045 width = p_wmw;
5046 if (width == 0)
5047 width = 1;
5048 }
5049
5050 frame_setwidth(wp->w_frame, width + wp->w_vsep_width);
5051
5052 /* recompute the window positions */
5053 (void)win_comp_pos();
5054
5055 redraw_all_later(NOT_VALID);
5056}
5057
5058/*
5059 * Set the width of a frame to "width" and take care that all frames and
5060 * windows inside it are resized. Also resize frames above and below if the
5061 * are in the same FR_ROW frame.
5062 *
5063 * Strategy is similar to frame_setheight().
5064 */
5065 static void
5066frame_setwidth(curfrp, width)
5067 frame_T *curfrp;
5068 int width;
5069{
5070 int room; /* total number of lines available */
5071 int take; /* number of lines taken from other windows */
5072 int run;
5073 frame_T *frp;
5074 int w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005075 int room_reserved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076
5077 /* If the width already is the desired value, nothing to do. */
5078 if (curfrp->fr_width == width)
5079 return;
5080
5081 if (curfrp->fr_parent == NULL)
5082 /* topframe: can't change width */
5083 return;
5084
5085 if (curfrp->fr_parent->fr_layout == FR_COL)
5086 {
5087 /* Column of frames: Also need to resize frames above and below of
5088 * this one. First check for the minimal width of these. */
5089 w = frame_minwidth(curfrp->fr_parent, NULL);
5090 if (width < w)
5091 width = w;
5092 frame_setwidth(curfrp->fr_parent, width);
5093 }
5094 else
5095 {
5096 /*
5097 * Row of frames: try to change only frames in this row.
5098 *
5099 * Do this twice:
5100 * 1: compute room available, if it's not enough try resizing the
5101 * containing frame.
5102 * 2: compute the room available and adjust the width to it.
5103 */
5104 for (run = 1; run <= 2; ++run)
5105 {
5106 room = 0;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005107 room_reserved = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 for (frp = curfrp->fr_parent->fr_child; frp != NULL;
5109 frp = frp->fr_next)
5110 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005111 if (frp != curfrp
5112 && frp->fr_win != NULL
5113 && frp->fr_win->w_p_wfw)
5114 room_reserved += frp->fr_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 room += frp->fr_width;
5116 if (frp != curfrp)
5117 room -= frame_minwidth(frp, NULL);
5118 }
5119
5120 if (width <= room)
5121 break;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005122 if (run == 2 || curfrp->fr_height >= ROWS_AVAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 {
5124 if (width > room)
5125 width = room;
5126 break;
5127 }
5128 frame_setwidth(curfrp->fr_parent, width
5129 + frame_minwidth(curfrp->fr_parent, NOWIN) - (int)p_wmw - 1);
5130 }
5131
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 /*
5133 * Compute the number of lines we will take from others frames (can be
5134 * negative!).
5135 */
5136 take = width - curfrp->fr_width;
5137
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005138 /* If there is not enough room, also reduce the width of a window
5139 * with 'winfixwidth' set. */
5140 if (width > room - room_reserved)
5141 room_reserved = room - width;
5142 /* If there is only a 'winfixwidth' window and making the
5143 * window smaller, need to make the other window narrower. */
5144 if (take < 0 && room - curfrp->fr_width < room_reserved)
5145 room_reserved = 0;
5146
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 /*
5148 * set the current frame to the new width
5149 */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005150 frame_new_width(curfrp, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151
5152 /*
5153 * First take lines from the frames right of the current frame. If
5154 * that is not enough, takes lines from frames left of the current
5155 * frame.
5156 */
5157 for (run = 0; run < 2; ++run)
5158 {
5159 if (run == 0)
5160 frp = curfrp->fr_next; /* 1st run: start with next window */
5161 else
5162 frp = curfrp->fr_prev; /* 2nd run: start with prev window */
5163 while (frp != NULL && take != 0)
5164 {
5165 w = frame_minwidth(frp, NULL);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005166 if (room_reserved > 0
5167 && frp->fr_win != NULL
5168 && frp->fr_win->w_p_wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005170 if (room_reserved >= frp->fr_width)
5171 room_reserved -= frp->fr_width;
5172 else
5173 {
5174 if (frp->fr_width - room_reserved > take)
5175 room_reserved = frp->fr_width - take;
5176 take -= frp->fr_width - room_reserved;
5177 frame_new_width(frp, room_reserved, FALSE, FALSE);
5178 room_reserved = 0;
5179 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180 }
5181 else
5182 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005183 if (frp->fr_width - take < w)
5184 {
5185 take -= frp->fr_width - w;
5186 frame_new_width(frp, w, FALSE, FALSE);
5187 }
5188 else
5189 {
5190 frame_new_width(frp, frp->fr_width - take,
5191 FALSE, FALSE);
5192 take = 0;
5193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194 }
5195 if (run == 0)
5196 frp = frp->fr_next;
5197 else
5198 frp = frp->fr_prev;
5199 }
5200 }
5201 }
5202}
5203#endif /* FEAT_VERTSPLIT */
5204
5205/*
5206 * Check 'winminheight' for a valid value.
5207 */
5208 void
5209win_setminheight()
5210{
5211 int room;
5212 int first = TRUE;
5213 win_T *wp;
5214
5215 /* loop until there is a 'winminheight' that is possible */
5216 while (p_wmh > 0)
5217 {
5218 /* TODO: handle vertical splits */
5219 room = -p_wh;
5220 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5221 room += wp->w_height - p_wmh;
5222 if (room >= 0)
5223 break;
5224 --p_wmh;
5225 if (first)
5226 {
5227 EMSG(_(e_noroom));
5228 first = FALSE;
5229 }
5230 }
5231}
5232
5233#ifdef FEAT_MOUSE
5234
5235/*
5236 * Status line of dragwin is dragged "offset" lines down (negative is up).
5237 */
5238 void
5239win_drag_status_line(dragwin, offset)
5240 win_T *dragwin;
5241 int offset;
5242{
5243 frame_T *curfr;
5244 frame_T *fr;
5245 int room;
5246 int row;
5247 int up; /* if TRUE, drag status line up, otherwise down */
5248 int n;
5249
5250 fr = dragwin->w_frame;
5251 curfr = fr;
5252 if (fr != topframe) /* more than one window */
5253 {
5254 fr = fr->fr_parent;
5255 /* When the parent frame is not a column of frames, its parent should
5256 * be. */
5257 if (fr->fr_layout != FR_COL)
5258 {
5259 curfr = fr;
5260 if (fr != topframe) /* only a row of windows, may drag statusline */
5261 fr = fr->fr_parent;
5262 }
5263 }
5264
5265 /* If this is the last frame in a column, may want to resize the parent
5266 * frame instead (go two up to skip a row of frames). */
5267 while (curfr != topframe && curfr->fr_next == NULL)
5268 {
5269 if (fr != topframe)
5270 fr = fr->fr_parent;
5271 curfr = fr;
5272 if (fr != topframe)
5273 fr = fr->fr_parent;
5274 }
5275
5276 if (offset < 0) /* drag up */
5277 {
5278 up = TRUE;
5279 offset = -offset;
5280 /* sum up the room of the current frame and above it */
5281 if (fr == curfr)
5282 {
5283 /* only one window */
5284 room = fr->fr_height - frame_minheight(fr, NULL);
5285 }
5286 else
5287 {
5288 room = 0;
5289 for (fr = fr->fr_child; ; fr = fr->fr_next)
5290 {
5291 room += fr->fr_height - frame_minheight(fr, NULL);
5292 if (fr == curfr)
5293 break;
5294 }
5295 }
5296 fr = curfr->fr_next; /* put fr at frame that grows */
5297 }
5298 else /* drag down */
5299 {
5300 up = FALSE;
5301 /*
5302 * Only dragging the last status line can reduce p_ch.
5303 */
5304 room = Rows - cmdline_row;
5305 if (curfr->fr_next == NULL)
5306 room -= 1;
5307 else
5308 room -= p_ch;
5309 if (room < 0)
5310 room = 0;
5311 /* sum up the room of frames below of the current one */
5312 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5313 room += fr->fr_height - frame_minheight(fr, NULL);
5314 fr = curfr; /* put fr at window that grows */
5315 }
5316
5317 if (room < offset) /* Not enough room */
5318 offset = room; /* Move as far as we can */
5319 if (offset <= 0)
5320 return;
5321
5322 /*
5323 * Grow frame fr by "offset" lines.
5324 * Doesn't happen when dragging the last status line up.
5325 */
5326 if (fr != NULL)
5327 frame_new_height(fr, fr->fr_height + offset, up, FALSE);
5328
5329 if (up)
5330 fr = curfr; /* current frame gets smaller */
5331 else
5332 fr = curfr->fr_next; /* next frame gets smaller */
5333
5334 /*
5335 * Now make the other frames smaller.
5336 */
5337 while (fr != NULL && offset > 0)
5338 {
5339 n = frame_minheight(fr, NULL);
5340 if (fr->fr_height - offset <= n)
5341 {
5342 offset -= fr->fr_height - n;
5343 frame_new_height(fr, n, !up, FALSE);
5344 }
5345 else
5346 {
5347 frame_new_height(fr, fr->fr_height - offset, !up, FALSE);
5348 break;
5349 }
5350 if (up)
5351 fr = fr->fr_prev;
5352 else
5353 fr = fr->fr_next;
5354 }
5355 row = win_comp_pos();
5356 screen_fill(row, cmdline_row, 0, (int)Columns, ' ', ' ', 0);
5357 cmdline_row = row;
5358 p_ch = Rows - cmdline_row;
5359 if (p_ch < 1)
5360 p_ch = 1;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005361 curtab->tp_ch_used = p_ch;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005362 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 showmode();
5364}
5365
5366#ifdef FEAT_VERTSPLIT
5367/*
5368 * Separator line of dragwin is dragged "offset" lines right (negative is left).
5369 */
5370 void
5371win_drag_vsep_line(dragwin, offset)
5372 win_T *dragwin;
5373 int offset;
5374{
5375 frame_T *curfr;
5376 frame_T *fr;
5377 int room;
5378 int left; /* if TRUE, drag separator line left, otherwise right */
5379 int n;
5380
5381 fr = dragwin->w_frame;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005382 if (fr == topframe) /* only one window (cannot happen?) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 return;
5384 curfr = fr;
5385 fr = fr->fr_parent;
5386 /* When the parent frame is not a row of frames, its parent should be. */
5387 if (fr->fr_layout != FR_ROW)
5388 {
5389 if (fr == topframe) /* only a column of windows (cannot happen?) */
5390 return;
5391 curfr = fr;
5392 fr = fr->fr_parent;
5393 }
5394
5395 /* If this is the last frame in a row, may want to resize a parent
5396 * frame instead. */
5397 while (curfr->fr_next == NULL)
5398 {
5399 if (fr == topframe)
5400 break;
5401 curfr = fr;
5402 fr = fr->fr_parent;
5403 if (fr != topframe)
5404 {
5405 curfr = fr;
5406 fr = fr->fr_parent;
5407 }
5408 }
5409
5410 if (offset < 0) /* drag left */
5411 {
5412 left = TRUE;
5413 offset = -offset;
5414 /* sum up the room of the current frame and left of it */
5415 room = 0;
5416 for (fr = fr->fr_child; ; fr = fr->fr_next)
5417 {
5418 room += fr->fr_width - frame_minwidth(fr, NULL);
5419 if (fr == curfr)
5420 break;
5421 }
5422 fr = curfr->fr_next; /* put fr at frame that grows */
5423 }
5424 else /* drag right */
5425 {
5426 left = FALSE;
5427 /* sum up the room of frames right of the current one */
5428 room = 0;
5429 for (fr = curfr->fr_next; fr != NULL; fr = fr->fr_next)
5430 room += fr->fr_width - frame_minwidth(fr, NULL);
5431 fr = curfr; /* put fr at window that grows */
5432 }
5433
5434 if (room < offset) /* Not enough room */
5435 offset = room; /* Move as far as we can */
5436 if (offset <= 0) /* No room at all, quit. */
5437 return;
5438
5439 /* grow frame fr by offset lines */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005440 frame_new_width(fr, fr->fr_width + offset, left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441
5442 /* shrink other frames: current and at the left or at the right */
5443 if (left)
5444 fr = curfr; /* current frame gets smaller */
5445 else
5446 fr = curfr->fr_next; /* next frame gets smaller */
5447
5448 while (fr != NULL && offset > 0)
5449 {
5450 n = frame_minwidth(fr, NULL);
5451 if (fr->fr_width - offset <= n)
5452 {
5453 offset -= fr->fr_width - n;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005454 frame_new_width(fr, n, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 }
5456 else
5457 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00005458 frame_new_width(fr, fr->fr_width - offset, !left, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 break;
5460 }
5461 if (left)
5462 fr = fr->fr_prev;
5463 else
5464 fr = fr->fr_next;
5465 }
5466 (void)win_comp_pos();
5467 redraw_all_later(NOT_VALID);
5468}
5469#endif /* FEAT_VERTSPLIT */
5470#endif /* FEAT_MOUSE */
5471
5472#endif /* FEAT_WINDOWS */
5473
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005474#define FRACTION_MULT 16384L
5475
5476/*
5477 * Set wp->w_fraction for the current w_wrow and w_height.
5478 */
5479 static void
5480set_fraction(wp)
5481 win_T *wp;
5482{
5483 wp->w_fraction = ((long)wp->w_wrow * FRACTION_MULT
5484 + FRACTION_MULT / 2) / (long)wp->w_height;
5485}
5486
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487/*
5488 * Set the height of a window.
5489 * This takes care of the things inside the window, not what happens to the
5490 * window position, the frame or to other windows.
5491 */
5492 static void
5493win_new_height(wp, height)
5494 win_T *wp;
5495 int height;
5496{
5497 linenr_T lnum;
5498 int sline, line_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499
5500 /* Don't want a negative height. Happens when splitting a tiny window.
5501 * Will equalize heights soon to fix it. */
5502 if (height < 0)
5503 height = 0;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00005504 if (wp->w_height == height)
5505 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506
5507 if (wp->w_wrow != wp->w_prev_fraction_row && wp->w_height > 0)
Bram Moolenaar0215e8e2010-12-17 17:35:10 +01005508 set_fraction(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509
5510 wp->w_height = height;
5511 wp->w_skipcol = 0;
5512
5513 /* Don't change w_topline when height is zero. Don't set w_topline when
5514 * 'scrollbind' is set and this isn't the current window. */
5515 if (height > 0
5516#ifdef FEAT_SCROLLBIND
5517 && (!wp->w_p_scb || wp == curwin)
5518#endif
5519 )
5520 {
Bram Moolenaar34114692005-01-02 11:28:13 +00005521 /*
5522 * Find a value for w_topline that shows the cursor at the same
5523 * relative position in the window as before (more or less).
5524 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 lnum = wp->w_cursor.lnum;
5526 if (lnum < 1) /* can happen when starting up */
5527 lnum = 1;
5528 wp->w_wrow = ((long)wp->w_fraction * (long)height - 1L) / FRACTION_MULT;
5529 line_size = plines_win_col(wp, lnum, (long)(wp->w_cursor.col)) - 1;
5530 sline = wp->w_wrow - line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005531
5532 if (sline >= 0)
5533 {
5534 /* Make sure the whole cursor line is visible, if possible. */
5535 int rows = plines_win(wp, lnum, FALSE);
5536
5537 if (sline > wp->w_height - rows)
5538 {
5539 sline = wp->w_height - rows;
5540 wp->w_wrow -= rows - line_size;
5541 }
5542 }
5543
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 if (sline < 0)
5545 {
5546 /*
5547 * Cursor line would go off top of screen if w_wrow was this high.
Bram Moolenaar26470632006-10-24 19:12:40 +00005548 * Make cursor line the first line in the window. If not enough
5549 * room use w_skipcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 */
5551 wp->w_wrow = line_size;
Bram Moolenaar26470632006-10-24 19:12:40 +00005552 if (wp->w_wrow >= wp->w_height
5553 && (W_WIDTH(wp) - win_col_off(wp)) > 0)
5554 {
5555 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp);
5556 --wp->w_wrow;
5557 while (wp->w_wrow >= wp->w_height)
5558 {
5559 wp->w_skipcol += W_WIDTH(wp) - win_col_off(wp)
5560 + win_col_off2(wp);
5561 --wp->w_wrow;
5562 }
5563 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 }
5565 else
5566 {
Bram Moolenaar26470632006-10-24 19:12:40 +00005567 while (sline > 0 && lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 {
5569#ifdef FEAT_FOLDING
5570 hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
5571 if (lnum == 1)
5572 {
5573 /* first line in buffer is folded */
5574 line_size = 1;
5575 --sline;
5576 break;
5577 }
5578#endif
5579 --lnum;
5580#ifdef FEAT_DIFF
5581 if (lnum == wp->w_topline)
5582 line_size = plines_win_nofill(wp, lnum, TRUE)
5583 + wp->w_topfill;
5584 else
5585#endif
5586 line_size = plines_win(wp, lnum, TRUE);
5587 sline -= line_size;
5588 }
Bram Moolenaar34114692005-01-02 11:28:13 +00005589
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 if (sline < 0)
5591 {
5592 /*
5593 * Line we want at top would go off top of screen. Use next
5594 * line instead.
5595 */
5596#ifdef FEAT_FOLDING
5597 hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
5598#endif
5599 lnum++;
5600 wp->w_wrow -= line_size + sline;
5601 }
5602 else if (sline > 0)
5603 {
5604 /* First line of file reached, use that as topline. */
5605 lnum = 1;
5606 wp->w_wrow -= sline;
5607 }
5608 }
5609 set_topline(wp, lnum);
5610 }
5611
5612 if (wp == curwin)
5613 {
5614 if (p_so)
5615 update_topline();
5616 curs_columns(FALSE); /* validate w_wrow */
5617 }
5618 wp->w_prev_fraction_row = wp->w_wrow;
5619
5620 win_comp_scroll(wp);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005621 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622#ifdef FEAT_WINDOWS
5623 wp->w_redr_status = TRUE;
5624#endif
5625 invalidate_botline_win(wp);
5626}
5627
5628#ifdef FEAT_VERTSPLIT
5629/*
5630 * Set the width of a window.
5631 */
5632 static void
5633win_new_width(wp, width)
5634 win_T *wp;
5635 int width;
5636{
5637 wp->w_width = width;
5638 wp->w_lines_valid = 0;
5639 changed_line_abv_curs_win(wp);
5640 invalidate_botline_win(wp);
5641 if (wp == curwin)
5642 {
5643 update_topline();
5644 curs_columns(TRUE); /* validate w_wrow */
5645 }
5646 redraw_win_later(wp, NOT_VALID);
5647 wp->w_redr_status = TRUE;
5648}
5649#endif
5650
5651 void
5652win_comp_scroll(wp)
5653 win_T *wp;
5654{
5655 wp->w_p_scr = ((unsigned)wp->w_height >> 1);
5656 if (wp->w_p_scr == 0)
5657 wp->w_p_scr = 1;
5658}
5659
5660/*
5661 * command_height: called whenever p_ch has been changed
5662 */
5663 void
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005664command_height()
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665{
5666#ifdef FEAT_WINDOWS
5667 int h;
5668 frame_T *frp;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005669 int old_p_ch = curtab->tp_ch_used;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005671 /* Use the value of p_ch that we remembered. This is needed for when the
5672 * GUI starts up, we can't be sure in what order things happen. And when
5673 * p_ch was changed in another tab page. */
5674 curtab->tp_ch_used = p_ch;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005675
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676 /* Find bottom frame with width of screen. */
5677 frp = lastwin->w_frame;
5678# ifdef FEAT_VERTSPLIT
5679 while (frp->fr_width != Columns && frp->fr_parent != NULL)
5680 frp = frp->fr_parent;
5681# endif
5682
5683 /* Avoid changing the height of a window with 'winfixheight' set. */
5684 while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
5685 && frp->fr_win->w_p_wfh)
5686 frp = frp->fr_prev;
5687
5688 if (starting != NO_SCREEN)
5689 {
5690 cmdline_row = Rows - p_ch;
5691
5692 if (p_ch > old_p_ch) /* p_ch got bigger */
5693 {
5694 while (p_ch > old_p_ch)
5695 {
5696 if (frp == NULL)
5697 {
5698 EMSG(_(e_noroom));
5699 p_ch = old_p_ch;
Bram Moolenaar719939c2007-09-25 12:51:28 +00005700 curtab->tp_ch_used = p_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 cmdline_row = Rows - p_ch;
5702 break;
5703 }
5704 h = frp->fr_height - frame_minheight(frp, NULL);
5705 if (h > p_ch - old_p_ch)
5706 h = p_ch - old_p_ch;
5707 old_p_ch += h;
5708 frame_add_height(frp, -h);
5709 frp = frp->fr_prev;
5710 }
5711
5712 /* Recompute window positions. */
5713 (void)win_comp_pos();
5714
5715 /* clear the lines added to cmdline */
5716 if (full_screen)
5717 screen_fill((int)(cmdline_row), (int)Rows, 0,
5718 (int)Columns, ' ', ' ', 0);
5719 msg_row = cmdline_row;
5720 redraw_cmdline = TRUE;
5721 return;
5722 }
5723
5724 if (msg_row < cmdline_row)
5725 msg_row = cmdline_row;
5726 redraw_cmdline = TRUE;
5727 }
5728 frame_add_height(frp, (int)(old_p_ch - p_ch));
5729
5730 /* Recompute window positions. */
5731 if (frp != lastwin->w_frame)
5732 (void)win_comp_pos();
5733#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 cmdline_row = Rows - p_ch;
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00005735 win_setheight(cmdline_row);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736#endif
5737}
5738
5739#if defined(FEAT_WINDOWS) || defined(PROTO)
5740/*
5741 * Resize frame "frp" to be "n" lines higher (negative for less high).
5742 * Also resize the frames it is contained in.
5743 */
5744 static void
5745frame_add_height(frp, n)
5746 frame_T *frp;
5747 int n;
5748{
5749 frame_new_height(frp, frp->fr_height + n, FALSE, FALSE);
5750 for (;;)
5751 {
5752 frp = frp->fr_parent;
5753 if (frp == NULL)
5754 break;
5755 frp->fr_height += n;
5756 }
5757}
5758
5759/*
5760 * Add or remove a status line for the bottom window(s), according to the
5761 * value of 'laststatus'.
5762 */
5763 void
5764last_status(morewin)
5765 int morewin; /* pretend there are two or more windows */
5766{
5767 /* Don't make a difference between horizontal or vertical split. */
5768 last_status_rec(topframe, (p_ls == 2
5769 || (p_ls == 1 && (morewin || lastwin != firstwin))));
5770}
5771
5772 static void
5773last_status_rec(fr, statusline)
5774 frame_T *fr;
5775 int statusline;
5776{
5777 frame_T *fp;
5778 win_T *wp;
5779
5780 if (fr->fr_layout == FR_LEAF)
5781 {
5782 wp = fr->fr_win;
5783 if (wp->w_status_height != 0 && !statusline)
5784 {
5785 /* remove status line */
5786 win_new_height(wp, wp->w_height + 1);
5787 wp->w_status_height = 0;
5788 comp_col();
5789 }
5790 else if (wp->w_status_height == 0 && statusline)
5791 {
5792 /* Find a frame to take a line from. */
5793 fp = fr;
5794 while (fp->fr_height <= frame_minheight(fp, NULL))
5795 {
5796 if (fp == topframe)
5797 {
5798 EMSG(_(e_noroom));
5799 return;
5800 }
5801 /* In a column of frames: go to frame above. If already at
5802 * the top or in a row of frames: go to parent. */
5803 if (fp->fr_parent->fr_layout == FR_COL && fp->fr_prev != NULL)
5804 fp = fp->fr_prev;
5805 else
5806 fp = fp->fr_parent;
5807 }
5808 wp->w_status_height = 1;
5809 if (fp != fr)
5810 {
5811 frame_new_height(fp, fp->fr_height - 1, FALSE, FALSE);
5812 frame_fix_height(wp);
5813 (void)win_comp_pos();
5814 }
5815 else
5816 win_new_height(wp, wp->w_height - 1);
5817 comp_col();
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00005818 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 }
5820 }
5821#ifdef FEAT_VERTSPLIT
5822 else if (fr->fr_layout == FR_ROW)
5823 {
5824 /* vertically split windows, set status line for each one */
5825 for (fp = fr->fr_child; fp != NULL; fp = fp->fr_next)
5826 last_status_rec(fp, statusline);
5827 }
5828#endif
5829 else
5830 {
5831 /* horizontally split window, set status line for last one */
5832 for (fp = fr->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
5833 ;
5834 last_status_rec(fp, statusline);
5835 }
5836}
5837
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005838/*
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00005839 * Return the number of lines used by the tab page line.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005840 */
5841 int
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005842tabline_height()
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005843{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005844#ifdef FEAT_GUI_TABLINE
5845 /* When the GUI has the tabline then this always returns zero. */
5846 if (gui_use_tabline())
5847 return 0;
5848#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005849 switch (p_stal)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00005850 {
5851 case 0: return 0;
5852 case 1: return (first_tabpage->tp_next == NULL) ? 0 : 1;
5853 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005854 return 1;
5855}
5856
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857#endif /* FEAT_WINDOWS */
5858
5859#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5860/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005861 * Get the file name at the cursor.
5862 * If Visual mode is active, use the selected text if it's in one line.
5863 * Returns the name in allocated memory, NULL for failure.
5864 */
5865 char_u *
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005866grab_file_name(count, file_lnum)
5867 long count;
5868 linenr_T *file_lnum;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005869{
5870# ifdef FEAT_VISUAL
5871 if (VIsual_active)
5872 {
5873 int len;
5874 char_u *ptr;
5875
5876 if (get_visual_text(NULL, &ptr, &len) == FAIL)
5877 return NULL;
5878 return find_file_name_in_path(ptr, len,
5879 FNAME_MESS|FNAME_EXP|FNAME_REL, count, curbuf->b_ffname);
5880 }
5881# endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005882 return file_name_at_cursor(FNAME_MESS|FNAME_HYP|FNAME_EXP|FNAME_REL, count,
5883 file_lnum);
5884
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005885}
5886
5887/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 * Return the file name under or after the cursor.
5889 *
5890 * The 'path' option is searched if the file name is not absolute.
5891 * The string returned has been alloc'ed and should be freed by the caller.
5892 * NULL is returned if the file name or file is not found.
5893 *
5894 * options:
5895 * FNAME_MESS give error messages
5896 * FNAME_EXP expand to path
5897 * FNAME_HYP check for hypertext link
5898 * FNAME_INCL apply "includeexpr"
5899 */
5900 char_u *
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005901file_name_at_cursor(options, count, file_lnum)
5902 int options;
5903 long count;
5904 linenr_T *file_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905{
5906 return file_name_in_line(ml_get_curline(),
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005907 curwin->w_cursor.col, options, count, curbuf->b_ffname,
5908 file_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909}
5910
5911/*
5912 * Return the name of the file under or after ptr[col].
5913 * Otherwise like file_name_at_cursor().
5914 */
5915 char_u *
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005916file_name_in_line(line, col, options, count, rel_fname, file_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 char_u *line;
5918 int col;
5919 int options;
5920 long count;
5921 char_u *rel_fname; /* file we are searching relative to */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005922 linenr_T *file_lnum; /* line number after the file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923{
5924 char_u *ptr;
5925 int len;
5926
5927 /*
5928 * search forward for what could be the start of a file name
5929 */
5930 ptr = line + col;
5931 while (*ptr != NUL && !vim_isfilec(*ptr))
Bram Moolenaar0dd492f2005-06-22 22:25:07 +00005932 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 if (*ptr == NUL) /* nothing found */
5934 {
5935 if (options & FNAME_MESS)
5936 EMSG(_("E446: No file name under cursor"));
5937 return NULL;
5938 }
5939
5940 /*
5941 * Search backward for first char of the file name.
5942 * Go one char back to ":" before "//" even when ':' is not in 'isfname'.
5943 */
5944 while (ptr > line)
5945 {
5946#ifdef FEAT_MBYTE
5947 if (has_mbyte && (len = (*mb_head_off)(line, ptr - 1)) > 0)
5948 ptr -= len + 1;
5949 else
5950#endif
5951 if (vim_isfilec(ptr[-1])
5952 || ((options & FNAME_HYP) && path_is_url(ptr - 1)))
5953 --ptr;
5954 else
5955 break;
5956 }
5957
5958 /*
5959 * Search forward for the last char of the file name.
5960 * Also allow "://" when ':' is not in 'isfname'.
5961 */
5962 len = 0;
5963 while (vim_isfilec(ptr[len])
5964 || ((options & FNAME_HYP) && path_is_url(ptr + len)))
5965#ifdef FEAT_MBYTE
5966 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005967 len += (*mb_ptr2len)(ptr + len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 else
5969#endif
5970 ++len;
5971
5972 /*
5973 * If there is trailing punctuation, remove it.
5974 * But don't remove "..", could be a directory name.
5975 */
5976 if (len > 2 && vim_strchr((char_u *)".,:;!", ptr[len - 1]) != NULL
5977 && ptr[len - 2] != '.')
5978 --len;
5979
Bram Moolenaard1f56e62006-02-22 21:25:37 +00005980 if (file_lnum != NULL)
5981 {
5982 char_u *p;
5983
5984 /* Get the number after the file name and a separator character */
5985 p = ptr + len;
5986 p = skipwhite(p);
5987 if (*p != NUL)
5988 {
5989 if (!isdigit(*p))
5990 ++p; /* skip the separator */
5991 p = skipwhite(p);
5992 if (isdigit(*p))
5993 *file_lnum = (int)getdigits(&p);
5994 }
5995 }
5996
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997 return find_file_name_in_path(ptr, len, options, count, rel_fname);
5998}
5999
6000# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6001static char_u *eval_includeexpr __ARGS((char_u *ptr, int len));
6002
6003 static char_u *
6004eval_includeexpr(ptr, len)
6005 char_u *ptr;
6006 int len;
6007{
6008 char_u *res;
6009
6010 set_vim_var_string(VV_FNAME, ptr, len);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006011 res = eval_to_string_safe(curbuf->b_p_inex, NULL,
Bram Moolenaard1f56e62006-02-22 21:25:37 +00006012 was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 set_vim_var_string(VV_FNAME, NULL, 0);
6014 return res;
6015}
6016#endif
6017
6018/*
6019 * Return the name of the file ptr[len] in 'path'.
6020 * Otherwise like file_name_at_cursor().
6021 */
6022 char_u *
6023find_file_name_in_path(ptr, len, options, count, rel_fname)
6024 char_u *ptr;
6025 int len;
6026 int options;
6027 long count;
6028 char_u *rel_fname; /* file we are searching relative to */
6029{
6030 char_u *file_name;
6031 int c;
6032# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6033 char_u *tofree = NULL;
6034
6035 if ((options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6036 {
6037 tofree = eval_includeexpr(ptr, len);
6038 if (tofree != NULL)
6039 {
6040 ptr = tofree;
6041 len = (int)STRLEN(ptr);
6042 }
6043 }
6044# endif
6045
6046 if (options & FNAME_EXP)
6047 {
6048 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6049 TRUE, rel_fname);
6050
6051# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6052 /*
6053 * If the file could not be found in a normal way, try applying
6054 * 'includeexpr' (unless done already).
6055 */
6056 if (file_name == NULL
6057 && !(options & FNAME_INCL) && *curbuf->b_p_inex != NUL)
6058 {
6059 tofree = eval_includeexpr(ptr, len);
6060 if (tofree != NULL)
6061 {
6062 ptr = tofree;
6063 len = (int)STRLEN(ptr);
6064 file_name = find_file_in_path(ptr, len, options & ~FNAME_MESS,
6065 TRUE, rel_fname);
6066 }
6067 }
6068# endif
6069 if (file_name == NULL && (options & FNAME_MESS))
6070 {
6071 c = ptr[len];
6072 ptr[len] = NUL;
6073 EMSG2(_("E447: Can't find file \"%s\" in path"), ptr);
6074 ptr[len] = c;
6075 }
6076
6077 /* Repeat finding the file "count" times. This matters when it
6078 * appears several times in the path. */
6079 while (file_name != NULL && --count > 0)
6080 {
6081 vim_free(file_name);
6082 file_name = find_file_in_path(ptr, len, options, FALSE, rel_fname);
6083 }
6084 }
6085 else
6086 file_name = vim_strnsave(ptr, len);
6087
6088# if defined(FEAT_FIND_ID) && defined(FEAT_EVAL)
6089 vim_free(tofree);
6090# endif
6091
6092 return file_name;
6093}
6094#endif /* FEAT_SEARCHPATH */
6095
6096/*
6097 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
6098 * Also check for ":\\", which MS Internet Explorer accepts, return
6099 * URL_BACKSLASH.
6100 */
6101 static int
6102path_is_url(p)
6103 char_u *p;
6104{
6105 if (STRNCMP(p, "://", (size_t)3) == 0)
6106 return URL_SLASH;
6107 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
6108 return URL_BACKSLASH;
6109 return 0;
6110}
6111
6112/*
6113 * Check if "fname" starts with "name://". Return URL_SLASH if it does.
6114 * Return URL_BACKSLASH for "name:\\".
6115 * Return zero otherwise.
6116 */
6117 int
6118path_with_url(fname)
6119 char_u *fname;
6120{
6121 char_u *p;
6122
6123 for (p = fname; isalpha(*p); ++p)
6124 ;
6125 return path_is_url(p);
6126}
6127
6128/*
6129 * Return TRUE if "name" is a full (absolute) path name or URL.
6130 */
6131 int
6132vim_isAbsName(name)
6133 char_u *name;
6134{
6135 return (path_with_url(name) != 0 || mch_isFullName(name));
6136}
6137
6138/*
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006139 * Get absolute file name into buffer "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140 *
6141 * return FAIL for failure, OK otherwise
6142 */
6143 int
6144vim_FullName(fname, buf, len, force)
6145 char_u *fname, *buf;
6146 int len;
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00006147 int force; /* force expansion even when already absolute */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148{
6149 int retval = OK;
6150 int url;
6151
6152 *buf = NUL;
6153 if (fname == NULL)
6154 return FAIL;
6155
6156 url = path_with_url(fname);
6157 if (!url)
6158 retval = mch_FullName(fname, buf, len, force);
6159 if (url || retval == FAIL)
6160 {
6161 /* something failed; use the file name (truncate when too long) */
Bram Moolenaarb6356332005-07-18 21:40:44 +00006162 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 }
6164#if defined(MACOS_CLASSIC) || defined(OS2) || defined(MSDOS) || defined(MSWIN)
6165 slash_adjust(buf);
6166#endif
6167 return retval;
6168}
6169
6170/*
6171 * Return the minimal number of rows that is needed on the screen to display
6172 * the current number of windows.
6173 */
6174 int
6175min_rows()
6176{
6177 int total;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006178#ifdef FEAT_WINDOWS
6179 tabpage_T *tp;
6180 int n;
6181#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182
6183 if (firstwin == NULL) /* not initialized yet */
6184 return MIN_LINES;
6185
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006187 total = 0;
6188 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6189 {
6190 n = frame_minheight(tp->tp_topframe, NULL);
6191 if (total < n)
6192 total = n;
6193 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006194 total += tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195#else
Bram Moolenaarf740b292006-02-16 22:11:02 +00006196 total = 1; /* at least one window should have a line! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006198 total += 1; /* count the room for the command line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 return total;
6200}
6201
6202/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006203 * Return TRUE if there is only one window (in the current tab page), not
6204 * counting a help or preview window, unless it is the current window.
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006205 * Does not count "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 */
6207 int
6208only_one_window()
6209{
6210#ifdef FEAT_WINDOWS
6211 int count = 0;
6212 win_T *wp;
6213
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006214 /* If there is another tab page there always is another window. */
6215 if (first_tabpage->tp_next != NULL)
6216 return FALSE;
6217
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 for (wp = firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006219 if ((!((wp->w_buffer->b_help && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220# ifdef FEAT_QUICKFIX
6221 || wp->w_p_pvw
6222# endif
6223 ) || wp == curwin)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006224# ifdef FEAT_AUTOCMD
6225 && wp != aucmd_win
6226# endif
6227 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 ++count;
6229 return (count <= 1);
6230#else
6231 return TRUE;
6232#endif
6233}
6234
6235#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD) || defined(PROTO)
6236/*
6237 * Correct the cursor line number in other windows. Used after changing the
6238 * current buffer, and before applying autocommands.
6239 * When "do_curwin" is TRUE, also check current window.
6240 */
6241 void
6242check_lnums(do_curwin)
6243 int do_curwin;
6244{
6245 win_T *wp;
6246
6247#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006248 tabpage_T *tp;
6249
6250 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251 if ((do_curwin || wp != curwin) && wp->w_buffer == curbuf)
6252#else
6253 wp = curwin;
6254 if (do_curwin)
6255#endif
6256 {
6257 if (wp->w_cursor.lnum > curbuf->b_ml.ml_line_count)
6258 wp->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6259 if (wp->w_topline > curbuf->b_ml.ml_line_count)
6260 wp->w_topline = curbuf->b_ml.ml_line_count;
6261 }
6262}
6263#endif
6264
6265#if defined(FEAT_WINDOWS) || defined(PROTO)
6266
6267/*
6268 * A snapshot of the window sizes, to restore them after closing the help
6269 * window.
6270 * Only these fields are used:
6271 * fr_layout
6272 * fr_width
6273 * fr_height
6274 * fr_next
6275 * fr_child
6276 * fr_win (only valid for the old curwin, NULL otherwise)
6277 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278
6279/*
6280 * Create a snapshot of the current frame sizes.
6281 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006282 void
6283make_snapshot(idx)
6284 int idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006286 clear_snapshot(curtab, idx);
6287 make_snapshot_rec(topframe, &curtab->tp_snapshot[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288}
6289
6290 static void
6291make_snapshot_rec(fr, frp)
6292 frame_T *fr;
6293 frame_T **frp;
6294{
6295 *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
6296 if (*frp == NULL)
6297 return;
6298 (*frp)->fr_layout = fr->fr_layout;
6299# ifdef FEAT_VERTSPLIT
6300 (*frp)->fr_width = fr->fr_width;
6301# endif
6302 (*frp)->fr_height = fr->fr_height;
6303 if (fr->fr_next != NULL)
6304 make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
6305 if (fr->fr_child != NULL)
6306 make_snapshot_rec(fr->fr_child, &((*frp)->fr_child));
6307 if (fr->fr_layout == FR_LEAF && fr->fr_win == curwin)
6308 (*frp)->fr_win = curwin;
6309}
6310
6311/*
6312 * Remove any existing snapshot.
6313 */
6314 static void
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006315clear_snapshot(tp, idx)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006316 tabpage_T *tp;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006317 int idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006319 clear_snapshot_rec(tp->tp_snapshot[idx]);
6320 tp->tp_snapshot[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321}
6322
6323 static void
6324clear_snapshot_rec(fr)
6325 frame_T *fr;
6326{
6327 if (fr != NULL)
6328 {
6329 clear_snapshot_rec(fr->fr_next);
6330 clear_snapshot_rec(fr->fr_child);
6331 vim_free(fr);
6332 }
6333}
6334
6335/*
6336 * Restore a previously created snapshot, if there is any.
6337 * This is only done if the screen size didn't change and the window layout is
6338 * still the same.
6339 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006340 void
6341restore_snapshot(idx, close_curwin)
6342 int idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343 int close_curwin; /* closing current window */
6344{
6345 win_T *wp;
6346
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006347 if (curtab->tp_snapshot[idx] != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348# ifdef FEAT_VERTSPLIT
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006349 && curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006351 && curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
6352 && check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006354 wp = restore_snapshot_rec(curtab->tp_snapshot[idx], topframe);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 win_comp_pos();
6356 if (wp != NULL && close_curwin)
6357 win_goto(wp);
6358 redraw_all_later(CLEAR);
6359 }
Bram Moolenaar746ebd32009-06-16 14:01:43 +00006360 clear_snapshot(curtab, idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361}
6362
6363/*
6364 * Check if frames "sn" and "fr" have the same layout, same following frames
6365 * and same children.
6366 */
6367 static int
6368check_snapshot_rec(sn, fr)
6369 frame_T *sn;
6370 frame_T *fr;
6371{
6372 if (sn->fr_layout != fr->fr_layout
6373 || (sn->fr_next == NULL) != (fr->fr_next == NULL)
6374 || (sn->fr_child == NULL) != (fr->fr_child == NULL)
6375 || (sn->fr_next != NULL
6376 && check_snapshot_rec(sn->fr_next, fr->fr_next) == FAIL)
6377 || (sn->fr_child != NULL
6378 && check_snapshot_rec(sn->fr_child, fr->fr_child) == FAIL))
6379 return FAIL;
6380 return OK;
6381}
6382
6383/*
6384 * Copy the size of snapshot frame "sn" to frame "fr". Do the same for all
6385 * following frames and children.
6386 * Returns a pointer to the old current window, or NULL.
6387 */
6388 static win_T *
6389restore_snapshot_rec(sn, fr)
6390 frame_T *sn;
6391 frame_T *fr;
6392{
6393 win_T *wp = NULL;
6394 win_T *wp2;
6395
6396 fr->fr_height = sn->fr_height;
6397# ifdef FEAT_VERTSPLIT
6398 fr->fr_width = sn->fr_width;
6399# endif
6400 if (fr->fr_layout == FR_LEAF)
6401 {
6402 frame_new_height(fr, fr->fr_height, FALSE, FALSE);
6403# ifdef FEAT_VERTSPLIT
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00006404 frame_new_width(fr, fr->fr_width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405# endif
6406 wp = sn->fr_win;
6407 }
6408 if (sn->fr_next != NULL)
6409 {
6410 wp2 = restore_snapshot_rec(sn->fr_next, fr->fr_next);
6411 if (wp2 != NULL)
6412 wp = wp2;
6413 }
6414 if (sn->fr_child != NULL)
6415 {
6416 wp2 = restore_snapshot_rec(sn->fr_child, fr->fr_child);
6417 if (wp2 != NULL)
6418 wp = wp2;
6419 }
6420 return wp;
6421}
6422
6423#endif
6424
6425#if (defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)) || defined(PROTO)
6426/*
6427 * Return TRUE if there is any vertically split window.
6428 */
6429 int
6430win_hasvertsplit()
6431{
6432 frame_T *fr;
6433
6434 if (topframe->fr_layout == FR_ROW)
6435 return TRUE;
6436
6437 if (topframe->fr_layout == FR_COL)
6438 for (fr = topframe->fr_child; fr != NULL; fr = fr->fr_next)
6439 if (fr->fr_layout == FR_ROW)
6440 return TRUE;
6441
6442 return FALSE;
6443}
6444#endif
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006445
6446#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
6447/*
6448 * Add match to the match list of window 'wp'. The pattern 'pat' will be
Bram Moolenaare37d50a2008-08-06 17:06:04 +00006449 * highlighted with the group 'grp' with priority 'prio'.
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006450 * Optionally, a desired ID 'id' can be specified (greater than or equal to 1).
6451 * If no particular ID is desired, -1 must be specified for 'id'.
6452 * Return ID of added match, -1 on failure.
6453 */
6454 int
6455match_add(wp, grp, pat, prio, id)
6456 win_T *wp;
6457 char_u *grp;
6458 char_u *pat;
6459 int prio;
6460 int id;
6461{
6462 matchitem_T *cur;
6463 matchitem_T *prev;
6464 matchitem_T *m;
6465 int hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006466 regprog_T *regprog;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006467
6468 if (*grp == NUL || *pat == NUL)
6469 return -1;
6470 if (id < -1 || id == 0)
6471 {
6472 EMSGN("E799: Invalid ID: %ld (must be greater than or equal to 1)", id);
6473 return -1;
6474 }
6475 if (id != -1)
6476 {
6477 cur = wp->w_match_head;
6478 while (cur != NULL)
6479 {
6480 if (cur->id == id)
6481 {
6482 EMSGN("E801: ID already taken: %ld", id);
6483 return -1;
6484 }
6485 cur = cur->next;
6486 }
6487 }
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00006488 if ((hlg_id = syn_namen2id(grp, (int)STRLEN(grp))) == 0)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006489 {
6490 EMSG2(_(e_nogroup), grp);
6491 return -1;
6492 }
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006493 if ((regprog = vim_regcomp(pat, RE_MAGIC)) == NULL)
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006494 {
6495 EMSG2(_(e_invarg2), pat);
6496 return -1;
6497 }
6498
6499 /* Find available match ID. */
6500 while (id == -1)
6501 {
6502 cur = wp->w_match_head;
6503 while (cur != NULL && cur->id != wp->w_next_match_id)
6504 cur = cur->next;
6505 if (cur == NULL)
6506 id = wp->w_next_match_id;
6507 wp->w_next_match_id++;
6508 }
6509
6510 /* Build new match. */
6511 m = (matchitem_T *)alloc(sizeof(matchitem_T));
6512 m->id = id;
6513 m->priority = prio;
6514 m->pattern = vim_strsave(pat);
6515 m->hlg_id = hlg_id;
Bram Moolenaar0963cd92007-08-05 16:49:43 +00006516 m->match.regprog = regprog;
6517 m->match.rmm_ic = FALSE;
6518 m->match.rmm_maxcol = 0;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00006519
6520 /* Insert new match. The match list is in ascending order with regard to
6521 * the match priorities. */
6522 cur = wp->w_match_head;
6523 prev = cur;
6524 while (cur != NULL && prio >= cur->priority)
6525 {
6526 prev = cur;
6527 cur = cur->next;
6528 }
6529 if (cur == prev)
6530 wp->w_match_head = m;
6531 else
6532 prev->next = m;
6533 m->next = cur;
6534
6535 redraw_later(SOME_VALID);
6536 return id;
6537}
6538
6539/*
6540 * Delete match with ID 'id' in the match list of window 'wp'.
6541 * Print error messages if 'perr' is TRUE.
6542 */
6543 int
6544match_delete(wp, id, perr)
6545 win_T *wp;
6546 int id;
6547 int perr;
6548{
6549 matchitem_T *cur = wp->w_match_head;
6550 matchitem_T *prev = cur;
6551
6552 if (id < 1)
6553 {
6554 if (perr == TRUE)
6555 EMSGN("E802: Invalid ID: %ld (must be greater than or equal to 1)",
6556 id);
6557 return -1;
6558 }
6559 while (cur != NULL && cur->id != id)
6560 {
6561 prev = cur;
6562 cur = cur->next;
6563 }
6564 if (cur == NULL)
6565 {
6566 if (perr == TRUE)
6567 EMSGN("E803: ID not found: %ld", id);
6568 return -1;
6569 }
6570 if (cur == prev)
6571 wp->w_match_head = cur->next;
6572 else
6573 prev->next = cur->next;
6574 vim_free(cur->match.regprog);
6575 vim_free(cur->pattern);
6576 vim_free(cur);
6577 redraw_later(SOME_VALID);
6578 return 0;
6579}
6580
6581/*
6582 * Delete all matches in the match list of window 'wp'.
6583 */
6584 void
6585clear_matches(wp)
6586 win_T *wp;
6587{
6588 matchitem_T *m;
6589
6590 while (wp->w_match_head != NULL)
6591 {
6592 m = wp->w_match_head->next;
6593 vim_free(wp->w_match_head->match.regprog);
6594 vim_free(wp->w_match_head->pattern);
6595 vim_free(wp->w_match_head);
6596 wp->w_match_head = m;
6597 }
6598 redraw_later(SOME_VALID);
6599}
6600
6601/*
6602 * Get match from ID 'id' in window 'wp'.
6603 * Return NULL if match not found.
6604 */
6605 matchitem_T *
6606get_match(wp, id)
6607 win_T *wp;
6608 int id;
6609{
6610 matchitem_T *cur = wp->w_match_head;
6611
6612 while (cur != NULL && cur->id != id)
6613 cur = cur->next;
6614 return cur;
6615}
6616#endif