comparison src/structs.h @ 16884:59e4148c0c73 v8.1.1443

patch 8.1.1443: popup window padding and border not implemented yet commit https://github.com/vim/vim/commit/2fd8e35e16e502c98045c4b4e09a91eca840fb97 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 1 20:16:48 2019 +0200 patch 8.1.1443: popup window padding and border not implemented yet Problem: Popup window padding and border not implemented yet. Solution: Implement padding and border. Add core position and size to popup_getpos().
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 Jun 2019 20:30:05 +0200
parents 998603a243d7
children ec61b6b79865
comparison
equal deleted inserted replaced
16883:c7c1b4618acb 16884:59e4148c0c73
2886 int w_minwidth; // "minwidth" for popup window 2886 int w_minwidth; // "minwidth" for popup window
2887 int w_maxheight; // "maxheight" for popup window 2887 int w_maxheight; // "maxheight" for popup window
2888 int w_maxwidth; // "maxwidth" for popup window 2888 int w_maxwidth; // "maxwidth" for popup window
2889 int w_wantline; // "line" for popup window 2889 int w_wantline; // "line" for popup window
2890 int w_wantcol; // "col" for popup window 2890 int w_wantcol; // "col" for popup window
2891 int w_popup_padding[4]; // popup padding top/right/bot/left
2892 int w_popup_border[4]; // popup border top/right/bot/left
2891 varnumber_T w_popup_last_changedtick; // b:changedtick when position was 2893 varnumber_T w_popup_last_changedtick; // b:changedtick when position was
2892 // computed 2894 // computed
2893 callback_T w_filter_cb; // popup filter callback 2895 callback_T w_filter_cb; // popup filter callback
2894 # if defined(FEAT_TIMERS) 2896 # if defined(FEAT_TIMERS)
2895 timer_T *w_popup_timer; // timer for closing popup window 2897 timer_T *w_popup_timer; // timer for closing popup window