comparison src/proto/window.pro @ 16778:eda4d65f232c v8.1.1391

patch 8.1.1391: no popup window support commit https://github.com/vim/vim/commit/4d784b21d14fc66e98a2b07f70343cdd4acd62aa Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 25 19:51:39 2019 +0200 patch 8.1.1391: no popup window support Problem: No popup window support. Solution: Add initial code for popup windows. Add the 'wincolor' option.
author Bram Moolenaar <Bram@vim.org>
date Sat, 25 May 2019 20:00:08 +0200
parents 3b2db762a509
children f8e28c6ae8ab
comparison
equal deleted inserted replaced
16777:20d51e99dd6a 16778:eda4d65f232c
17 win_T *winframe_remove(win_T *win, int *dirp, tabpage_T *tp); 17 win_T *winframe_remove(win_T *win, int *dirp, tabpage_T *tp);
18 void close_others(int message, int forceit); 18 void close_others(int message, int forceit);
19 void curwin_init(void); 19 void curwin_init(void);
20 void win_init_empty(win_T *wp); 20 void win_init_empty(win_T *wp);
21 int win_alloc_first(void); 21 int win_alloc_first(void);
22 void win_alloc_aucmd_win(void); 22 win_T *win_alloc_popup_win(void);
23 void win_init_popup_win(win_T *wp, buf_T *buf);
23 void win_init_size(void); 24 void win_init_size(void);
24 void free_tabpage(tabpage_T *tp); 25 void free_tabpage(tabpage_T *tp);
25 int win_new_tabpage(int after); 26 int win_new_tabpage(int after);
26 int may_open_tabpage(void); 27 int may_open_tabpage(void);
27 int make_tabpages(int maxcount); 28 int make_tabpages(int maxcount);
40 win_T *win_vert_neighbor(tabpage_T *tp, win_T *wp, int up, long count); 41 win_T *win_vert_neighbor(tabpage_T *tp, win_T *wp, int up, long count);
41 win_T *win_horz_neighbor(tabpage_T *tp, win_T *wp, int left, long count); 42 win_T *win_horz_neighbor(tabpage_T *tp, win_T *wp, int left, long count);
42 void win_enter(win_T *wp, int undo_sync); 43 void win_enter(win_T *wp, int undo_sync);
43 win_T *buf_jump_open_win(buf_T *buf); 44 win_T *buf_jump_open_win(buf_T *buf);
44 win_T *buf_jump_open_tab(buf_T *buf); 45 win_T *buf_jump_open_tab(buf_T *buf);
46 int win_unlisted(win_T *wp);
47 void win_free_popup(win_T *win);
45 void win_append(win_T *after, win_T *wp); 48 void win_append(win_T *after, win_T *wp);
46 void win_remove(win_T *wp, tabpage_T *tp); 49 void win_remove(win_T *wp, tabpage_T *tp);
47 int win_alloc_lines(win_T *wp); 50 int win_alloc_lines(win_T *wp);
48 void win_free_lsize(win_T *wp); 51 void win_free_lsize(win_T *wp);
49 void shell_new_rows(void); 52 void shell_new_rows(void);