| /vim-8.2.3635/src/ |
| H A D | gui_beval.c | 130 addEventHandler(beval->target, beval); in gui_mch_create_beval_area() 178 addEventHandler(beval->target, beval); in gui_mch_enable_beval_area() 411 (*beval->msgCB)(beval, state); in pointer_event() 433 (*beval->msgCB)(beval, (is_keypress) in key_event() 439 (*beval->msgCB)(beval, (is_keypress) in key_event() 604 (*beval->msgCB)(beval, beval->state); in pointerEvent() 636 (*beval->msgCB)(beval, ShiftMask); in pointerEvent() 641 (*beval->msgCB)(beval, ControlMask); in pointerEvent() 660 (*beval->msgCB)(beval, 0); in pointerEvent() 665 (*beval->msgCB)(beval, 0); in pointerEvent() [all …]
|
| H A D | Make_vms.mms | 313 beval.c \ 433 beval.obj \ 753 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 757 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 761 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 765 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 769 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 773 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 777 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 1213 beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \ [all …]
|
| H A D | beval.c | 143 BalloonEval *beval, in get_beval_info() argument 156 row = Y_2_ROW(beval->y); in get_beval_info() 157 col = X_2_COL(beval->x); in get_beval_info() 165 vim_free(beval->vts); in get_beval_info() 166 beval->vts = tabstop_copy((*winp)->w_buffer->b_p_vts_array); in get_beval_info() 174 beval->ts = (*winp)->w_buffer->b_p_ts; in get_beval_info() 197 gui_mch_post_balloon(beval, mesg); in post_balloon() 227 general_beval_cb(BalloonEval *beval, int state UNUSED) in general_beval_cb() argument 246 if (!can_use_beval() || beval == NULL) in general_beval_cb() 306 post_balloon(beval, result, NULL); in general_beval_cb() [all …]
|
| H A D | gui_w32.c | 8636 if (beval == NULL) in gui_mch_enable_beval_area() 8648 vim_free(beval->msg); in gui_mch_post_balloon() 8652 delete_tooltip(beval); in gui_mch_post_balloon() 8663 if (abs(beval->x - pt.x) < 3 && abs(beval->y - pt.y) < 3) in gui_mch_post_balloon() 8681 BalloonEval *beval; in gui_mch_create_beval_area() local 8690 if (beval != NULL) in gui_mch_create_beval_area() 8695 beval->msg = mesg; in gui_mch_create_beval_area() 8696 beval->msgCB = mesgCB; in gui_mch_create_beval_area() 8700 cur_beval = beval; in gui_mch_create_beval_area() 8705 return beval; in gui_mch_create_beval_area() [all …]
|
| H A D | gui_motif.c | 266 tabline_balloon_cb(BalloonEval *beval, int state UNUSED) in tabline_balloon_cb() argument 271 if (beval->target == (Widget)0) in tabline_balloon_cb() 274 XtVaGetValues(beval->target, XmNpageNumber, &nr, NULL); in tabline_balloon_cb() 280 gui_mch_post_balloon(beval, NameBuff); in tabline_balloon_cb() 3272 BalloonEval *beval; in gui_mch_update_tabline() local 3296 beval = gui_mch_create_beval_area(tab, NULL, tabline_balloon_cb, in gui_mch_update_tabline() 3298 XtVaSetValues(tab, XmNuserData, beval, NULL); in gui_mch_update_tabline() 3337 XtVaGetValues(page_info.major_tab_widget, XmNuserData, &beval, NULL); in gui_mch_update_tabline() 3338 if (beval != NULL) in gui_mch_update_tabline() 3339 gui_mch_destroy_beval_area(beval); in gui_mch_update_tabline()
|
| H A D | Make_ami.mak | 87 beval.c \
|
| H A D | Make_cyg_ming.mak | 730 $(OUTDIR)/beval.o \ 1143 spell.h structs.h termdefs.h beval.h $(NBDEBUG_INCL) 1222 $(OUTDIR)/beval.o: beval.c $(INCL) $(GUI_INCL) 1223 $(CC) -c $(CFLAGS) beval.c -o $@
|
| H A D | Makefile | 1598 beval.c \ 1756 objects/beval.o \ 1927 beval.pro \ 3142 auto/osdef.h ascii.h keymap.h termdefs.h macros.h option.h beval.h \ 3302 objects/beval.o: beval.c 3303 $(CCC) -o $@ beval.c
|
| H A D | Make_mvc.mak | 733 spell.h structs.h termdefs.h beval.h $(NBDEBUG_INCL) 740 $(OUTDIR)\beval.obj \ 1554 $(OUTDIR)/beval.obj: $(OUTDIR) beval.c $(INCL)
|
| H A D | netbeans.c | 2462 BalloonEval *beval, in netbeans_beval_cb() argument 2477 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK) in netbeans_beval_cb()
|
| /vim-8.2.3635/src/proto/ |
| H A D | gui_beval.pro | 3 void gui_mch_destroy_beval_area(BalloonEval *beval); 4 void gui_mch_enable_beval_area(BalloonEval *beval); 5 void gui_mch_disable_beval_area(BalloonEval *beval); 7 void gui_mch_post_balloon(BalloonEval *beval, char_u *mesg); 8 void gui_mch_unpost_balloon(BalloonEval *beval);
|
| H A D | beval.pro | 1 /* beval.c */ 3 int get_beval_info(BalloonEval *beval, int getword, win_T **winp, linenr_T *lnump, char_u **textp, … 4 void post_balloon(BalloonEval *beval, char_u *mesg, list_T *list); 6 void general_beval_cb(BalloonEval *beval, int state);
|
| H A D | gui_w32.pro | 94 void gui_mch_disable_beval_area(BalloonEval *beval); 95 void gui_mch_enable_beval_area(BalloonEval *beval); 96 void gui_mch_post_balloon(BalloonEval *beval, char_u *mesg); 98 void gui_mch_destroy_beval_area(BalloonEval *beval);
|
| H A D | netbeans.pro | 9 void netbeans_beval_cb(BalloonEval *beval, int state);
|
| /vim-8.2.3635/ |
| H A D | Filelist | 34 src/beval.c \ 35 src/beval.h \ 220 src/proto/beval.pro \
|
| /vim-8.2.3635/runtime/ |
| H A D | optwin.vim | 685 call <SID>BinOptionG("beval", &beval) 689 call <SID>BinOptionG("bevalterm", &beval)
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | netrw.vim | 575 " call Decho("installed beval events",'~'.expand("<slnum>")) 578 au FileType netrw setl beval 579 au WinLeave * if &ft == "netrw" && exists("s:initbeval")|let &beval= s:initbeval|endif 580 au VimEnter * let s:initbeval= &beval 582 " if v:version < 700 | call Decho("did not install beval events: v:version=".v:version." … 583 " if !has("balloon_eval") | call Decho("did not install beval events: does not have balloon_ev… 584 " if exists("s:initbeval") | call Decho("did not install beval events: s:initbeval exists","~".… 585 " if exists("g:netrw_nobeval") | call Decho("did not install beval events: g:netrw_nobeval exists",… 4058 …if v:version >= 700 && has("balloon_eval") && &beval == 0 && &l:bexpr == "" && !exists("g:netrw_no… 4061 setl beval [all …]
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | version8.txt | 22626 Files: src/beval.h 22648 src/beval.c, src/proto/beval.pro, src/testdir/test_popup.vim, 22932 Files: src/beval.c 28570 Files: src/beval.c 36168 src/proto/move.pro, src/beval.c, src/proto/beval.pro, 36191 Files: src/beval.c, src/proto/beval.pro 36201 Files: src/beval.c 36222 Files: src/beval.c 36241 Files: src/beval.c, src/proto/beval.pro, src/popupwin.c, src/normal.c, 36556 Files: src/beval.c [all …]
|
| H A D | quickref.txt | 623 'ballooneval' 'beval' switch on balloon evaluation in the GUI
|
| H A D | tags | 86 'beval' options.txt /*'beval'*
|
| H A D | options.txt | 1154 *'ballooneval'* *'beval'* *'noballooneval'* *'nobeval'* 1155 'ballooneval' 'beval' boolean (default off)
|
| H A D | todo.txt | 2129 'beval' option should be global-local.
|
| H A D | version7.txt | 12435 Solution: Do not remove the beval event handler twice.
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | vim.vim | 32 syn keyword vimOption contained acd ambw arshape aw backupskip beval bk bri bufhidden cdpath cinden…
|