comparison src/proto/popupwin.pro @ 17051:221d4b82bc0b v8.1.1525

patch 8.1.1525: cannot move a popup window with the mouse commit https://github.com/vim/vim/commit/b53fb31a1e27a806396e38592055cfb3ebf43cf9 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 13 23:59:52 2019 +0200 patch 8.1.1525: cannot move a popup window with the mouse Problem: Cannot move a popup window with the mouse. Solution: Add the "drag" property and make it possible to drag a popup window by its border.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Jun 2019 00:00:08 +0200
parents 7fe328ad5573
children f4de7ccdfd8c
comparison
equal deleted inserted replaced
17050:f7293a729741 17051:221d4b82bc0b
1 /* popupwin.c */ 1 /* popupwin.c */
2 int popup_on_border(win_T *wp, int row, int col);
3 void popup_start_drag(win_T *wp);
4 void popup_drag(win_T *wp);
2 int popup_height(win_T *wp); 5 int popup_height(win_T *wp);
3 int popup_width(win_T *wp); 6 int popup_width(win_T *wp);
4 void popup_adjust_position(win_T *wp); 7 void popup_adjust_position(win_T *wp);
5 void f_popup_clear(typval_T *argvars, typval_T *rettv); 8 void f_popup_clear(typval_T *argvars, typval_T *rettv);
6 void f_popup_create(typval_T *argvars, typval_T *rettv); 9 void f_popup_create(typval_T *argvars, typval_T *rettv);