blob: 0a0a2d4957ea5e912e58b0696f012061807c1263 [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 Moolenaarf740b292006-02-16 22:11:02 +000026static win_T *win_free_mem __ARGS((win_T *win, int *dirp, tabpage_T *tp));
Bram Moolenaarf740b292006-02-16 22:11:02 +000027static frame_T *win_altframe __ARGS((win_T *win, tabpage_T *tp));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000028static tabpage_T *alt_tabpage __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000029static win_T *frame2win __ARGS((frame_T *frp));
30static int frame_has_win __ARGS((frame_T *frp, win_T *wp));
31static void frame_new_height __ARGS((frame_T *topfrp, int height, int topfirst, int wfh));
32static int frame_fixed_height __ARGS((frame_T *frp));
33#ifdef FEAT_VERTSPLIT
Bram Moolenaarbe4d5062006-03-18 21:30:13 +000034static int frame_fixed_width __ARGS((frame_T *frp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000035static void frame_add_statusline __ARGS((frame_T *frp));
Bram Moolenaarbe4d5062006-03-18 21:30:13 +000036static void frame_new_width __ARGS((frame_T *topfrp, int width, int leftfirst, int wfw));
Bram Moolenaar071d4272004-06-13 20:20:40 +000037static void frame_add_vsep __ARGS((frame_T *frp));
38static int frame_minwidth __ARGS((frame_T *topfrp, win_T *next_curwin));
39static void frame_fix_width __ARGS((win_T *wp));
40#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000041#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +000042static int win_alloc_firstwin __ARGS((win_T *oldwin));
Bram Moolenaar746ebd32009-06-16 14:01:43 +000043static void new_frame __ARGS((win_T *wp));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000044#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000045static tabpage_T *alloc_tabpage __ARGS((void));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000046static int leave_tabpage __ARGS((buf_T *new_curbuf));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000047static void enter_tabpage __ARGS((tabpage_T *tp, buf_T *old_curbuf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000048static void frame_fix_height __ARGS((win_T *wp));
49static int frame_minheight __ARGS((frame_T *topfrp, win_T *next_curwin));
50static void win_enter_ext __ARGS((win_T *wp, int undo_sync, int no_curwin));
Bram Moolenaarf740b292006-02-16 22:11:02 +000051static void win_free __ARGS((win_T *wp, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000052static void frame_append __ARGS((frame_T *after, frame_T *frp));
53static void frame_insert __ARGS((frame_T *before, frame_T *frp));
54static void frame_remove __ARGS((frame_T *frp));
55#ifdef FEAT_VERTSPLIT
56static void win_new_width __ARGS((win_T *wp, int width));
Bram Moolenaar071d4272004-06-13 20:20:40 +000057static void win_goto_ver __ARGS((int up, long count));
58static void win_goto_hor __ARGS((int left, long count));
59#endif
60static void frame_add_height __ARGS((frame_T *frp, int n));
61static void last_status_rec __ARGS((frame_T *fr, int statusline));
62
Bram Moolenaar071d4272004-06-13 20:20:40 +000063static void make_snapshot_rec __ARGS((frame_T *fr, frame_T **frp));
Bram Moolenaar746ebd32009-06-16 14:01:43 +000064static void clear_snapshot __ARGS((tabpage_T *tp, int idx));
Bram Moolenaar071d4272004-06-13 20:20:40 +000065static void clear_snapshot_rec __ARGS((frame_T *fr));
Bram Moolenaar071d4272004-06-13 20:20:40 +000066static int check_snapshot_rec __ARGS((frame_T *sn, frame_T *fr));
67static win_T *restore_snapshot_rec __ARGS((frame_T *sn, frame_T *fr));
68
69#endif /* FEAT_WINDOWS */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000070
Bram Moolenaar746ebd32009-06-16 14:01:43 +000071static win_T *win_alloc __ARGS((win_T *after, int hidden));
Bram Moolenaar0215e8e2010-12-17 17:35:10 +010072static void set_fraction __ARGS((win_T *wp));
73static void win_new_height __ARGS((win_T *wp, int height));
Bram Moolenaar071d4272004-06-13 20:20:40 +000074
75#define URL_SLASH 1 /* path_is_url() has found "://" */
76#define URL_BACKSLASH 2 /* path_is_url() has found ":\\" */
77
Bram Moolenaarb6799ac2007-05-10 16:44:05 +000078#define NOWIN (win_T *)-1 /* non-existing window */
Bram Moolenaar071d4272004-06-13 20:20:40 +000079
Bram Moolenaar05159a02005-02-26 23:04:13 +000080#ifdef FEAT_WINDOWS
Bram Moolenaar32466aa2006-02-24 23:53:04 +000081# define ROWS_AVAIL (Rows - p_ch - tabline_height())
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000082#else
83# define ROWS_AVAIL (Rows - p_ch)
Bram Moolenaar05159a02005-02-26 23:04:13 +000084#endif
85
Bram Moolenaar071d4272004-06-13 20:20:40 +000086#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000087
88static char *m_onlyone = N_("Already only one window");
89
Bram Moolenaar071d4272004-06-13 20:20:40 +000090/*
91 * all CTRL-W window commands are handled here, called from normal_cmd().
92 */
93 void
94do_window(nchar, Prenum, xchar)
95 int nchar;
96 long Prenum;
97 int xchar; /* extra char from ":wincmd gx" or NUL */
98{
99 long Prenum1;
100 win_T *wp;
101#if defined(FEAT_SEARCHPATH) || defined(FEAT_FIND_ID)
102 char_u *ptr;
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000103 linenr_T lnum = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104#endif
105#ifdef FEAT_FIND_ID
106 int type = FIND_DEFINE;
107 int len;
108#endif
109 char_u cbuf[40];
110
111 if (Prenum == 0)
112 Prenum1 = 1;
113 else
114 Prenum1 = Prenum;
115
116#ifdef FEAT_CMDWIN
117# define CHECK_CMDWIN if (cmdwin_type != 0) { EMSG(_(e_cmdwin)); break; }
118#else
119# define CHECK_CMDWIN
120#endif
121
122 switch (nchar)
123 {
124/* split current window in two parts, horizontally */
125 case 'S':
126 case Ctrl_S:
127 case 's':
128 CHECK_CMDWIN
129#ifdef FEAT_VISUAL
130 reset_VIsual_and_resel(); /* stop Visual mode */
131#endif
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000132#ifdef FEAT_QUICKFIX
133 /* When splitting the quickfix window open a new buffer in it,
134 * don't replicate the quickfix buffer. */
135 if (bt_quickfix(curbuf))
136 goto newwindow;
137#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138#ifdef FEAT_GUI
139 need_mouse_correct = TRUE;
140#endif
141 win_split((int)Prenum, 0);
142 break;
143
144#ifdef FEAT_VERTSPLIT
145/* split current window in two parts, vertically */
146 case Ctrl_V:
147 case 'v':
148 CHECK_CMDWIN
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000149# ifdef FEAT_VISUAL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 reset_VIsual_and_resel(); /* stop Visual mode */
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000151# endif
152# ifdef FEAT_QUICKFIX
153 /* When splitting the quickfix window open a new buffer in it,
154 * don't replicate the quickfix buffer. */
155 if (bt_quickfix(curbuf))
156 goto newwindow;
157# endif
158# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 need_mouse_correct = TRUE;
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000160# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 win_split((int)Prenum, WSP_VERT);
162 break;
163#endif
164
165/* split current window and edit alternate file */
166 case Ctrl_HAT:
167 case '^':
168 CHECK_CMDWIN
169#ifdef FEAT_VISUAL
170 reset_VIsual_and_resel(); /* stop Visual mode */
171#endif
172 STRCPY(cbuf, "split #");
173 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000174 vim_snprintf((char *)cbuf + 7, sizeof(cbuf) - 7,
175 "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176 do_cmdline_cmd(cbuf);
177 break;
178
179/* open new window */
180 case Ctrl_N:
181 case 'n':
182 CHECK_CMDWIN
183#ifdef FEAT_VISUAL
184 reset_VIsual_and_resel(); /* stop Visual mode */
185#endif
Bram Moolenaarb1b715d2006-01-21 22:09:43 +0000186#ifdef FEAT_QUICKFIX
187newwindow:
188#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 if (Prenum)
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000190 /* window height */
191 vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 else
193 cbuf[0] = NUL;
Bram Moolenaar990d95c2008-07-07 19:23:37 +0000194#if defined(FEAT_VERTSPLIT) && defined(FEAT_QUICKFIX)
195 if (nchar == 'v' || nchar == Ctrl_V)
196 STRCAT(cbuf, "v");
197#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 STRCAT(cbuf, "new");
199 do_cmdline_cmd(cbuf);
200 break;
201
202/* quit current window */
203 case Ctrl_Q:
204 case 'q':
205#ifdef FEAT_VISUAL
206 reset_VIsual_and_resel(); /* stop Visual mode */
207#endif
208 do_cmdline_cmd((char_u *)"quit");
209 break;
210
211/* close current window */
212 case Ctrl_C:
213 case 'c':
214#ifdef FEAT_VISUAL
215 reset_VIsual_and_resel(); /* stop Visual mode */
216#endif
217 do_cmdline_cmd((char_u *)"close");
218 break;
219
220#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
221/* close preview window */
222 case Ctrl_Z:
223 case 'z':
224 CHECK_CMDWIN
225#ifdef FEAT_VISUAL
226 reset_VIsual_and_resel(); /* stop Visual mode */
227#endif
228 do_cmdline_cmd((char_u *)"pclose");
229 break;
230
231/* cursor to preview window */
232 case 'P':
233 for (wp = firstwin; wp != NULL; wp = wp->w_next)
234 if (wp->w_p_pvw)
235 break;
236 if (wp == NULL)
237 EMSG(_("E441: There is no preview window"));
238 else
239 win_goto(wp);
240 break;
241#endif
242
243/* close all but current window */
244 case Ctrl_O:
245 case 'o':
246 CHECK_CMDWIN
247#ifdef FEAT_VISUAL
248 reset_VIsual_and_resel(); /* stop Visual mode */
249#endif
250 do_cmdline_cmd((char_u *)"only");
251 break;
252
253/* cursor to next window with wrap around */
254 case Ctrl_W:
255 case 'w':
256/* cursor to previous window with wrap around */
257 case 'W':
258 CHECK_CMDWIN
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000259 if (firstwin == lastwin && Prenum != 1) /* just one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260 beep_flush();
261 else
262 {
263 if (Prenum) /* go to specified window */
264 {
265 for (wp = firstwin; --Prenum > 0; )
266 {
267 if (wp->w_next == NULL)
268 break;
269 else
270 wp = wp->w_next;
271 }
272 }
273 else
274 {
275 if (nchar == 'W') /* go to previous window */
276 {
277 wp = curwin->w_prev;
278 if (wp == NULL)
279 wp = lastwin; /* wrap around */
280 }
281 else /* go to next window */
282 {
283 wp = curwin->w_next;
284 if (wp == NULL)
285 wp = firstwin; /* wrap around */
286 }
287 }
288 win_goto(wp);
289 }
290 break;
291
292/* cursor to window below */
293 case 'j':
294 case K_DOWN:
295 case Ctrl_J:
296 CHECK_CMDWIN
297#ifdef FEAT_VERTSPLIT
298 win_goto_ver(FALSE, Prenum1);
299#else
300 for (wp = curwin; wp->w_next != NULL && Prenum1-- > 0;
301 wp = wp->w_next)
302 ;
303 win_goto(wp);
304#endif
305 break;
306
307/* cursor to window above */
308 case 'k':
309 case K_UP:
310 case Ctrl_K:
311 CHECK_CMDWIN
312#ifdef FEAT_VERTSPLIT
313 win_goto_ver(TRUE, Prenum1);
314#else
315 for (wp = curwin; wp->w_prev != NULL && Prenum1-- > 0;
316 wp = wp->w_prev)
317 ;
318 win_goto(wp);
319#endif
320 break;
321
322#ifdef FEAT_VERTSPLIT
323/* cursor to left window */
324 case 'h':
325 case K_LEFT:
326 case Ctrl_H:
327 case K_BS:
328 CHECK_CMDWIN
329 win_goto_hor(TRUE, Prenum1);
330 break;
331
332/* cursor to right window */
333 case 'l':
334 case K_RIGHT:
335 case Ctrl_L:
336 CHECK_CMDWIN
337 win_goto_hor(FALSE, Prenum1);
338 break;
339#endif
340
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000341/* move window to new tab page */
342 case 'T':
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000343 if (one_window())
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000344 MSG(_(m_onlyone));
345 else
346 {
347 tabpage_T *oldtab = curtab;
348 tabpage_T *newtab;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000349
350 /* First create a new tab with the window, then go back to
351 * the old tab and close the window there. */
Bram Moolenaar89d40322006-08-29 15:30:07 +0000352 wp = curwin;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000353 if (win_new_tabpage((int)Prenum) == OK
354 && valid_tabpage(oldtab))
355 {
356 newtab = curtab;
357 goto_tabpage_tp(oldtab);
358 if (curwin == wp)
359 win_close(curwin, FALSE);
360 if (valid_tabpage(newtab))
361 goto_tabpage_tp(newtab);
362 }
363 }
364 break;
365
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366/* cursor to top-left window */
367 case 't':
368 case Ctrl_T:
369 win_goto(firstwin);
370 break;
371
372/* cursor to bottom-right window */
373 case 'b':
374 case Ctrl_B:
375 win_goto(lastwin);
376 break;
377
378/* cursor to last accessed (previous) window */
379 case 'p':
380 case Ctrl_P:
381 if (prevwin == NULL)
382 beep_flush();
383 else
384 win_goto(prevwin);
385 break;
386
387/* exchange current and next window */
388 case 'x':
389 case Ctrl_X:
390 CHECK_CMDWIN
391 win_exchange(Prenum);
392 break;
393
394/* rotate windows downwards */
395 case Ctrl_R:
396 case 'r':
397 CHECK_CMDWIN
398#ifdef FEAT_VISUAL
399 reset_VIsual_and_resel(); /* stop Visual mode */
400#endif
401 win_rotate(FALSE, (int)Prenum1); /* downwards */
402 break;
403
404/* rotate windows upwards */
405 case 'R':
406 CHECK_CMDWIN
407#ifdef FEAT_VISUAL
408 reset_VIsual_and_resel(); /* stop Visual mode */
409#endif
410 win_rotate(TRUE, (int)Prenum1); /* upwards */
411 break;
412
413/* move window to the very top/bottom/left/right */
414 case 'K':
415 case 'J':
416#ifdef FEAT_VERTSPLIT
417 case 'H':
418 case 'L':
419#endif
420 CHECK_CMDWIN
421 win_totop((int)Prenum,
422 ((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
423 | ((nchar == 'H' || nchar == 'K') ? WSP_TOP : WSP_BOT));
424 break;
425
426/* make all windows the same height */
427 case '=':
428#ifdef FEAT_GUI
429 need_mouse_correct = TRUE;
430#endif
431 win_equal(NULL, FALSE, 'b');
432 break;
433
434/* increase current window height */
435 case '+':
436#ifdef FEAT_GUI
437 need_mouse_correct = TRUE;
438#endif
439 win_setheight(curwin->w_height + (int)Prenum1);
440 break;
441
442/* decrease current window height */
443 case '-':
444#ifdef FEAT_GUI
445 need_mouse_correct = TRUE;
446#endif
447 win_setheight(curwin->w_height - (int)Prenum1);
448 break;
449
450/* set current window height */
451 case Ctrl__:
452 case '_':
453#ifdef FEAT_GUI
454 need_mouse_correct = TRUE;
455#endif
456 win_setheight(Prenum ? (int)Prenum : 9999);
457 break;
458
459#ifdef FEAT_VERTSPLIT
460/* increase current window width */
461 case '>':
462#ifdef FEAT_GUI
463 need_mouse_correct = TRUE;
464#endif
465 win_setwidth(curwin->w_width + (int)Prenum1);
466 break;
467
468/* decrease current window width */
469 case '<':
470#ifdef FEAT_GUI
471 need_mouse_correct = TRUE;
472#endif
473 win_setwidth(curwin->w_width - (int)Prenum1);
474 break;
475
476/* set current window width */
477 case '|':
478#ifdef FEAT_GUI
479 need_mouse_correct = TRUE;
480#endif
481 win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
482 break;
483#endif
484
485/* jump to tag and split window if tag exists (in preview window) */
486#if defined(FEAT_QUICKFIX)
487 case '}':
488 CHECK_CMDWIN
489 if (Prenum)
490 g_do_tagpreview = Prenum;
491 else
492 g_do_tagpreview = p_pvh;
493 /*FALLTHROUGH*/
494#endif
495 case ']':
496 case Ctrl_RSB:
497 CHECK_CMDWIN
498#ifdef FEAT_VISUAL
499 reset_VIsual_and_resel(); /* stop Visual mode */
500#endif
501 if (Prenum)
502 postponed_split = Prenum;
503 else
504 postponed_split = -1;
505
506 /* Execute the command right here, required when
507 * "wincmd ]" was used in a function. */
508 do_nv_ident(Ctrl_RSB, NUL);
509 break;
510
511#ifdef FEAT_SEARCHPATH
512/* edit file name under cursor in a new window */
513 case 'f':
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000514 case 'F':
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 case Ctrl_F:
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000516wingotofile:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 CHECK_CMDWIN
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000518
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000519 ptr = grab_file_name(Prenum1, &lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 if (ptr != NULL)
521 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000522# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 need_mouse_correct = TRUE;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000524# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 setpcmark();
526 if (win_split(0, 0) == OK)
527 {
Bram Moolenaar3368ea22010-09-21 16:56:35 +0200528 RESET_BINDING(curwin);
Bram Moolenaar701f7af2008-11-15 13:12:07 +0000529 (void)do_ecmd(0, ptr, NULL, NULL, ECMD_LASTL,
530 ECMD_HIDE, NULL);
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000531 if (nchar == 'F' && lnum >= 0)
532 {
533 curwin->w_cursor.lnum = lnum;
534 check_cursor_lnum();
535 beginline(BL_SOL | BL_FIX);
536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 }
538 vim_free(ptr);
539 }
540 break;
541#endif
542
543#ifdef FEAT_FIND_ID
Bram Moolenaarb6799ac2007-05-10 16:44:05 +0000544/* Go to the first occurrence of the identifier under cursor along path in a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 * new window -- webb
546 */
547 case 'i': /* Go to any match */
548 case Ctrl_I:
549 type = FIND_ANY;
550 /* FALLTHROUGH */
551 case 'd': /* Go to definition, using 'define' */
552 case Ctrl_D:
553 CHECK_CMDWIN
554 if ((len = find_ident_under_cursor(&ptr, FIND_IDENT)) == 0)
555 break;
556 find_pattern_in_path(ptr, 0, len, TRUE,
557 Prenum == 0 ? TRUE : FALSE, type,
558 Prenum1, ACTION_SPLIT, (linenr_T)1, (linenr_T)MAXLNUM);
559 curwin->w_set_curswant = TRUE;
560 break;
561#endif
562
Bram Moolenaar05159a02005-02-26 23:04:13 +0000563 case K_KENTER:
564 case CAR:
565#if defined(FEAT_QUICKFIX)
566 /*
567 * In a quickfix window a <CR> jumps to the error under the
568 * cursor in a new window.
569 */
570 if (bt_quickfix(curbuf))
571 {
Bram Moolenaar28c258f2006-01-25 22:02:51 +0000572 sprintf((char *)cbuf, "split +%ld%s",
573 (long)curwin->w_cursor.lnum,
574 (curwin->w_llist_ref == NULL) ? "cc" : "ll");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000575 do_cmdline_cmd(cbuf);
576 }
577#endif
578 break;
579
580
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581/* CTRL-W g extended commands */
582 case 'g':
583 case Ctrl_G:
584 CHECK_CMDWIN
585#ifdef USE_ON_FLY_SCROLL
586 dont_scroll = TRUE; /* disallow scrolling here */
587#endif
588 ++no_mapping;
589 ++allow_keys; /* no mapping for xchar, but allow key codes */
590 if (xchar == NUL)
Bram Moolenaar61abfd12007-09-13 16:26:47 +0000591 xchar = plain_vgetc();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 LANGMAP_ADJUST(xchar, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 --no_mapping;
594 --allow_keys;
595#ifdef FEAT_CMDL_INFO
596 (void)add_to_showcmd(xchar);
597#endif
598 switch (xchar)
599 {
600#if defined(FEAT_QUICKFIX)
601 case '}':
602 xchar = Ctrl_RSB;
603 if (Prenum)
604 g_do_tagpreview = Prenum;
605 else
606 g_do_tagpreview = p_pvh;
607 /*FALLTHROUGH*/
608#endif
609 case ']':
610 case Ctrl_RSB:
611#ifdef FEAT_VISUAL
612 reset_VIsual_and_resel(); /* stop Visual mode */
613#endif
614 if (Prenum)
615 postponed_split = Prenum;
616 else
617 postponed_split = -1;
618
619 /* Execute the command right here, required when
620 * "wincmd g}" was used in a function. */
621 do_nv_ident('g', xchar);
622 break;
623
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000624#ifdef FEAT_SEARCHPATH
625 case 'f': /* CTRL-W gf: "gf" in a new tab page */
Bram Moolenaar57657d82006-04-21 22:12:41 +0000626 case 'F': /* CTRL-W gF: "gF" in a new tab page */
Bram Moolenaar6d1dcff2010-01-27 20:26:46 +0100627 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar57657d82006-04-21 22:12:41 +0000628 nchar = xchar;
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000629 goto wingotofile;
630#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 default:
632 beep_flush();
633 break;
634 }
635 break;
636
637 default: beep_flush();
638 break;
639 }
640}
641
642/*
643 * split the current window, implements CTRL-W s and :split
644 *
645 * "size" is the height or width for the new window, 0 to use half of current
646 * height or width.
647 *
648 * "flags":
649 * WSP_ROOM: require enough room for new window
650 * WSP_VERT: vertical split.
651 * WSP_TOP: open window at the top-left of the shell (help window).
652 * WSP_BOT: open window at the bottom-right of the shell (quickfix window).
653 * WSP_HELP: creating the help window, keep layout snapshot
654 *
655 * return FAIL for failure, OK otherwise
656 */
657 int
658win_split(size, flags)
659 int size;
660 int flags;
661{
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000662 /* When the ":tab" modifier was used open a new tab page instead. */
663 if (may_open_tabpage() == OK)
664 return OK;
665
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 /* Add flags from ":vertical", ":topleft" and ":botright". */
667 flags |= cmdmod.split;
668 if ((flags & WSP_TOP) && (flags & WSP_BOT))
669 {
670 EMSG(_("E442: Can't split topleft and botright at the same time"));
671 return FAIL;
672 }
673
674 /* When creating the help window make a snapshot of the window layout.
675 * Otherwise clear the snapshot, it's now invalid. */
676 if (flags & WSP_HELP)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000677 make_snapshot(SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000679 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680
681 return win_split_ins(size, flags, NULL, 0);
682}
683
684/*
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100685 * When "new_wp" is NULL: split the current window in two.
686 * When "new_wp" is not NULL: insert this window at the far
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 * top/left/right/bottom.
688 * return FAIL for failure, OK otherwise
689 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000690 int
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100691win_split_ins(size, flags, new_wp, dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 int size;
693 int flags;
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100694 win_T *new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 int dir;
696{
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100697 win_T *wp = new_wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 win_T *oldwin;
699 int new_size = size;
700 int i;
701 int need_status = 0;
702 int do_equal = FALSE;
703 int needed;
704 int available;
705 int oldwin_height = 0;
706 int layout;
707 frame_T *frp, *curfrp;
708 int before;
709
710 if (flags & WSP_TOP)
711 oldwin = firstwin;
712 else if (flags & WSP_BOT)
713 oldwin = lastwin;
714 else
715 oldwin = curwin;
716
717 /* add a status line when p_ls == 1 and splitting the first window */
718 if (lastwin == firstwin && p_ls == 1 && oldwin->w_status_height == 0)
719 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100720 if (oldwin->w_height <= p_wmh && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 {
722 EMSG(_(e_noroom));
723 return FAIL;
724 }
725 need_status = STATUS_HEIGHT;
726 }
727
Bram Moolenaaree79cbc2007-05-02 19:50:14 +0000728#ifdef FEAT_GUI
729 /* May be needed for the scrollbars that are going to change. */
730 if (gui.in_use)
731 out_flush();
732#endif
733
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734#ifdef FEAT_VERTSPLIT
735 if (flags & WSP_VERT)
736 {
737 layout = FR_ROW;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738
739 /*
740 * Check if we are able to split the current window and compute its
741 * width.
742 */
743 needed = p_wmw + 1;
744 if (flags & WSP_ROOM)
745 needed += p_wiw - p_wmw;
746 if (p_ea || (flags & (WSP_BOT | WSP_TOP)))
747 {
748 available = topframe->fr_width;
749 needed += frame_minwidth(topframe, NULL);
750 }
751 else
752 available = oldwin->w_width;
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100753 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 {
755 EMSG(_(e_noroom));
756 return FAIL;
757 }
758 if (new_size == 0)
759 new_size = oldwin->w_width / 2;
760 if (new_size > oldwin->w_width - p_wmw - 1)
761 new_size = oldwin->w_width - p_wmw - 1;
762 if (new_size < p_wmw)
763 new_size = p_wmw;
764
765 /* if it doesn't fit in the current window, need win_equal() */
766 if (oldwin->w_width - new_size - 1 < p_wmw)
767 do_equal = TRUE;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000768
769 /* We don't like to take lines for the new window from a
770 * 'winfixwidth' window. Take them from a window to the left or right
771 * instead, if possible. */
772 if (oldwin->w_p_wfw)
773 win_setwidth_win(oldwin->w_width + new_size, oldwin);
Bram Moolenaar67f71312007-08-12 14:55:56 +0000774
775 /* Only make all windows the same width if one of them (except oldwin)
776 * is wider than one of the split windows. */
777 if (!do_equal && p_ea && size == 0 && *p_ead != 'v'
778 && oldwin->w_frame->fr_parent != NULL)
779 {
780 frp = oldwin->w_frame->fr_parent->fr_child;
781 while (frp != NULL)
782 {
783 if (frp->fr_win != oldwin && frp->fr_win != NULL
784 && (frp->fr_win->w_width > new_size
785 || frp->fr_win->w_width > oldwin->w_width
786 - new_size - STATUS_HEIGHT))
787 {
788 do_equal = TRUE;
789 break;
790 }
791 frp = frp->fr_next;
792 }
793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 }
795 else
796#endif
797 {
798 layout = FR_COL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799
800 /*
801 * Check if we are able to split the current window and compute its
802 * height.
803 */
804 needed = p_wmh + STATUS_HEIGHT + need_status;
805 if (flags & WSP_ROOM)
806 needed += p_wh - p_wmh;
807 if (p_ea || (flags & (WSP_BOT | WSP_TOP)))
808 {
809 available = topframe->fr_height;
810 needed += frame_minheight(topframe, NULL);
811 }
812 else
813 {
814 available = oldwin->w_height;
815 needed += p_wmh;
816 }
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100817 if (available < needed && new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 {
819 EMSG(_(e_noroom));
820 return FAIL;
821 }
822 oldwin_height = oldwin->w_height;
823 if (need_status)
824 {
825 oldwin->w_status_height = STATUS_HEIGHT;
826 oldwin_height -= STATUS_HEIGHT;
827 }
828 if (new_size == 0)
829 new_size = oldwin_height / 2;
830
831 if (new_size > oldwin_height - p_wmh - STATUS_HEIGHT)
832 new_size = oldwin_height - p_wmh - STATUS_HEIGHT;
833 if (new_size < p_wmh)
834 new_size = p_wmh;
835
836 /* if it doesn't fit in the current window, need win_equal() */
837 if (oldwin_height - new_size - STATUS_HEIGHT < p_wmh)
838 do_equal = TRUE;
839
840 /* We don't like to take lines for the new window from a
841 * 'winfixheight' window. Take them from a window above or below
842 * instead, if possible. */
843 if (oldwin->w_p_wfh)
844 {
845 win_setheight_win(oldwin->w_height + new_size + STATUS_HEIGHT,
846 oldwin);
847 oldwin_height = oldwin->w_height;
848 if (need_status)
849 oldwin_height -= STATUS_HEIGHT;
850 }
Bram Moolenaar67f71312007-08-12 14:55:56 +0000851
852 /* Only make all windows the same height if one of them (except oldwin)
853 * is higher than one of the split windows. */
854 if (!do_equal && p_ea && size == 0
855#ifdef FEAT_VERTSPLIT
856 && *p_ead != 'h'
857#endif
858 && oldwin->w_frame->fr_parent != NULL)
859 {
860 frp = oldwin->w_frame->fr_parent->fr_child;
861 while (frp != NULL)
862 {
863 if (frp->fr_win != oldwin && frp->fr_win != NULL
864 && (frp->fr_win->w_height > new_size
865 || frp->fr_win->w_height > oldwin_height - new_size
866 - STATUS_HEIGHT))
867 {
868 do_equal = TRUE;
869 break;
870 }
871 frp = frp->fr_next;
872 }
873 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 }
875
876 /*
877 * allocate new window structure and link it in the window list
878 */
879 if ((flags & WSP_TOP) == 0
880 && ((flags & WSP_BOT)
881 || (flags & WSP_BELOW)
882 || (!(flags & WSP_ABOVE)
883 && (
884#ifdef FEAT_VERTSPLIT
885 (flags & WSP_VERT) ? p_spr :
886#endif
887 p_sb))))
888 {
889 /* new window below/right of current one */
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100890 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000891 wp = win_alloc(oldwin, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 else
893 win_append(oldwin, wp);
894 }
895 else
896 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100897 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000898 wp = win_alloc(oldwin->w_prev, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 else
900 win_append(oldwin->w_prev, wp);
901 }
902
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100903 if (new_wp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 {
905 if (wp == NULL)
906 return FAIL;
907
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000908 new_frame(wp);
909 if (wp->w_frame == NULL)
910 {
911 win_free(wp, NULL);
912 return FAIL;
913 }
914
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000915 /* make the contents of the new window the same as the current one */
Bram Moolenaar884ae642009-02-22 01:37:59 +0000916 win_init(wp, curwin, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 }
918
919 /*
920 * Reorganise the tree of frames to insert the new window.
921 */
922 if (flags & (WSP_TOP | WSP_BOT))
923 {
924#ifdef FEAT_VERTSPLIT
925 if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0)
926 || (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0))
927#else
928 if (topframe->fr_layout == FR_COL)
929#endif
930 {
931 curfrp = topframe->fr_child;
932 if (flags & WSP_BOT)
933 while (curfrp->fr_next != NULL)
934 curfrp = curfrp->fr_next;
935 }
936 else
937 curfrp = topframe;
938 before = (flags & WSP_TOP);
939 }
940 else
941 {
942 curfrp = oldwin->w_frame;
943 if (flags & WSP_BELOW)
944 before = FALSE;
945 else if (flags & WSP_ABOVE)
946 before = TRUE;
947 else
948#ifdef FEAT_VERTSPLIT
949 if (flags & WSP_VERT)
950 before = !p_spr;
951 else
952#endif
953 before = !p_sb;
954 }
955 if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout)
956 {
957 /* Need to create a new frame in the tree to make a branch. */
958 frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
959 *frp = *curfrp;
960 curfrp->fr_layout = layout;
961 frp->fr_parent = curfrp;
962 frp->fr_next = NULL;
963 frp->fr_prev = NULL;
964 curfrp->fr_child = frp;
965 curfrp->fr_win = NULL;
966 curfrp = frp;
967 if (frp->fr_win != NULL)
968 oldwin->w_frame = frp;
969 else
970 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
971 frp->fr_parent = curfrp;
972 }
973
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100974 if (new_wp == NULL)
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000975 frp = wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 else
Bram Moolenaar70b2a562012-01-10 22:26:17 +0100977 frp = new_wp->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 frp->fr_parent = curfrp->fr_parent;
979
980 /* Insert the new frame at the right place in the frame list. */
981 if (before)
982 frame_insert(curfrp, frp);
983 else
984 frame_append(curfrp, frp);
985
Bram Moolenaar0215e8e2010-12-17 17:35:10 +0100986 /* Set w_fraction now so that the cursor keeps the same relative
987 * vertical position. */
Bram Moolenaar13d831f2011-01-08 14:46:03 +0100988 if (oldwin->w_height > 0)
989 set_fraction(oldwin);
Bram Moolenaar0215e8e2010-12-17 17:35:10 +0100990 wp->w_fraction = oldwin->w_fraction;
991
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992#ifdef FEAT_VERTSPLIT
993 if (flags & WSP_VERT)
994 {
995 wp->w_p_scr = curwin->w_p_scr;
Bram Moolenaar0215e8e2010-12-17 17:35:10 +0100996
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 if (need_status)
998 {
Bram Moolenaar9b73a782010-03-17 16:54:57 +0100999 win_new_height(oldwin, oldwin->w_height - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 oldwin->w_status_height = need_status;
1001 }
1002 if (flags & (WSP_TOP | WSP_BOT))
1003 {
1004 /* set height and row of new window to full height */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001005 wp->w_winrow = tabline_height();
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001006 win_new_height(wp, curfrp->fr_height - (p_ls > 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 wp->w_status_height = (p_ls > 0);
1008 }
1009 else
1010 {
1011 /* height and row of new window is same as current window */
1012 wp->w_winrow = oldwin->w_winrow;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001013 win_new_height(wp, oldwin->w_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 wp->w_status_height = oldwin->w_status_height;
1015 }
1016 frp->fr_height = curfrp->fr_height;
1017
1018 /* "new_size" of the current window goes to the new window, use
1019 * one column for the vertical separator */
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001020 win_new_width(wp, new_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 if (before)
1022 wp->w_vsep_width = 1;
1023 else
1024 {
1025 wp->w_vsep_width = oldwin->w_vsep_width;
1026 oldwin->w_vsep_width = 1;
1027 }
1028 if (flags & (WSP_TOP | WSP_BOT))
1029 {
1030 if (flags & WSP_BOT)
1031 frame_add_vsep(curfrp);
1032 /* Set width of neighbor frame */
1033 frame_new_width(curfrp, curfrp->fr_width
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001034 - (new_size + ((flags & WSP_TOP) != 0)), flags & WSP_TOP,
1035 FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 }
1037 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001038 win_new_width(oldwin, oldwin->w_width - (new_size + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 if (before) /* new window left of current one */
1040 {
1041 wp->w_wincol = oldwin->w_wincol;
1042 oldwin->w_wincol += new_size + 1;
1043 }
1044 else /* new window right of current one */
1045 wp->w_wincol = oldwin->w_wincol + oldwin->w_width + 1;
1046 frame_fix_width(oldwin);
1047 frame_fix_width(wp);
1048 }
1049 else
1050#endif
1051 {
1052 /* width and column of new window is same as current window */
1053#ifdef FEAT_VERTSPLIT
1054 if (flags & (WSP_TOP | WSP_BOT))
1055 {
1056 wp->w_wincol = 0;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001057 win_new_width(wp, Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 wp->w_vsep_width = 0;
1059 }
1060 else
1061 {
1062 wp->w_wincol = oldwin->w_wincol;
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001063 win_new_width(wp, oldwin->w_width);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 wp->w_vsep_width = oldwin->w_vsep_width;
1065 }
1066 frp->fr_width = curfrp->fr_width;
1067#endif
1068
1069 /* "new_size" of the current window goes to the new window, use
1070 * one row for the status line */
1071 win_new_height(wp, new_size);
1072 if (flags & (WSP_TOP | WSP_BOT))
1073 frame_new_height(curfrp, curfrp->fr_height
1074 - (new_size + STATUS_HEIGHT), flags & WSP_TOP, FALSE);
1075 else
1076 win_new_height(oldwin, oldwin_height - (new_size + STATUS_HEIGHT));
1077 if (before) /* new window above current one */
1078 {
1079 wp->w_winrow = oldwin->w_winrow;
1080 wp->w_status_height = STATUS_HEIGHT;
1081 oldwin->w_winrow += wp->w_height + STATUS_HEIGHT;
1082 }
1083 else /* new window below current one */
1084 {
1085 wp->w_winrow = oldwin->w_winrow + oldwin->w_height + STATUS_HEIGHT;
1086 wp->w_status_height = oldwin->w_status_height;
1087 oldwin->w_status_height = STATUS_HEIGHT;
1088 }
1089#ifdef FEAT_VERTSPLIT
1090 if (flags & WSP_BOT)
1091 frame_add_statusline(curfrp);
1092#endif
1093 frame_fix_height(wp);
1094 frame_fix_height(oldwin);
1095 }
1096
1097 if (flags & (WSP_TOP | WSP_BOT))
1098 (void)win_comp_pos();
1099
1100 /*
1101 * Both windows need redrawing
1102 */
1103 redraw_win_later(wp, NOT_VALID);
1104 wp->w_redr_status = TRUE;
1105 redraw_win_later(oldwin, NOT_VALID);
1106 oldwin->w_redr_status = TRUE;
1107
1108 if (need_status)
1109 {
1110 msg_row = Rows - 1;
1111 msg_col = sc_col;
1112 msg_clr_eos_force(); /* Old command/ruler may still be there */
1113 comp_col();
1114 msg_row = Rows - 1;
1115 msg_col = 0; /* put position back at start of line */
1116 }
1117
1118 /*
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001119 * equalize the window sizes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 */
1121 if (do_equal || dir != 0)
1122 win_equal(wp, TRUE,
1123#ifdef FEAT_VERTSPLIT
1124 (flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h')
1125 : dir == 'h' ? 'b' :
1126#endif
1127 'v');
1128
1129 /* Don't change the window height/width to 'winheight' / 'winwidth' if a
1130 * size was given. */
1131#ifdef FEAT_VERTSPLIT
1132 if (flags & WSP_VERT)
1133 {
1134 i = p_wiw;
1135 if (size != 0)
1136 p_wiw = size;
1137
1138# ifdef FEAT_GUI
1139 /* When 'guioptions' includes 'L' or 'R' may have to add scrollbars. */
1140 if (gui.in_use)
1141 gui_init_which_components(NULL);
1142# endif
1143 }
1144 else
1145#endif
1146 {
1147 i = p_wh;
1148 if (size != 0)
1149 p_wh = size;
1150 }
Bram Moolenaar9b73a782010-03-17 16:54:57 +01001151
1152 /*
1153 * make the new window the current window
1154 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 win_enter(wp, FALSE);
1156#ifdef FEAT_VERTSPLIT
1157 if (flags & WSP_VERT)
1158 p_wiw = i;
1159 else
1160#endif
1161 p_wh = i;
1162
1163 return OK;
1164}
1165
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001166
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001167/*
1168 * Initialize window "newp" from window "oldp".
1169 * Used when splitting a window and when creating a new tab page.
1170 * The windows will both edit the same buffer.
Bram Moolenaar884ae642009-02-22 01:37:59 +00001171 * WSP_NEWLOC may be specified in flags to prevent the location list from
1172 * being copied.
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001173 */
1174 static void
Bram Moolenaar884ae642009-02-22 01:37:59 +00001175win_init(newp, oldp, flags)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001176 win_T *newp;
1177 win_T *oldp;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001178 int flags UNUSED;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001179{
1180 int i;
1181
1182 newp->w_buffer = oldp->w_buffer;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001183#ifdef FEAT_SYN_HL
Bram Moolenaarfd29f462010-06-06 16:11:09 +02001184 newp->w_s = &(oldp->w_buffer->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02001185#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001186 oldp->w_buffer->b_nwindows++;
1187 newp->w_cursor = oldp->w_cursor;
1188 newp->w_valid = 0;
1189 newp->w_curswant = oldp->w_curswant;
1190 newp->w_set_curswant = oldp->w_set_curswant;
1191 newp->w_topline = oldp->w_topline;
1192#ifdef FEAT_DIFF
1193 newp->w_topfill = oldp->w_topfill;
1194#endif
1195 newp->w_leftcol = oldp->w_leftcol;
1196 newp->w_pcmark = oldp->w_pcmark;
1197 newp->w_prev_pcmark = oldp->w_prev_pcmark;
1198 newp->w_alt_fnum = oldp->w_alt_fnum;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00001199 newp->w_wrow = oldp->w_wrow;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001200 newp->w_fraction = oldp->w_fraction;
1201 newp->w_prev_fraction_row = oldp->w_prev_fraction_row;
1202#ifdef FEAT_JUMPLIST
1203 copy_jumplist(oldp, newp);
1204#endif
1205#ifdef FEAT_QUICKFIX
Bram Moolenaar884ae642009-02-22 01:37:59 +00001206 if (flags & WSP_NEWLOC)
1207 {
1208 /* Don't copy the location list. */
1209 newp->w_llist = NULL;
1210 newp->w_llist_ref = NULL;
1211 }
1212 else
1213 copy_loclist(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001214#endif
1215 if (oldp->w_localdir != NULL)
1216 newp->w_localdir = vim_strsave(oldp->w_localdir);
1217
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001218 /* copy tagstack and folds */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001219 for (i = 0; i < oldp->w_tagstacklen; i++)
1220 {
1221 newp->w_tagstack[i] = oldp->w_tagstack[i];
1222 if (newp->w_tagstack[i].tagname != NULL)
1223 newp->w_tagstack[i].tagname =
1224 vim_strsave(newp->w_tagstack[i].tagname);
1225 }
1226 newp->w_tagstackidx = oldp->w_tagstackidx;
1227 newp->w_tagstacklen = oldp->w_tagstacklen;
Bram Moolenaara971b822011-09-14 14:43:25 +02001228#ifdef FEAT_FOLDING
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001229 copyFoldingState(oldp, newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001230#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001231
1232 win_init_some(newp, oldp);
Bram Moolenaar1a384422010-07-14 19:53:30 +02001233
Bram Moolenaara971b822011-09-14 14:43:25 +02001234#ifdef FEAT_SYN_HL
Bram Moolenaar1a384422010-07-14 19:53:30 +02001235 check_colorcolumn(newp);
Bram Moolenaara971b822011-09-14 14:43:25 +02001236#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001237}
1238
1239/*
1240 * Initialize window "newp" from window"old".
1241 * Only the essential things are copied.
1242 */
1243 static void
1244win_init_some(newp, oldp)
1245 win_T *newp;
1246 win_T *oldp;
1247{
1248 /* Use the same argument list. */
1249 newp->w_alist = oldp->w_alist;
1250 ++newp->w_alist->al_refcount;
1251 newp->w_arg_idx = oldp->w_arg_idx;
1252
1253 /* copy options from existing window */
1254 win_copy_options(oldp, newp);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00001255}
1256
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257#endif /* FEAT_WINDOWS */
1258
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259#if defined(FEAT_WINDOWS) || defined(PROTO)
1260/*
1261 * Check if "win" is a pointer to an existing window.
1262 */
1263 int
1264win_valid(win)
1265 win_T *win;
1266{
1267 win_T *wp;
1268
1269 if (win == NULL)
1270 return FALSE;
1271 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1272 if (wp == win)
1273 return TRUE;
1274 return FALSE;
1275}
1276
1277/*
1278 * Return the number of windows.
1279 */
1280 int
1281win_count()
1282{
1283 win_T *wp;
1284 int count = 0;
1285
1286 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1287 ++count;
1288 return count;
1289}
1290
1291/*
1292 * Make "count" windows on the screen.
1293 * Return actual number of windows on the screen.
1294 * Must be called when there is just one window, filling the whole screen
1295 * (excluding the command line).
1296 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 int
1298make_windows(count, vertical)
1299 int count;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00001300 int vertical UNUSED; /* split windows vertically if TRUE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301{
1302 int maxcount;
1303 int todo;
1304
1305#ifdef FEAT_VERTSPLIT
1306 if (vertical)
1307 {
1308 /* Each windows needs at least 'winminwidth' lines and a separator
1309 * column. */
1310 maxcount = (curwin->w_width + curwin->w_vsep_width
1311 - (p_wiw - p_wmw)) / (p_wmw + 1);
1312 }
1313 else
1314#endif
1315 {
1316 /* Each window needs at least 'winminheight' lines and a status line. */
1317 maxcount = (curwin->w_height + curwin->w_status_height
1318 - (p_wh - p_wmh)) / (p_wmh + STATUS_HEIGHT);
1319 }
1320
1321 if (maxcount < 2)
1322 maxcount = 2;
1323 if (count > maxcount)
1324 count = maxcount;
1325
1326 /*
1327 * add status line now, otherwise first window will be too big
1328 */
1329 if (count > 1)
1330 last_status(TRUE);
1331
1332#ifdef FEAT_AUTOCMD
1333 /*
1334 * Don't execute autocommands while creating the windows. Must do that
1335 * when putting the buffers in the windows.
1336 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001337 block_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338#endif
1339
1340 /* todo is number of windows left to create */
1341 for (todo = count - 1; todo > 0; --todo)
1342#ifdef FEAT_VERTSPLIT
1343 if (vertical)
1344 {
1345 if (win_split(curwin->w_width - (curwin->w_width - todo)
1346 / (todo + 1) - 1, WSP_VERT | WSP_ABOVE) == FAIL)
1347 break;
1348 }
1349 else
1350#endif
1351 {
1352 if (win_split(curwin->w_height - (curwin->w_height - todo
1353 * STATUS_HEIGHT) / (todo + 1)
1354 - STATUS_HEIGHT, WSP_ABOVE) == FAIL)
1355 break;
1356 }
1357
1358#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001359 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360#endif
1361
1362 /* return actual number of windows */
1363 return (count - todo);
1364}
1365
1366/*
1367 * Exchange current and next window
1368 */
1369 static void
1370win_exchange(Prenum)
1371 long Prenum;
1372{
1373 frame_T *frp;
1374 frame_T *frp2;
1375 win_T *wp;
1376 win_T *wp2;
1377 int temp;
1378
1379 if (lastwin == firstwin) /* just one window */
1380 {
1381 beep_flush();
1382 return;
1383 }
1384
1385#ifdef FEAT_GUI
1386 need_mouse_correct = TRUE;
1387#endif
1388
1389 /*
1390 * find window to exchange with
1391 */
1392 if (Prenum)
1393 {
1394 frp = curwin->w_frame->fr_parent->fr_child;
1395 while (frp != NULL && --Prenum > 0)
1396 frp = frp->fr_next;
1397 }
1398 else if (curwin->w_frame->fr_next != NULL) /* Swap with next */
1399 frp = curwin->w_frame->fr_next;
1400 else /* Swap last window in row/col with previous */
1401 frp = curwin->w_frame->fr_prev;
1402
1403 /* We can only exchange a window with another window, not with a frame
1404 * containing windows. */
1405 if (frp == NULL || frp->fr_win == NULL || frp->fr_win == curwin)
1406 return;
1407 wp = frp->fr_win;
1408
1409/*
1410 * 1. remove curwin from the list. Remember after which window it was in wp2
1411 * 2. insert curwin before wp in the list
1412 * if wp != wp2
1413 * 3. remove wp from the list
1414 * 4. insert wp after wp2
1415 * 5. exchange the status line height and vsep width.
1416 */
1417 wp2 = curwin->w_prev;
1418 frp2 = curwin->w_frame->fr_prev;
1419 if (wp->w_prev != curwin)
1420 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001421 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 frame_remove(curwin->w_frame);
1423 win_append(wp->w_prev, curwin);
1424 frame_insert(frp, curwin->w_frame);
1425 }
1426 if (wp != wp2)
1427 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00001428 win_remove(wp, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 frame_remove(wp->w_frame);
1430 win_append(wp2, wp);
1431 if (frp2 == NULL)
1432 frame_insert(wp->w_frame->fr_parent->fr_child, wp->w_frame);
1433 else
1434 frame_append(frp2, wp->w_frame);
1435 }
1436 temp = curwin->w_status_height;
1437 curwin->w_status_height = wp->w_status_height;
1438 wp->w_status_height = temp;
1439#ifdef FEAT_VERTSPLIT
1440 temp = curwin->w_vsep_width;
1441 curwin->w_vsep_width = wp->w_vsep_width;
1442 wp->w_vsep_width = temp;
1443
1444 /* If the windows are not in the same frame, exchange the sizes to avoid
1445 * messing up the window layout. Otherwise fix the frame sizes. */
1446 if (curwin->w_frame->fr_parent != wp->w_frame->fr_parent)
1447 {
1448 temp = curwin->w_height;
1449 curwin->w_height = wp->w_height;
1450 wp->w_height = temp;
1451 temp = curwin->w_width;
1452 curwin->w_width = wp->w_width;
1453 wp->w_width = temp;
1454 }
1455 else
1456 {
1457 frame_fix_height(curwin);
1458 frame_fix_height(wp);
1459 frame_fix_width(curwin);
1460 frame_fix_width(wp);
1461 }
1462#endif
1463
1464 (void)win_comp_pos(); /* recompute window positions */
1465
1466 win_enter(wp, TRUE);
1467 redraw_later(CLEAR);
1468}
1469
1470/*
1471 * rotate windows: if upwards TRUE the second window becomes the first one
1472 * if upwards FALSE the first window becomes the second one
1473 */
1474 static void
1475win_rotate(upwards, count)
1476 int upwards;
1477 int count;
1478{
1479 win_T *wp1;
1480 win_T *wp2;
1481 frame_T *frp;
1482 int n;
1483
1484 if (firstwin == lastwin) /* nothing to do */
1485 {
1486 beep_flush();
1487 return;
1488 }
1489
1490#ifdef FEAT_GUI
1491 need_mouse_correct = TRUE;
1492#endif
1493
1494#ifdef FEAT_VERTSPLIT
1495 /* Check if all frames in this row/col have one window. */
1496 for (frp = curwin->w_frame->fr_parent->fr_child; frp != NULL;
1497 frp = frp->fr_next)
1498 if (frp->fr_win == NULL)
1499 {
1500 EMSG(_("E443: Cannot rotate when another window is split"));
1501 return;
1502 }
1503#endif
1504
1505 while (count--)
1506 {
1507 if (upwards) /* first window becomes last window */
1508 {
1509 /* remove first window/frame from the list */
1510 frp = curwin->w_frame->fr_parent->fr_child;
1511 wp1 = frp->fr_win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00001512 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 frame_remove(frp);
1514
1515 /* find last frame and append removed window/frame after it */
1516 for ( ; frp->fr_next != NULL; frp = frp->fr_next)
1517 ;
1518 win_append(frp->fr_win, wp1);
1519 frame_append(frp, wp1->w_frame);
1520
1521 wp2 = frp->fr_win; /* previously last window */
1522 }
1523 else /* last window becomes first window */
1524 {
1525 /* find last window/frame in the list and remove it */
1526 for (frp = curwin->w_frame; frp->fr_next != NULL;
1527 frp = frp->fr_next)
1528 ;
1529 wp1 = frp->fr_win;
1530 wp2 = wp1->w_prev; /* will become last window */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001531 win_remove(wp1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 frame_remove(frp);
1533
1534 /* append the removed window/frame before the first in the list */
1535 win_append(frp->fr_parent->fr_child->fr_win->w_prev, wp1);
1536 frame_insert(frp->fr_parent->fr_child, frp);
1537 }
1538
1539 /* exchange status height and vsep width of old and new last window */
1540 n = wp2->w_status_height;
1541 wp2->w_status_height = wp1->w_status_height;
1542 wp1->w_status_height = n;
1543 frame_fix_height(wp1);
1544 frame_fix_height(wp2);
1545#ifdef FEAT_VERTSPLIT
1546 n = wp2->w_vsep_width;
1547 wp2->w_vsep_width = wp1->w_vsep_width;
1548 wp1->w_vsep_width = n;
1549 frame_fix_width(wp1);
1550 frame_fix_width(wp2);
1551#endif
1552
1553 /* recompute w_winrow and w_wincol for all windows */
1554 (void)win_comp_pos();
1555 }
1556
1557 redraw_later(CLEAR);
1558}
1559
1560/*
1561 * Move the current window to the very top/bottom/left/right of the screen.
1562 */
1563 static void
1564win_totop(size, flags)
1565 int size;
1566 int flags;
1567{
1568 int dir;
1569 int height = curwin->w_height;
1570
1571 if (lastwin == firstwin)
1572 {
1573 beep_flush();
1574 return;
1575 }
1576
1577 /* Remove the window and frame from the tree of frames. */
Bram Moolenaarf740b292006-02-16 22:11:02 +00001578 (void)winframe_remove(curwin, &dir, NULL);
1579 win_remove(curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 last_status(FALSE); /* may need to remove last status line */
1581 (void)win_comp_pos(); /* recompute window positions */
1582
1583 /* Split a window on the desired side and put the window there. */
1584 (void)win_split_ins(size, flags, curwin, dir);
1585 if (!(flags & WSP_VERT))
1586 {
1587 win_setheight(height);
1588 if (p_ea)
1589 win_equal(curwin, TRUE, 'v');
1590 }
1591
1592#if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
1593 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
1594 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00001595 gui_may_update_scrollbars();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597}
1598
1599/*
1600 * Move window "win1" to below/right of "win2" and make "win1" the current
1601 * window. Only works within the same frame!
1602 */
1603 void
1604win_move_after(win1, win2)
1605 win_T *win1, *win2;
1606{
1607 int height;
1608
1609 /* check if the arguments are reasonable */
1610 if (win1 == win2)
1611 return;
1612
1613 /* check if there is something to do */
1614 if (win2->w_next != win1)
1615 {
1616 /* may need move the status line/vertical separator of the last window
1617 * */
1618 if (win1 == lastwin)
1619 {
1620 height = win1->w_prev->w_status_height;
1621 win1->w_prev->w_status_height = win1->w_status_height;
1622 win1->w_status_height = height;
1623#ifdef FEAT_VERTSPLIT
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001624 if (win1->w_prev->w_vsep_width == 1)
1625 {
1626 /* Remove the vertical separator from the last-but-one window,
1627 * add it to the last window. Adjust the frame widths. */
1628 win1->w_prev->w_vsep_width = 0;
1629 win1->w_prev->w_frame->fr_width -= 1;
1630 win1->w_vsep_width = 1;
1631 win1->w_frame->fr_width += 1;
1632 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633#endif
1634 }
1635 else if (win2 == lastwin)
1636 {
1637 height = win1->w_status_height;
1638 win1->w_status_height = win2->w_status_height;
1639 win2->w_status_height = height;
1640#ifdef FEAT_VERTSPLIT
Bram Moolenaar0396ab02007-02-19 23:14:18 +00001641 if (win1->w_vsep_width == 1)
1642 {
1643 /* Remove the vertical separator from win1, add it to the last
1644 * window, win2. Adjust the frame widths. */
1645 win2->w_vsep_width = 1;
1646 win2->w_frame->fr_width += 1;
1647 win1->w_vsep_width = 0;
1648 win1->w_frame->fr_width -= 1;
1649 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650#endif
1651 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00001652 win_remove(win1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 frame_remove(win1->w_frame);
1654 win_append(win2, win1);
1655 frame_append(win2->w_frame, win1->w_frame);
1656
1657 (void)win_comp_pos(); /* recompute w_winrow for all windows */
1658 redraw_later(NOT_VALID);
1659 }
1660 win_enter(win1, FALSE);
1661}
1662
1663/*
1664 * Make all windows the same height.
1665 * 'next_curwin' will soon be the current window, make sure it has enough
1666 * rows.
1667 */
1668 void
1669win_equal(next_curwin, current, dir)
1670 win_T *next_curwin; /* pointer to current window to be or NULL */
1671 int current; /* do only frame with current window */
1672 int dir; /* 'v' for vertically, 'h' for horizontally,
1673 'b' for both, 0 for using p_ead */
1674{
1675 if (dir == 0)
1676#ifdef FEAT_VERTSPLIT
1677 dir = *p_ead;
1678#else
1679 dir = 'b';
1680#endif
1681 win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001682 topframe, dir, 0, tabline_height(),
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001683 (int)Columns, topframe->fr_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684}
1685
1686/*
1687 * Set a frame to a new position and height, spreading the available room
1688 * equally over contained frames.
1689 * The window "next_curwin" (if not NULL) should at least get the size from
1690 * 'winheight' and 'winwidth' if possible.
1691 */
1692 static void
1693win_equal_rec(next_curwin, current, topfr, dir, col, row, width, height)
1694 win_T *next_curwin; /* pointer to current window to be or NULL */
1695 int current; /* do only frame with current window */
1696 frame_T *topfr; /* frame to set size off */
1697 int dir; /* 'v', 'h' or 'b', see win_equal() */
1698 int col; /* horizontal position for frame */
1699 int row; /* vertical position for frame */
1700 int width; /* new width of frame */
1701 int height; /* new height of frame */
1702{
1703 int n, m;
1704 int extra_sep = 0;
1705 int wincount, totwincount = 0;
1706 frame_T *fr;
1707 int next_curwin_size = 0;
1708 int room = 0;
1709 int new_size;
1710 int has_next_curwin = 0;
1711 int hnc;
1712
1713 if (topfr->fr_layout == FR_LEAF)
1714 {
1715 /* Set the width/height of this frame.
1716 * Redraw when size or position changes */
1717 if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
1718#ifdef FEAT_VERTSPLIT
1719 || topfr->fr_width != width || topfr->fr_win->w_wincol != col
1720#endif
1721 )
1722 {
1723 topfr->fr_win->w_winrow = row;
1724 frame_new_height(topfr, height, FALSE, FALSE);
1725#ifdef FEAT_VERTSPLIT
1726 topfr->fr_win->w_wincol = col;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001727 frame_new_width(topfr, width, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728#endif
1729 redraw_all_later(CLEAR);
1730 }
1731 }
1732#ifdef FEAT_VERTSPLIT
1733 else if (topfr->fr_layout == FR_ROW)
1734 {
1735 topfr->fr_width = width;
1736 topfr->fr_height = height;
1737
1738 if (dir != 'v') /* equalize frame widths */
1739 {
1740 /* Compute the maximum number of windows horizontally in this
1741 * frame. */
1742 n = frame_minwidth(topfr, NOWIN);
1743 /* add one for the rightmost window, it doesn't have a separator */
1744 if (col + width == Columns)
1745 extra_sep = 1;
1746 else
1747 extra_sep = 0;
1748 totwincount = (n + extra_sep) / (p_wmw + 1);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001749 has_next_curwin = frame_has_win(topfr, next_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001751 /*
1752 * Compute width for "next_curwin" window and room available for
1753 * other windows.
1754 * "m" is the minimal width when counting p_wiw for "next_curwin".
1755 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 m = frame_minwidth(topfr, next_curwin);
1757 room = width - m;
1758 if (room < 0)
1759 {
1760 next_curwin_size = p_wiw + room;
1761 room = 0;
1762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 else
1764 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001765 next_curwin_size = -1;
1766 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1767 {
1768 /* If 'winfixwidth' set keep the window width if
1769 * possible.
1770 * Watch out for this window being the next_curwin. */
1771 if (frame_fixed_width(fr))
1772 {
1773 n = frame_minwidth(fr, NOWIN);
1774 new_size = fr->fr_width;
1775 if (frame_has_win(fr, next_curwin))
1776 {
1777 room += p_wiw - p_wmw;
1778 next_curwin_size = 0;
1779 if (new_size < p_wiw)
1780 new_size = p_wiw;
1781 }
1782 else
1783 /* These windows don't use up room. */
1784 totwincount -= (n + (fr->fr_next == NULL
1785 ? extra_sep : 0)) / (p_wmw + 1);
1786 room -= new_size - n;
1787 if (room < 0)
1788 {
1789 new_size += room;
1790 room = 0;
1791 }
1792 fr->fr_newwidth = new_size;
1793 }
1794 }
1795 if (next_curwin_size == -1)
1796 {
1797 if (!has_next_curwin)
1798 next_curwin_size = 0;
1799 else if (totwincount > 1
1800 && (room + (totwincount - 2))
1801 / (totwincount - 1) > p_wiw)
1802 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001803 /* Can make all windows wider than 'winwidth', spread
1804 * the room equally. */
1805 next_curwin_size = (room + p_wiw
1806 + (totwincount - 1) * p_wmw
1807 + (totwincount - 1)) / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001808 room -= next_curwin_size - p_wiw;
1809 }
1810 else
1811 next_curwin_size = p_wiw;
1812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001814
1815 if (has_next_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 --totwincount; /* don't count curwin */
1817 }
1818
1819 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1820 {
1821 n = m = 0;
1822 wincount = 1;
1823 if (fr->fr_next == NULL)
1824 /* last frame gets all that remains (avoid roundoff error) */
1825 new_size = width;
1826 else if (dir == 'v')
1827 new_size = fr->fr_width;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001828 else if (frame_fixed_width(fr))
1829 {
1830 new_size = fr->fr_newwidth;
1831 wincount = 0; /* doesn't count as a sizeable window */
1832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 else
1834 {
1835 /* Compute the maximum number of windows horiz. in "fr". */
1836 n = frame_minwidth(fr, NOWIN);
1837 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1838 / (p_wmw + 1);
1839 m = frame_minwidth(fr, next_curwin);
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001840 if (has_next_curwin)
1841 hnc = frame_has_win(fr, next_curwin);
1842 else
1843 hnc = FALSE;
1844 if (hnc) /* don't count next_curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 --wincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001846 if (totwincount == 0)
1847 new_size = room;
1848 else
1849 new_size = (wincount * room + ((unsigned)totwincount >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 / totwincount;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001851 if (hnc) /* add next_curwin size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 {
1853 next_curwin_size -= p_wiw - (m - n);
1854 new_size += next_curwin_size;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001855 room -= new_size - next_curwin_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 }
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001857 else
1858 room -= new_size;
1859 new_size += n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 }
1861
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001862 /* Skip frame that is full width when splitting or closing a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 * window, unless equalizing all frames. */
1864 if (!current || dir != 'v' || topfr->fr_parent != NULL
1865 || (new_size != fr->fr_width)
1866 || frame_has_win(fr, next_curwin))
1867 win_equal_rec(next_curwin, current, fr, dir, col, row,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00001868 new_size, height);
1869 col += new_size;
1870 width -= new_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 totwincount -= wincount;
1872 }
1873 }
1874#endif
1875 else /* topfr->fr_layout == FR_COL */
1876 {
1877#ifdef FEAT_VERTSPLIT
1878 topfr->fr_width = width;
1879#endif
1880 topfr->fr_height = height;
1881
1882 if (dir != 'h') /* equalize frame heights */
1883 {
1884 /* Compute maximum number of windows vertically in this frame. */
1885 n = frame_minheight(topfr, NOWIN);
1886 /* add one for the bottom window if it doesn't have a statusline */
1887 if (row + height == cmdline_row && p_ls == 0)
1888 extra_sep = 1;
1889 else
1890 extra_sep = 0;
1891 totwincount = (n + extra_sep) / (p_wmh + 1);
1892 has_next_curwin = frame_has_win(topfr, next_curwin);
1893
1894 /*
1895 * Compute height for "next_curwin" window and room available for
1896 * other windows.
1897 * "m" is the minimal height when counting p_wh for "next_curwin".
1898 */
1899 m = frame_minheight(topfr, next_curwin);
1900 room = height - m;
1901 if (room < 0)
1902 {
1903 /* The room is less then 'winheight', use all space for the
1904 * current window. */
1905 next_curwin_size = p_wh + room;
1906 room = 0;
1907 }
1908 else
1909 {
1910 next_curwin_size = -1;
1911 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1912 {
1913 /* If 'winfixheight' set keep the window height if
1914 * possible.
1915 * Watch out for this window being the next_curwin. */
1916 if (frame_fixed_height(fr))
1917 {
1918 n = frame_minheight(fr, NOWIN);
1919 new_size = fr->fr_height;
1920 if (frame_has_win(fr, next_curwin))
1921 {
1922 room += p_wh - p_wmh;
1923 next_curwin_size = 0;
1924 if (new_size < p_wh)
1925 new_size = p_wh;
1926 }
1927 else
1928 /* These windows don't use up room. */
1929 totwincount -= (n + (fr->fr_next == NULL
1930 ? extra_sep : 0)) / (p_wmh + 1);
1931 room -= new_size - n;
1932 if (room < 0)
1933 {
1934 new_size += room;
1935 room = 0;
1936 }
1937 fr->fr_newheight = new_size;
1938 }
1939 }
1940 if (next_curwin_size == -1)
1941 {
1942 if (!has_next_curwin)
1943 next_curwin_size = 0;
1944 else if (totwincount > 1
1945 && (room + (totwincount - 2))
1946 / (totwincount - 1) > p_wh)
1947 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001948 /* can make all windows higher than 'winheight',
1949 * spread the room equally. */
1950 next_curwin_size = (room + p_wh
1951 + (totwincount - 1) * p_wmh
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 + (totwincount - 1)) / totwincount;
1953 room -= next_curwin_size - p_wh;
1954 }
1955 else
1956 next_curwin_size = p_wh;
1957 }
1958 }
1959
1960 if (has_next_curwin)
1961 --totwincount; /* don't count curwin */
1962 }
1963
1964 for (fr = topfr->fr_child; fr != NULL; fr = fr->fr_next)
1965 {
1966 n = m = 0;
1967 wincount = 1;
1968 if (fr->fr_next == NULL)
1969 /* last frame gets all that remains (avoid roundoff error) */
1970 new_size = height;
1971 else if (dir == 'h')
1972 new_size = fr->fr_height;
1973 else if (frame_fixed_height(fr))
1974 {
1975 new_size = fr->fr_newheight;
1976 wincount = 0; /* doesn't count as a sizeable window */
1977 }
1978 else
1979 {
1980 /* Compute the maximum number of windows vert. in "fr". */
1981 n = frame_minheight(fr, NOWIN);
1982 wincount = (n + (fr->fr_next == NULL ? extra_sep : 0))
1983 / (p_wmh + 1);
1984 m = frame_minheight(fr, next_curwin);
1985 if (has_next_curwin)
1986 hnc = frame_has_win(fr, next_curwin);
1987 else
1988 hnc = FALSE;
1989 if (hnc) /* don't count next_curwin */
1990 --wincount;
1991 if (totwincount == 0)
1992 new_size = room;
1993 else
1994 new_size = (wincount * room + ((unsigned)totwincount >> 1))
1995 / totwincount;
1996 if (hnc) /* add next_curwin size */
1997 {
1998 next_curwin_size -= p_wh - (m - n);
1999 new_size += next_curwin_size;
2000 room -= new_size - next_curwin_size;
2001 }
2002 else
2003 room -= new_size;
2004 new_size += n;
2005 }
2006 /* Skip frame that is full width when splitting or closing a
2007 * window, unless equalizing all frames. */
2008 if (!current || dir != 'h' || topfr->fr_parent != NULL
2009 || (new_size != fr->fr_height)
2010 || frame_has_win(fr, next_curwin))
2011 win_equal_rec(next_curwin, current, fr, dir, col, row,
2012 width, new_size);
2013 row += new_size;
2014 height -= new_size;
2015 totwincount -= wincount;
2016 }
2017 }
2018}
2019
2020/*
2021 * close all windows for buffer 'buf'
2022 */
2023 void
Bram Moolenaarf740b292006-02-16 22:11:02 +00002024close_windows(buf, keep_curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 buf_T *buf;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002026 int keep_curwin; /* don't close "curwin" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027{
Bram Moolenaarf740b292006-02-16 22:11:02 +00002028 win_T *wp;
2029 tabpage_T *tp, *nexttp;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002030 int h = tabline_height();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031
2032 ++RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002033
2034 for (wp = firstwin; wp != NULL && lastwin != firstwin; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00002036 if (wp->w_buffer == buf && (!keep_curwin || wp != curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00002038 win_close(wp, FALSE);
2039
2040 /* Start all over, autocommands may change the window layout. */
2041 wp = firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 }
2043 else
Bram Moolenaarf740b292006-02-16 22:11:02 +00002044 wp = wp->w_next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 }
Bram Moolenaarf740b292006-02-16 22:11:02 +00002046
2047 /* Also check windows in other tab pages. */
2048 for (tp = first_tabpage; tp != NULL; tp = nexttp)
2049 {
2050 nexttp = tp->tp_next;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002051 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002052 for (wp = tp->tp_firstwin; wp != NULL; wp = wp->w_next)
2053 if (wp->w_buffer == buf)
2054 {
2055 win_close_othertab(wp, FALSE, tp);
2056
2057 /* Start all over, the tab page may be closed and
2058 * autocommands may change the window layout. */
2059 nexttp = first_tabpage;
2060 break;
2061 }
2062 }
2063
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 --RedrawingDisabled;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002065
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002066 if (h != tabline_height())
Bram Moolenaarf740b292006-02-16 22:11:02 +00002067 shell_new_rows();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068}
2069
2070/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002071 * Return TRUE if the current window is the only window that exists (ignoring
2072 * "aucmd_win").
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002073 * Returns FALSE if there is a window, possibly in another tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002074 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002075 static int
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002076last_window()
2077{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002078 return (one_window() && first_tabpage->tp_next == NULL);
2079}
2080
2081/*
2082 * Return TRUE if there is only one window other than "aucmd_win" in the
2083 * current tab page.
2084 */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002085 int
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002086one_window()
2087{
2088#ifdef FEAT_AUTOCMD
2089 win_T *wp;
2090 int seen_one = FALSE;
2091
2092 FOR_ALL_WINDOWS(wp)
2093 {
2094 if (wp != aucmd_win)
2095 {
2096 if (seen_one)
2097 return FALSE;
2098 seen_one = TRUE;
2099 }
2100 }
2101 return TRUE;
2102#else
2103 return firstwin == lastwin;
2104#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002105}
2106
2107/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002108 * Close window "win". Only works for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 * If "free_buf" is TRUE related buffer may be unloaded.
2110 *
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002111 * Called by :quit, :close, :xit, :wq and findtag().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 */
2113 void
2114win_close(win, free_buf)
2115 win_T *win;
2116 int free_buf;
2117{
2118 win_T *wp;
2119#ifdef FEAT_AUTOCMD
2120 int other_buffer = FALSE;
2121#endif
2122 int close_curwin = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 int dir;
2124 int help_window = FALSE;
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002125 tabpage_T *prev_curtab = curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002127 if (last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 {
2129 EMSG(_("E444: Cannot close last window"));
2130 return;
2131 }
2132
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002133#ifdef FEAT_AUTOCMD
2134 if (win == aucmd_win)
2135 {
2136 EMSG(_("E813: Cannot close autocmd window"));
2137 return;
2138 }
2139 if ((firstwin == aucmd_win || lastwin == aucmd_win) && one_window())
2140 {
2141 EMSG(_("E814: Cannot close window, only autocmd window would remain"));
2142 return;
2143 }
2144#endif
2145
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002146 /*
2147 * When closing the last window in a tab page first go to another tab
2148 * page and then close the window and the tab page. This avoids that
2149 * curwin and curtab are not invalid while we are freeing memory, they may
2150 * be used in GUI events.
2151 */
2152 if (firstwin == lastwin)
2153 {
2154 goto_tabpage_tp(alt_tabpage());
2155 redraw_tabline = TRUE;
2156
2157 /* Safety check: Autocommands may have closed the window when jumping
2158 * to the other tab page. */
2159 if (valid_tabpage(prev_curtab) && prev_curtab->tp_firstwin == win)
2160 {
2161 int h = tabline_height();
2162
2163 win_close_othertab(win, free_buf, prev_curtab);
2164 if (h != tabline_height())
2165 shell_new_rows();
2166 }
2167 return;
2168 }
2169
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 /* When closing the help window, try restoring a snapshot after closing
2171 * the window. Otherwise clear the snapshot, it's now invalid. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002172 if (win->w_buffer != NULL && win->w_buffer->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 help_window = TRUE;
2174 else
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002175 clear_snapshot(curtab, SNAP_HELP_IDX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176
2177#ifdef FEAT_AUTOCMD
2178 if (win == curwin)
2179 {
2180 /*
2181 * Guess which window is going to be the new current window.
2182 * This may change because of the autocommands (sigh).
2183 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002184 wp = frame2win(win_altframe(win, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185
2186 /*
2187 * Be careful: If autocommands delete the window, return now.
2188 */
2189 if (wp->w_buffer != curbuf)
2190 {
2191 other_buffer = TRUE;
2192 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002193 if (!win_valid(win) || last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 return;
2195 }
2196 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002197 if (!win_valid(win) || last_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 return;
2199# ifdef FEAT_EVAL
2200 /* autocmds may abort script processing */
2201 if (aborting())
2202 return;
2203# endif
2204 }
2205#endif
2206
Bram Moolenaar053b9fa2007-04-26 14:09:42 +00002207#ifdef FEAT_GUI
2208 /* Avoid trouble with scrollbars that are going to be deleted in
2209 * win_free(). */
2210 if (gui.in_use)
2211 out_flush();
2212#endif
2213
Bram Moolenaara971b822011-09-14 14:43:25 +02002214#ifdef FEAT_SYN_HL
2215 /* Free independent synblock before the buffer is freed. */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002216 if (win->w_buffer != NULL)
2217 reset_synblock(win);
Bram Moolenaara971b822011-09-14 14:43:25 +02002218#endif
2219
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 /*
2221 * Close the link to the buffer.
2222 */
Bram Moolenaarfc573802011-12-30 15:01:59 +01002223 if (win->w_buffer != NULL)
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002224 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, TRUE);
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002225
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 /* Autocommands may have closed the window already, or closed the only
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002227 * other window or moved to another tab page. */
2228 if (!win_valid(win) || last_window() || curtab != prev_curtab)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 return;
2230
Bram Moolenaara971b822011-09-14 14:43:25 +02002231 /* Free the memory used for the window and get the window that received
2232 * the screen space. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002233 wp = win_free_mem(win, &dir, NULL);
2234
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 /* Make sure curwin isn't invalid. It can cause severe trouble when
2236 * printing an error message. For win_equal() curbuf needs to be valid
2237 * too. */
Bram Moolenaarc1b52862006-04-28 22:32:28 +00002238 if (win == curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 {
2240 curwin = wp;
2241#ifdef FEAT_QUICKFIX
2242 if (wp->w_p_pvw || bt_quickfix(wp->w_buffer))
2243 {
2244 /*
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002245 * If the cursor goes to the preview or the quickfix window, try
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 * finding another window to go to.
2247 */
2248 for (;;)
2249 {
2250 if (wp->w_next == NULL)
2251 wp = firstwin;
2252 else
2253 wp = wp->w_next;
2254 if (wp == curwin)
2255 break;
2256 if (!wp->w_p_pvw && !bt_quickfix(wp->w_buffer))
2257 {
2258 curwin = wp;
2259 break;
2260 }
2261 }
2262 }
2263#endif
2264 curbuf = curwin->w_buffer;
2265 close_curwin = TRUE;
2266 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002267 if (p_ea
2268#ifdef FEAT_VERTSPLIT
2269 && (*p_ead == 'b' || *p_ead == dir)
2270#endif
2271 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 win_equal(curwin, TRUE,
2273#ifdef FEAT_VERTSPLIT
2274 dir
2275#else
2276 0
2277#endif
2278 );
2279 else
2280 win_comp_pos();
2281 if (close_curwin)
2282 {
2283 win_enter_ext(wp, FALSE, TRUE);
2284#ifdef FEAT_AUTOCMD
2285 if (other_buffer)
2286 /* careful: after this wp and win may be invalid! */
2287 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
2288#endif
2289 }
2290
2291 /*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002292 * If last window has a status line now and we don't want one,
2293 * remove the status line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 */
2295 last_status(FALSE);
2296
2297 /* After closing the help window, try restoring the window layout from
2298 * before it was opened. */
2299 if (help_window)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002300 restore_snapshot(SNAP_HELP_IDX, close_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301
2302#if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
2303 /* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
2304 if (gui.in_use && !win_hasvertsplit())
2305 gui_init_which_components(NULL);
2306#endif
2307
2308 redraw_all_later(NOT_VALID);
2309}
2310
2311/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002312 * Close window "win" in tab page "tp", which is not the current tab page.
2313 * This may be the last window ih that tab page and result in closing the tab,
2314 * thus "tp" may become invalid!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002315 * Caller must check if buffer is hidden and whether the tabline needs to be
2316 * updated.
Bram Moolenaarf740b292006-02-16 22:11:02 +00002317 */
2318 void
2319win_close_othertab(win, free_buf, tp)
2320 win_T *win;
2321 int free_buf;
2322 tabpage_T *tp;
2323{
2324 win_T *wp;
2325 int dir;
2326 tabpage_T *ptp = NULL;
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002327 int free_tp = FALSE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002328
2329 /* Close the link to the buffer. */
Bram Moolenaar42ec6562012-02-22 14:58:37 +01002330 close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002331
2332 /* Careful: Autocommands may have closed the tab page or made it the
2333 * current tab page. */
2334 for (ptp = first_tabpage; ptp != NULL && ptp != tp; ptp = ptp->tp_next)
2335 ;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002336 if (ptp == NULL || tp == curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002337 return;
2338
2339 /* Autocommands may have closed the window already. */
2340 for (wp = tp->tp_firstwin; wp != NULL && wp != win; wp = wp->w_next)
2341 ;
2342 if (wp == NULL)
2343 return;
2344
Bram Moolenaarf740b292006-02-16 22:11:02 +00002345 /* When closing the last window in a tab page remove the tab page. */
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002346 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaarf740b292006-02-16 22:11:02 +00002347 {
2348 if (tp == first_tabpage)
2349 first_tabpage = tp->tp_next;
2350 else
2351 {
2352 for (ptp = first_tabpage; ptp != NULL && ptp->tp_next != tp;
2353 ptp = ptp->tp_next)
2354 ;
2355 if (ptp == NULL)
2356 {
2357 EMSG2(_(e_intern2), "win_close_othertab()");
2358 return;
2359 }
2360 ptp->tp_next = tp->tp_next;
2361 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002362 free_tp = TRUE;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002363 }
Bram Moolenaar4d770fb2010-07-12 21:38:19 +02002364
2365 /* Free the memory used for the window. */
2366 win_free_mem(win, &dir, tp);
2367
2368 if (free_tp)
2369 free_tabpage(tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002370}
2371
2372/*
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002373 * Free the memory used for a window.
2374 * Returns a pointer to the window that got the freed up space.
2375 */
2376 static win_T *
Bram Moolenaarf740b292006-02-16 22:11:02 +00002377win_free_mem(win, dirp, tp)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002378 win_T *win;
2379 int *dirp; /* set to 'v' or 'h' for direction if 'ea' */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002380 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002381{
2382 frame_T *frp;
2383 win_T *wp;
2384
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002385 /* Remove the window and its frame from the tree of frames. */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002386 frp = win->w_frame;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002387 wp = winframe_remove(win, dirp, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002388 vim_free(frp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00002389 win_free(win, tp);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002390
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002391 /* When deleting the current window of another tab page select a new
2392 * current window. */
2393 if (tp != NULL && win == tp->tp_curwin)
2394 tp->tp_curwin = wp;
2395
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002396 return wp;
2397}
2398
2399#if defined(EXITFREE) || defined(PROTO)
2400 void
2401win_free_all()
2402{
2403 int dummy;
2404
Bram Moolenaarf740b292006-02-16 22:11:02 +00002405# ifdef FEAT_WINDOWS
2406 while (first_tabpage->tp_next != NULL)
2407 tabpage_close(TRUE);
2408# endif
2409
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002410# ifdef FEAT_AUTOCMD
2411 if (aucmd_win != NULL)
2412 {
2413 (void)win_free_mem(aucmd_win, &dummy, NULL);
2414 aucmd_win = NULL;
2415 }
2416# endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00002417
2418 while (firstwin != NULL)
2419 (void)win_free_mem(firstwin, &dummy, NULL);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002420}
2421#endif
2422
2423/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 * Remove a window and its frame from the tree of frames.
2425 * Returns a pointer to the window that got the freed up space.
2426 */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00002427 win_T *
Bram Moolenaarf740b292006-02-16 22:11:02 +00002428winframe_remove(win, dirp, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 win_T *win;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00002430 int *dirp UNUSED; /* set to 'v' or 'h' for direction if 'ea' */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002431 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432{
2433 frame_T *frp, *frp2, *frp3;
2434 frame_T *frp_close = win->w_frame;
2435 win_T *wp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436
2437 /*
Bram Moolenaarf740b292006-02-16 22:11:02 +00002438 * If there is only one window there is nothing to remove.
2439 */
2440 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
2441 return NULL;
2442
2443 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 * Remove the window from its frame.
2445 */
Bram Moolenaarf740b292006-02-16 22:11:02 +00002446 frp2 = win_altframe(win, tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 wp = frame2win(frp2);
2448
2449 /* Remove this frame from the list of frames. */
2450 frame_remove(frp_close);
2451
2452#ifdef FEAT_VERTSPLIT
2453 if (frp_close->fr_parent->fr_layout == FR_COL)
2454 {
2455#endif
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002456 /* When 'winfixheight' is set, try to find another frame in the column
2457 * (as close to the closed frame as possible) to distribute the height
2458 * to. */
2459 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfh)
2460 {
2461 frp = frp_close->fr_prev;
2462 frp3 = frp_close->fr_next;
2463 while (frp != NULL || frp3 != NULL)
2464 {
2465 if (frp != NULL)
2466 {
2467 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfh)
2468 {
2469 frp2 = frp;
2470 wp = frp->fr_win;
2471 break;
2472 }
2473 frp = frp->fr_prev;
2474 }
2475 if (frp3 != NULL)
2476 {
2477 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfh)
2478 {
2479 frp2 = frp3;
2480 wp = frp3->fr_win;
2481 break;
2482 }
2483 frp3 = frp3->fr_next;
2484 }
2485 }
2486 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
2488 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489#ifdef FEAT_VERTSPLIT
2490 *dirp = 'v';
2491 }
2492 else
2493 {
Bram Moolenaar48cc5fe2007-08-11 11:39:45 +00002494 /* When 'winfixwidth' is set, try to find another frame in the column
2495 * (as close to the closed frame as possible) to distribute the width
2496 * to. */
2497 if (frp2->fr_win != NULL && frp2->fr_win->w_p_wfw)
2498 {
2499 frp = frp_close->fr_prev;
2500 frp3 = frp_close->fr_next;
2501 while (frp != NULL || frp3 != NULL)
2502 {
2503 if (frp != NULL)
2504 {
2505 if (frp->fr_win != NULL && !frp->fr_win->w_p_wfw)
2506 {
2507 frp2 = frp;
2508 wp = frp->fr_win;
2509 break;
2510 }
2511 frp = frp->fr_prev;
2512 }
2513 if (frp3 != NULL)
2514 {
2515 if (frp3->fr_win != NULL && !frp3->fr_win->w_p_wfw)
2516 {
2517 frp2 = frp3;
2518 wp = frp3->fr_win;
2519 break;
2520 }
2521 frp3 = frp3->fr_next;
2522 }
2523 }
2524 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 frame_new_width(frp2, frp2->fr_width + frp_close->fr_width,
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002526 frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 *dirp = 'h';
2528 }
2529#endif
2530
2531 /* If rows/columns go to a window below/right its positions need to be
2532 * updated. Can only be done after the sizes have been updated. */
2533 if (frp2 == frp_close->fr_next)
2534 {
2535 int row = win->w_winrow;
2536 int col = W_WINCOL(win);
2537
2538 frame_comp_pos(frp2, &row, &col);
2539 }
2540
2541 if (frp2->fr_next == NULL && frp2->fr_prev == NULL)
2542 {
2543 /* There is no other frame in this list, move its info to the parent
2544 * and remove it. */
2545 frp2->fr_parent->fr_layout = frp2->fr_layout;
2546 frp2->fr_parent->fr_child = frp2->fr_child;
2547 for (frp = frp2->fr_child; frp != NULL; frp = frp->fr_next)
2548 frp->fr_parent = frp2->fr_parent;
2549 frp2->fr_parent->fr_win = frp2->fr_win;
2550 if (frp2->fr_win != NULL)
2551 frp2->fr_win->w_frame = frp2->fr_parent;
2552 frp = frp2->fr_parent;
2553 vim_free(frp2);
2554
2555 frp2 = frp->fr_parent;
2556 if (frp2 != NULL && frp2->fr_layout == frp->fr_layout)
2557 {
2558 /* The frame above the parent has the same layout, have to merge
2559 * the frames into this list. */
2560 if (frp2->fr_child == frp)
2561 frp2->fr_child = frp->fr_child;
2562 frp->fr_child->fr_prev = frp->fr_prev;
2563 if (frp->fr_prev != NULL)
2564 frp->fr_prev->fr_next = frp->fr_child;
2565 for (frp3 = frp->fr_child; ; frp3 = frp3->fr_next)
2566 {
2567 frp3->fr_parent = frp2;
2568 if (frp3->fr_next == NULL)
2569 {
2570 frp3->fr_next = frp->fr_next;
2571 if (frp->fr_next != NULL)
2572 frp->fr_next->fr_prev = frp3;
2573 break;
2574 }
2575 }
2576 vim_free(frp);
2577 }
2578 }
2579
2580 return wp;
2581}
2582
2583/*
2584 * Find out which frame is going to get the freed up space when "win" is
2585 * closed.
2586 * if 'splitbelow'/'splitleft' the space goes to the window above/left.
2587 * if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right.
2588 * This makes opening a window and closing it immediately keep the same window
2589 * layout.
2590 */
2591 static frame_T *
Bram Moolenaarf740b292006-02-16 22:11:02 +00002592win_altframe(win, tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00002594 tabpage_T *tp; /* tab page "win" is in, NULL for current */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595{
2596 frame_T *frp;
2597 int b;
2598
Bram Moolenaarf740b292006-02-16 22:11:02 +00002599 if (tp == NULL ? firstwin == lastwin : tp->tp_firstwin == tp->tp_lastwin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002600 /* Last window in this tab page, will go to next tab page. */
2601 return alt_tabpage()->tp_curwin->w_frame;
2602
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 frp = win->w_frame;
2604#ifdef FEAT_VERTSPLIT
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002605 if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 b = p_spr;
2607 else
2608#endif
2609 b = p_sb;
2610 if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL)
2611 return frp->fr_next;
2612 return frp->fr_prev;
2613}
2614
2615/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002616 * Return the tabpage that will be used if the current one is closed.
2617 */
2618 static tabpage_T *
2619alt_tabpage()
2620{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002621 tabpage_T *tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002622
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002623 /* Use the next tab page if possible. */
2624 if (curtab->tp_next != NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002625 return curtab->tp_next;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002626
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002627 /* Find the last but one tab page. */
2628 for (tp = first_tabpage; tp->tp_next != curtab; tp = tp->tp_next)
2629 ;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002630 return tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00002631}
2632
2633/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 * Find the left-upper window in frame "frp".
2635 */
2636 static win_T *
2637frame2win(frp)
2638 frame_T *frp;
2639{
2640 while (frp->fr_win == NULL)
2641 frp = frp->fr_child;
2642 return frp->fr_win;
2643}
2644
2645/*
2646 * Return TRUE if frame "frp" contains window "wp".
2647 */
2648 static int
2649frame_has_win(frp, wp)
2650 frame_T *frp;
2651 win_T *wp;
2652{
2653 frame_T *p;
2654
2655 if (frp->fr_layout == FR_LEAF)
2656 return frp->fr_win == wp;
2657
2658 for (p = frp->fr_child; p != NULL; p = p->fr_next)
2659 if (frame_has_win(p, wp))
2660 return TRUE;
2661 return FALSE;
2662}
2663
2664/*
2665 * Set a new height for a frame. Recursively sets the height for contained
2666 * frames and windows. Caller must take care of positions.
2667 */
2668 static void
2669frame_new_height(topfrp, height, topfirst, wfh)
2670 frame_T *topfrp;
2671 int height;
2672 int topfirst; /* resize topmost contained frame first */
2673 int wfh; /* obey 'winfixheight' when there is a choice;
2674 may cause the height not to be set */
2675{
2676 frame_T *frp;
2677 int extra_lines;
2678 int h;
2679
2680 if (topfrp->fr_win != NULL)
2681 {
2682 /* Simple case: just one window. */
2683 win_new_height(topfrp->fr_win,
2684 height - topfrp->fr_win->w_status_height);
2685 }
2686#ifdef FEAT_VERTSPLIT
2687 else if (topfrp->fr_layout == FR_ROW)
2688 {
2689 do
2690 {
2691 /* All frames in this row get the same new height. */
2692 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2693 {
2694 frame_new_height(frp, height, topfirst, wfh);
2695 if (frp->fr_height > height)
2696 {
2697 /* Could not fit the windows, make the whole row higher. */
2698 height = frp->fr_height;
2699 break;
2700 }
2701 }
2702 }
2703 while (frp != NULL);
2704 }
2705#endif
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002706 else /* fr_layout == FR_COL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 {
2708 /* Complicated case: Resize a column of frames. Resize the bottom
2709 * frame first, frames above that when needed. */
2710
2711 frp = topfrp->fr_child;
2712 if (wfh)
2713 /* Advance past frames with one window with 'wfh' set. */
2714 while (frame_fixed_height(frp))
2715 {
2716 frp = frp->fr_next;
2717 if (frp == NULL)
2718 return; /* no frame without 'wfh', give up */
2719 }
2720 if (!topfirst)
2721 {
2722 /* Find the bottom frame of this column */
2723 while (frp->fr_next != NULL)
2724 frp = frp->fr_next;
2725 if (wfh)
2726 /* Advance back for frames with one window with 'wfh' set. */
2727 while (frame_fixed_height(frp))
2728 frp = frp->fr_prev;
2729 }
2730
2731 extra_lines = height - topfrp->fr_height;
2732 if (extra_lines < 0)
2733 {
2734 /* reduce height of contained frames, bottom or top frame first */
2735 while (frp != NULL)
2736 {
2737 h = frame_minheight(frp, NULL);
2738 if (frp->fr_height + extra_lines < h)
2739 {
2740 extra_lines += frp->fr_height - h;
2741 frame_new_height(frp, h, topfirst, wfh);
2742 }
2743 else
2744 {
2745 frame_new_height(frp, frp->fr_height + extra_lines,
2746 topfirst, wfh);
2747 break;
2748 }
2749 if (topfirst)
2750 {
2751 do
2752 frp = frp->fr_next;
2753 while (wfh && frp != NULL && frame_fixed_height(frp));
2754 }
2755 else
2756 {
2757 do
2758 frp = frp->fr_prev;
2759 while (wfh && frp != NULL && frame_fixed_height(frp));
2760 }
2761 /* Increase "height" if we could not reduce enough frames. */
2762 if (frp == NULL)
2763 height -= extra_lines;
2764 }
2765 }
2766 else if (extra_lines > 0)
2767 {
2768 /* increase height of bottom or top frame */
2769 frame_new_height(frp, frp->fr_height + extra_lines, topfirst, wfh);
2770 }
2771 }
2772 topfrp->fr_height = height;
2773}
2774
2775/*
2776 * Return TRUE if height of frame "frp" should not be changed because of
2777 * the 'winfixheight' option.
2778 */
2779 static int
2780frame_fixed_height(frp)
2781 frame_T *frp;
2782{
2783 /* frame with one window: fixed height if 'winfixheight' set. */
2784 if (frp->fr_win != NULL)
2785 return frp->fr_win->w_p_wfh;
2786
2787 if (frp->fr_layout == FR_ROW)
2788 {
2789 /* The frame is fixed height if one of the frames in the row is fixed
2790 * height. */
2791 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2792 if (frame_fixed_height(frp))
2793 return TRUE;
2794 return FALSE;
2795 }
2796
2797 /* frp->fr_layout == FR_COL: The frame is fixed height if all of the
2798 * frames in the row are fixed height. */
2799 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2800 if (!frame_fixed_height(frp))
2801 return FALSE;
2802 return TRUE;
2803}
2804
2805#ifdef FEAT_VERTSPLIT
2806/*
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002807 * Return TRUE if width of frame "frp" should not be changed because of
2808 * the 'winfixwidth' option.
2809 */
2810 static int
2811frame_fixed_width(frp)
2812 frame_T *frp;
2813{
2814 /* frame with one window: fixed width if 'winfixwidth' set. */
2815 if (frp->fr_win != NULL)
2816 return frp->fr_win->w_p_wfw;
2817
2818 if (frp->fr_layout == FR_COL)
2819 {
2820 /* The frame is fixed width if one of the frames in the row is fixed
2821 * width. */
2822 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2823 if (frame_fixed_width(frp))
2824 return TRUE;
2825 return FALSE;
2826 }
2827
2828 /* frp->fr_layout == FR_ROW: The frame is fixed width if all of the
2829 * frames in the row are fixed width. */
2830 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2831 if (!frame_fixed_width(frp))
2832 return FALSE;
2833 return TRUE;
2834}
2835
2836/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 * Add a status line to windows at the bottom of "frp".
2838 * Note: Does not check if there is room!
2839 */
2840 static void
2841frame_add_statusline(frp)
2842 frame_T *frp;
2843{
2844 win_T *wp;
2845
2846 if (frp->fr_layout == FR_LEAF)
2847 {
2848 wp = frp->fr_win;
2849 if (wp->w_status_height == 0)
2850 {
2851 if (wp->w_height > 0) /* don't make it negative */
2852 --wp->w_height;
2853 wp->w_status_height = STATUS_HEIGHT;
2854 }
2855 }
2856 else if (frp->fr_layout == FR_ROW)
2857 {
2858 /* Handle all the frames in the row. */
2859 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
2860 frame_add_statusline(frp);
2861 }
2862 else /* frp->fr_layout == FR_COL */
2863 {
2864 /* Only need to handle the last frame in the column. */
2865 for (frp = frp->fr_child; frp->fr_next != NULL; frp = frp->fr_next)
2866 ;
2867 frame_add_statusline(frp);
2868 }
2869}
2870
2871/*
2872 * Set width of a frame. Handles recursively going through contained frames.
2873 * May remove separator line for windows at the right side (for win_close()).
2874 */
2875 static void
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002876frame_new_width(topfrp, width, leftfirst, wfw)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 frame_T *topfrp;
2878 int width;
2879 int leftfirst; /* resize leftmost contained frame first */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002880 int wfw; /* obey 'winfixwidth' when there is a choice;
2881 may cause the width not to be set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882{
2883 frame_T *frp;
2884 int extra_cols;
2885 int w;
2886 win_T *wp;
2887
2888 if (topfrp->fr_layout == FR_LEAF)
2889 {
2890 /* Simple case: just one window. */
2891 wp = topfrp->fr_win;
2892 /* Find out if there are any windows right of this one. */
2893 for (frp = topfrp; frp->fr_parent != NULL; frp = frp->fr_parent)
2894 if (frp->fr_parent->fr_layout == FR_ROW && frp->fr_next != NULL)
2895 break;
2896 if (frp->fr_parent == NULL)
2897 wp->w_vsep_width = 0;
2898 win_new_width(wp, width - wp->w_vsep_width);
2899 }
2900 else if (topfrp->fr_layout == FR_COL)
2901 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002902 do
2903 {
2904 /* All frames in this column get the same new width. */
2905 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
2906 {
2907 frame_new_width(frp, width, leftfirst, wfw);
2908 if (frp->fr_width > width)
2909 {
2910 /* Could not fit the windows, make whole column wider. */
2911 width = frp->fr_width;
2912 break;
2913 }
2914 }
2915 } while (frp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916 }
2917 else /* fr_layout == FR_ROW */
2918 {
2919 /* Complicated case: Resize a row of frames. Resize the rightmost
2920 * frame first, frames left of it when needed. */
2921
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 frp = topfrp->fr_child;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002923 if (wfw)
2924 /* Advance past frames with one window with 'wfw' set. */
2925 while (frame_fixed_width(frp))
2926 {
2927 frp = frp->fr_next;
2928 if (frp == NULL)
2929 return; /* no frame without 'wfw', give up */
2930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 if (!leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002932 {
2933 /* Find the rightmost frame of this row */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 while (frp->fr_next != NULL)
2935 frp = frp->fr_next;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002936 if (wfw)
2937 /* Advance back for frames with one window with 'wfw' set. */
2938 while (frame_fixed_width(frp))
2939 frp = frp->fr_prev;
2940 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941
2942 extra_cols = width - topfrp->fr_width;
2943 if (extra_cols < 0)
2944 {
2945 /* reduce frame width, rightmost frame first */
2946 while (frp != NULL)
2947 {
2948 w = frame_minwidth(frp, NULL);
2949 if (frp->fr_width + extra_cols < w)
2950 {
2951 extra_cols += frp->fr_width - w;
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002952 frame_new_width(frp, w, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 }
2954 else
2955 {
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002956 frame_new_width(frp, frp->fr_width + extra_cols,
2957 leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 break;
2959 }
2960 if (leftfirst)
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002961 {
2962 do
2963 frp = frp->fr_next;
2964 while (wfw && frp != NULL && frame_fixed_width(frp));
2965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 else
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002967 {
2968 do
2969 frp = frp->fr_prev;
2970 while (wfw && frp != NULL && frame_fixed_width(frp));
2971 }
2972 /* Increase "width" if we could not reduce enough frames. */
2973 if (frp == NULL)
2974 width -= extra_cols;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 }
2976 }
2977 else if (extra_cols > 0)
2978 {
2979 /* increase width of rightmost frame */
Bram Moolenaarbe4d5062006-03-18 21:30:13 +00002980 frame_new_width(frp, frp->fr_width + extra_cols, leftfirst, wfw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 }
2982 }
2983 topfrp->fr_width = width;
2984}
2985
2986/*
2987 * Add the vertical separator to windows at the right side of "frp".
2988 * Note: Does not check if there is room!
2989 */
2990 static void
2991frame_add_vsep(frp)
2992 frame_T *frp;
2993{
2994 win_T *wp;
2995
2996 if (frp->fr_layout == FR_LEAF)
2997 {
2998 wp = frp->fr_win;
2999 if (wp->w_vsep_width == 0)
3000 {
3001 if (wp->w_width > 0) /* don't make it negative */
3002 --wp->w_width;
3003 wp->w_vsep_width = 1;
3004 }
3005 }
3006 else if (frp->fr_layout == FR_COL)
3007 {
3008 /* Handle all the frames in the column. */
3009 for (frp = frp->fr_child; frp != NULL; frp = frp->fr_next)
3010 frame_add_vsep(frp);
3011 }
3012 else /* frp->fr_layout == FR_ROW */
3013 {
3014 /* Only need to handle the last frame in the row. */
3015 frp = frp->fr_child;
3016 while (frp->fr_next != NULL)
3017 frp = frp->fr_next;
3018 frame_add_vsep(frp);
3019 }
3020}
3021
3022/*
3023 * Set frame width from the window it contains.
3024 */
3025 static void
3026frame_fix_width(wp)
3027 win_T *wp;
3028{
3029 wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
3030}
3031#endif
3032
3033/*
3034 * Set frame height from the window it contains.
3035 */
3036 static void
3037frame_fix_height(wp)
3038 win_T *wp;
3039{
3040 wp->w_frame->fr_height = wp->w_height + wp->w_status_height;
3041}
3042
3043/*
3044 * Compute the minimal height for frame "topfrp".
3045 * Uses the 'winminheight' option.
3046 * When "next_curwin" isn't NULL, use p_wh for this window.
3047 * When "next_curwin" is NOWIN, don't use at least one line for the current
3048 * window.
3049 */
3050 static int
3051frame_minheight(topfrp, next_curwin)
3052 frame_T *topfrp;
3053 win_T *next_curwin;
3054{
3055 frame_T *frp;
3056 int m;
3057#ifdef FEAT_VERTSPLIT
3058 int n;
3059#endif
3060
3061 if (topfrp->fr_win != NULL)
3062 {
3063 if (topfrp->fr_win == next_curwin)
3064 m = p_wh + topfrp->fr_win->w_status_height;
3065 else
3066 {
3067 /* window: minimal height of the window plus status line */
3068 m = p_wmh + topfrp->fr_win->w_status_height;
3069 /* Current window is minimal one line high */
3070 if (p_wmh == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3071 ++m;
3072 }
3073 }
3074#ifdef FEAT_VERTSPLIT
3075 else if (topfrp->fr_layout == FR_ROW)
3076 {
3077 /* get the minimal height from each frame in this row */
3078 m = 0;
3079 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3080 {
3081 n = frame_minheight(frp, next_curwin);
3082 if (n > m)
3083 m = n;
3084 }
3085 }
3086#endif
3087 else
3088 {
3089 /* Add up the minimal heights for all frames in this column. */
3090 m = 0;
3091 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3092 m += frame_minheight(frp, next_curwin);
3093 }
3094
3095 return m;
3096}
3097
3098#ifdef FEAT_VERTSPLIT
3099/*
3100 * Compute the minimal width for frame "topfrp".
3101 * When "next_curwin" isn't NULL, use p_wiw for this window.
3102 * When "next_curwin" is NOWIN, don't use at least one column for the current
3103 * window.
3104 */
3105 static int
3106frame_minwidth(topfrp, next_curwin)
3107 frame_T *topfrp;
3108 win_T *next_curwin; /* use p_wh and p_wiw for next_curwin */
3109{
3110 frame_T *frp;
3111 int m, n;
3112
3113 if (topfrp->fr_win != NULL)
3114 {
3115 if (topfrp->fr_win == next_curwin)
3116 m = p_wiw + topfrp->fr_win->w_vsep_width;
3117 else
3118 {
3119 /* window: minimal width of the window plus separator column */
3120 m = p_wmw + topfrp->fr_win->w_vsep_width;
3121 /* Current window is minimal one column wide */
3122 if (p_wmw == 0 && topfrp->fr_win == curwin && next_curwin == NULL)
3123 ++m;
3124 }
3125 }
3126 else if (topfrp->fr_layout == FR_COL)
3127 {
3128 /* get the minimal width from each frame in this column */
3129 m = 0;
3130 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3131 {
3132 n = frame_minwidth(frp, next_curwin);
3133 if (n > m)
3134 m = n;
3135 }
3136 }
3137 else
3138 {
3139 /* Add up the minimal widths for all frames in this row. */
3140 m = 0;
3141 for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
3142 m += frame_minwidth(frp, next_curwin);
3143 }
3144
3145 return m;
3146}
3147#endif
3148
3149
3150/*
3151 * Try to close all windows except current one.
3152 * Buffers in the other windows become hidden if 'hidden' is set, or '!' is
3153 * used and the buffer was modified.
3154 *
3155 * Used by ":bdel" and ":only".
3156 */
3157 void
3158close_others(message, forceit)
3159 int message;
3160 int forceit; /* always hide all other windows */
3161{
3162 win_T *wp;
3163 win_T *nextwp;
3164 int r;
3165
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003166 if (one_window())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 {
3168 if (message
3169#ifdef FEAT_AUTOCMD
3170 && !autocmd_busy
3171#endif
3172 )
Bram Moolenaar4c3f5362006-04-11 21:38:50 +00003173 MSG(_(m_onlyone));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 return;
3175 }
3176
3177 /* Be very careful here: autocommands may change the window layout. */
3178 for (wp = firstwin; win_valid(wp); wp = nextwp)
3179 {
3180 nextwp = wp->w_next;
3181 if (wp != curwin) /* don't close current window */
3182 {
3183
3184 /* Check if it's allowed to abandon this window */
3185 r = can_abandon(wp->w_buffer, forceit);
3186#ifdef FEAT_AUTOCMD
3187 if (!win_valid(wp)) /* autocommands messed wp up */
3188 {
3189 nextwp = firstwin;
3190 continue;
3191 }
3192#endif
3193 if (!r)
3194 {
3195#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3196 if (message && (p_confirm || cmdmod.confirm) && p_write)
3197 {
3198 dialog_changed(wp->w_buffer, FALSE);
3199# ifdef FEAT_AUTOCMD
3200 if (!win_valid(wp)) /* autocommands messed wp up */
3201 {
3202 nextwp = firstwin;
3203 continue;
3204 }
3205# endif
3206 }
3207 if (bufIsChanged(wp->w_buffer))
3208#endif
3209 continue;
3210 }
3211 win_close(wp, !P_HID(wp->w_buffer) && !bufIsChanged(wp->w_buffer));
3212 }
3213 }
3214
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003215 if (message && lastwin != firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 EMSG(_("E445: Other window contains changes"));
3217}
3218
3219#endif /* FEAT_WINDOWS */
3220
3221/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003222 * Init the current window "curwin".
3223 * Called when a new file is being edited.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 */
3225 void
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003226curwin_init()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227{
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003228 win_init_empty(curwin);
3229}
3230
3231 void
3232win_init_empty(wp)
3233 win_T *wp;
3234{
3235 redraw_win_later(wp, NOT_VALID);
3236 wp->w_lines_valid = 0;
3237 wp->w_cursor.lnum = 1;
3238 wp->w_curswant = wp->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239#ifdef FEAT_VIRTUALEDIT
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003240 wp->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003242 wp->w_pcmark.lnum = 1; /* pcmark not cleared but set to line 1 */
3243 wp->w_pcmark.col = 0;
3244 wp->w_prev_pcmark.lnum = 0;
3245 wp->w_prev_pcmark.col = 0;
3246 wp->w_topline = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247#ifdef FEAT_DIFF
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003248 wp->w_topfill = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003250 wp->w_botline = 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251#ifdef FEAT_FKMAP
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003252 if (wp->w_p_rl)
3253 wp->w_farsi = W_CONV + W_R_L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254 else
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00003255 wp->w_farsi = W_CONV;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256#endif
Bram Moolenaara971b822011-09-14 14:43:25 +02003257#ifdef FEAT_SYN_HL
3258 wp->w_s = &wp->w_buffer->b_s;
3259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260}
3261
3262/*
3263 * Allocate the first window and put an empty buffer in it.
3264 * Called from main().
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003265 * Return FAIL when something goes wrong (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003267 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268win_alloc_first()
3269{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003270 if (win_alloc_firstwin(NULL) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003271 return FAIL;
3272
3273#ifdef FEAT_WINDOWS
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003274 first_tabpage = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003275 if (first_tabpage == NULL)
3276 return FAIL;
3277 first_tabpage->tp_topframe = topframe;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003278 curtab = first_tabpage;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003279#endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003280
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003281 return OK;
3282}
3283
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003284#if defined(FEAT_AUTOCMD) || defined(PROTO)
3285/*
3286 * Init "aucmd_win". This can only be done after the first
3287 * window is fully initialized, thus it can't be in win_alloc_first().
3288 */
3289 void
3290win_alloc_aucmd_win()
3291{
3292 aucmd_win = win_alloc(NULL, TRUE);
3293 if (aucmd_win != NULL)
3294 {
3295 win_init_some(aucmd_win, curwin);
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003296 RESET_BINDING(aucmd_win);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003297 new_frame(aucmd_win);
3298 }
3299}
3300#endif
3301
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003302/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003303 * Allocate the first window or the first window in a new tab page.
3304 * When "oldwin" is NULL create an empty buffer for it.
3305 * When "oldwin" is not NULL copy info from it to the new window (only with
3306 * FEAT_WINDOWS).
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003307 * Return FAIL when something goes wrong (out of memory).
3308 */
3309 static int
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003310win_alloc_firstwin(oldwin)
3311 win_T *oldwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003312{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003313 curwin = win_alloc(NULL, FALSE);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003314 if (oldwin == NULL)
3315 {
3316 /* Very first window, need to create an empty buffer for it and
3317 * initialize from scratch. */
3318 curbuf = buflist_new(NULL, NULL, 1L, BLN_LISTED);
3319 if (curwin == NULL || curbuf == NULL)
3320 return FAIL;
3321 curwin->w_buffer = curbuf;
Bram Moolenaar860cae12010-06-05 23:22:07 +02003322#ifdef FEAT_SYN_HL
3323 curwin->w_s = &(curbuf->b_s);
3324#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003325 curbuf->b_nwindows = 1; /* there is one window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326#ifdef FEAT_WINDOWS
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003327 curwin->w_alist = &global_alist;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328#endif
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003329 curwin_init(); /* init current window */
3330 }
3331#ifdef FEAT_WINDOWS
3332 else
3333 {
3334 /* First window in new tab page, initialize it from "oldwin". */
Bram Moolenaar884ae642009-02-22 01:37:59 +00003335 win_init(curwin, oldwin, 0);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003336
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003337 /* We don't want cursor- and scroll-binding in the first window. */
3338 RESET_BINDING(curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003339 }
3340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003342 new_frame(curwin);
3343 if (curwin->w_frame == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003344 return FAIL;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003345 topframe = curwin->w_frame;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346#ifdef FEAT_VERTSPLIT
3347 topframe->fr_width = Columns;
3348#endif
3349 topframe->fr_height = Rows - p_ch;
3350 topframe->fr_win = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003351
3352 return OK;
3353}
3354
3355/*
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003356 * Create a frame for window "wp".
3357 */
3358 static void
3359new_frame(win_T *wp)
3360{
3361 frame_T *frp = (frame_T *)alloc_clear((unsigned)sizeof(frame_T));
3362
3363 wp->w_frame = frp;
3364 if (frp != NULL)
3365 {
3366 frp->fr_layout = FR_LEAF;
3367 frp->fr_win = wp;
3368 }
3369}
3370
3371/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003372 * Initialize the window and frame size to the maximum.
3373 */
3374 void
3375win_init_size()
3376{
3377 firstwin->w_height = ROWS_AVAIL;
3378 topframe->fr_height = ROWS_AVAIL;
3379#ifdef FEAT_VERTSPLIT
3380 firstwin->w_width = Columns;
3381 topframe->fr_width = Columns;
3382#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383}
3384
3385#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003386
3387/*
3388 * Allocate a new tabpage_T and init the values.
3389 * Returns NULL when out of memory.
3390 */
3391 static tabpage_T *
3392alloc_tabpage()
3393{
3394 tabpage_T *tp;
3395
3396 tp = (tabpage_T *)alloc_clear((unsigned)sizeof(tabpage_T));
3397 if (tp != NULL)
3398 {
Bram Moolenaar371d5402006-03-20 21:47:49 +00003399# ifdef FEAT_GUI
3400 int i;
3401
3402 for (i = 0; i < 3; i++)
3403 tp->tp_prev_which_scrollbars[i] = -1;
3404# endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003405# ifdef FEAT_DIFF
3406 tp->tp_diff_invalid = TRUE;
3407# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003408#ifdef FEAT_EVAL
3409 /* init t: variables */
3410 init_var_dict(&tp->tp_vars, &tp->tp_winvar);
3411#endif
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003412 tp->tp_ch_used = p_ch;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003413 }
3414 return tp;
3415}
3416
Bram Moolenaard8fc5c02006-04-29 21:55:22 +00003417 void
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003418free_tabpage(tp)
3419 tabpage_T *tp;
3420{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003421 int idx;
3422
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003423# ifdef FEAT_DIFF
3424 diff_clear(tp);
3425# endif
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003426 for (idx = 0; idx < SNAP_COUNT; ++idx)
3427 clear_snapshot(tp, idx);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003428#ifdef FEAT_EVAL
3429 vars_clear(&tp->tp_vars.dv_hashtab); /* free all t: variables */
3430#endif
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003431 vim_free(tp);
3432}
3433
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003434/*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003435 * Create a new Tab page with one window.
3436 * It will edit the current buffer, like after ":split".
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003437 * When "after" is 0 put it just after the current Tab page.
3438 * Otherwise put it just before tab page "after".
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003439 * Return FAIL or OK.
3440 */
3441 int
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003442win_new_tabpage(after)
3443 int after;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003444{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003445 tabpage_T *tp = curtab;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003446 tabpage_T *newtp;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003447 int n;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003448
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003449 newtp = alloc_tabpage();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003450 if (newtp == NULL)
3451 return FAIL;
3452
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003453 /* Remember the current windows in this Tab page. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003454 if (leave_tabpage(curbuf) == FAIL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003455 {
3456 vim_free(newtp);
3457 return FAIL;
3458 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003459 curtab = newtp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003460
3461 /* Create a new empty window. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003462 if (win_alloc_firstwin(tp->tp_curwin) == OK)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003463 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003464 /* Make the new Tab page the new topframe. */
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003465 if (after == 1)
3466 {
3467 /* New tab page becomes the first one. */
3468 newtp->tp_next = first_tabpage;
3469 first_tabpage = newtp;
3470 }
3471 else
3472 {
3473 if (after > 0)
3474 {
3475 /* Put new tab page before tab page "after". */
3476 n = 2;
3477 for (tp = first_tabpage; tp->tp_next != NULL
3478 && n < after; tp = tp->tp_next)
3479 ++n;
3480 }
3481 newtp->tp_next = tp->tp_next;
3482 tp->tp_next = newtp;
3483 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003484 win_init_size();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003485 firstwin->w_winrow = tabline_height();
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003486 win_comp_scroll(curwin);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003487
3488 newtp->tp_topframe = topframe;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003489 last_status(FALSE);
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003490
3491#if defined(FEAT_GUI)
3492 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3493 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003494 gui_may_update_scrollbars();
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00003495#endif
3496
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003497 redraw_all_later(CLEAR);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003498#ifdef FEAT_AUTOCMD
3499 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3500 apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
3501#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003502 return OK;
3503 }
3504
3505 /* Failed, get back the previous Tab page */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003506 enter_tabpage(curtab, curbuf);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003507 return FAIL;
3508}
3509
3510/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003511 * Open a new tab page if ":tab cmd" was used. It will edit the same buffer,
3512 * like with ":split".
3513 * Returns OK if a new tab page was created, FAIL otherwise.
3514 */
3515 int
3516may_open_tabpage()
3517{
Bram Moolenaard326ce82007-03-11 14:48:29 +00003518 int n = (cmdmod.tab == 0) ? postponed_split_tab : cmdmod.tab;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003519
Bram Moolenaard326ce82007-03-11 14:48:29 +00003520 if (n != 0)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003521 {
3522 cmdmod.tab = 0; /* reset it to avoid doing it twice */
Bram Moolenaard326ce82007-03-11 14:48:29 +00003523 postponed_split_tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003524 return win_new_tabpage(n);
3525 }
3526 return FAIL;
3527}
3528
3529/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003530 * Create up to "maxcount" tabpages with empty windows.
3531 * Returns the number of resulting tab pages.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003532 */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003533 int
3534make_tabpages(maxcount)
3535 int maxcount;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003536{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003537 int count = maxcount;
3538 int todo;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003539
Bram Moolenaare1438bb2006-03-01 22:01:55 +00003540 /* Limit to 'tabpagemax' tabs. */
3541 if (count > p_tpm)
3542 count = p_tpm;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003543
3544#ifdef FEAT_AUTOCMD
3545 /*
3546 * Don't execute autocommands while creating the tab pages. Must do that
3547 * when putting the buffers in the windows.
3548 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003549 block_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003550#endif
3551
3552 for (todo = count - 1; todo > 0; --todo)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00003553 if (win_new_tabpage(0) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003554 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003555
3556#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00003557 unblock_autocmds();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003558#endif
3559
3560 /* return actual number of tab pages */
3561 return (count - todo);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003562}
3563
3564/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00003565 * Return TRUE when "tpc" points to a valid tab page.
3566 */
3567 int
3568valid_tabpage(tpc)
3569 tabpage_T *tpc;
3570{
3571 tabpage_T *tp;
3572
3573 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
3574 if (tp == tpc)
3575 return TRUE;
3576 return FALSE;
3577}
3578
3579/*
3580 * Find tab page "n" (first one is 1). Returns NULL when not found.
3581 */
3582 tabpage_T *
3583find_tabpage(n)
3584 int n;
3585{
3586 tabpage_T *tp;
3587 int i = 1;
3588
3589 for (tp = first_tabpage; tp != NULL && i != n; tp = tp->tp_next)
3590 ++i;
3591 return tp;
3592}
3593
3594/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003595 * Get index of tab page "tp". First one has index 1.
Bram Moolenaarba6c0522006-02-25 21:45:02 +00003596 * When not found returns number of tab pages plus one.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003597 */
3598 int
3599tabpage_index(ftp)
3600 tabpage_T *ftp;
3601{
3602 int i = 1;
3603 tabpage_T *tp;
3604
3605 for (tp = first_tabpage; tp != NULL && tp != ftp; tp = tp->tp_next)
3606 ++i;
3607 return i;
3608}
3609
3610/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003611 * Prepare for leaving the current tab page.
3612 * When autocomands change "curtab" we don't leave the tab page and return
3613 * FAIL.
3614 * Careful: When OK is returned need to get a new tab page very very soon!
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003615 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003616 static int
3617leave_tabpage(new_curbuf)
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00003618 buf_T *new_curbuf UNUSED; /* what is going to be the new curbuf,
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003619 NULL if unknown */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003620{
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003621 tabpage_T *tp = curtab;
3622
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003623#ifdef FEAT_VISUAL
3624 reset_VIsual_and_resel(); /* stop Visual mode */
3625#endif
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003626#ifdef FEAT_AUTOCMD
3627 if (new_curbuf != curbuf)
3628 {
3629 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3630 if (curtab != tp)
3631 return FAIL;
3632 }
3633 apply_autocmds(EVENT_WINLEAVE, NULL, NULL, FALSE, curbuf);
3634 if (curtab != tp)
3635 return FAIL;
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003636 apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003637 if (curtab != tp)
3638 return FAIL;
3639#endif
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003640#if defined(FEAT_GUI)
3641 /* Remove the scrollbars. They may be added back later. */
3642 if (gui.in_use)
3643 gui_remove_scrollbars();
3644#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003645 tp->tp_curwin = curwin;
Bram Moolenaarf740b292006-02-16 22:11:02 +00003646 tp->tp_prevwin = prevwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003647 tp->tp_firstwin = firstwin;
3648 tp->tp_lastwin = lastwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003649 tp->tp_old_Rows = Rows;
3650 tp->tp_old_Columns = Columns;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003651 firstwin = NULL;
3652 lastwin = NULL;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003653 return OK;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003654}
3655
3656/*
3657 * Start using tab page "tp".
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00003658 * Only to be used after leave_tabpage() or freeing the current tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003659 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003660 static void
3661enter_tabpage(tp, old_curbuf)
3662 tabpage_T *tp;
Bram Moolenaar4bdbbf72009-05-21 21:27:43 +00003663 buf_T *old_curbuf UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003664{
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003665 int old_off = tp->tp_firstwin->w_winrow;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003666 win_T *next_prevwin = tp->tp_prevwin;
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003667
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003668 curtab = tp;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003669 firstwin = tp->tp_firstwin;
3670 lastwin = tp->tp_lastwin;
3671 topframe = tp->tp_topframe;
Bram Moolenaar773560b2006-05-06 21:38:18 +00003672
3673 /* We would like doing the TabEnter event first, but we don't have a
3674 * valid current window yet, which may break some commands.
3675 * This triggers autocommands, thus may make "tp" invalid. */
3676 win_enter_ext(tp->tp_curwin, FALSE, TRUE);
3677 prevwin = next_prevwin;
3678
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003679 last_status(FALSE); /* status line may appear or disappear */
3680 (void)win_comp_pos(); /* recompute w_winrow for all windows */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00003681 must_redraw = CLEAR; /* need to redraw everything */
3682#ifdef FEAT_DIFF
3683 diff_need_scrollbind = TRUE;
3684#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003685
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003686 /* The tabpage line may have appeared or disappeared, may need to resize
3687 * the frames for that. When the Vim window was resized need to update
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003688 * frame sizes too. Use the stored value of p_ch, so that it can be
3689 * different for each tab page. */
3690 p_ch = curtab->tp_ch_used;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003691 if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow
3692#ifdef FEAT_GUI_TABLINE
3693 && !gui_use_tabline()
3694#endif
3695 ))
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003696 shell_new_rows();
3697#ifdef FEAT_VERTSPLIT
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00003698 if (curtab->tp_old_Columns != Columns && starting == 0)
Bram Moolenaar98ea5de2006-02-15 22:11:25 +00003699 shell_new_columns(); /* update window widths */
3700#endif
3701
3702#if defined(FEAT_GUI)
3703 /* When 'guioptions' includes 'L' or 'R' may have to remove or add
3704 * scrollbars. Have to update them anyway. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00003705 gui_may_update_scrollbars();
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003706#endif
3707
Bram Moolenaar5ad15df2012-03-16 19:07:58 +01003708#ifdef FEAT_AUTOCMD
3709 /* Apply autocommands after updating the display, when 'rows' and
3710 * 'columns' have been set correctly. */
3711 apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
3712 if (old_curbuf != curbuf)
3713 apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
3714#endif
3715
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00003716 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