diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-03-07 23:16:51 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-03-07 23:16:51 +0000 |
commit | e4efc3b27052385c6466f133ac1b0931b7e4c855 (patch) | |
tree | 4f03a30a3323a5fbe0ceba3fa47e2c2503e60d7c /src/workshop.c | |
parent | 44ecf65f74749995760eea6a1082f59d94817cbe (diff) | |
download | vim-e4efc3b27052385c6466f133ac1b0931b7e4c855.zip |
updated for version 7.0057
Diffstat (limited to 'src/workshop.c')
-rw-r--r-- | src/workshop.c | 38 |
1 files changed, 12 insertions, 26 deletions
diff --git a/src/workshop.c b/src/workshop.c index a80575f24..e17f0e64f 100644 --- a/src/workshop.c +++ b/src/workshop.c @@ -58,7 +58,7 @@ static void load_buffer_by_number(int, int); static void load_window(char *, int lnum); static void warp_to_pc(int); #ifdef FEAT_BEVAL -static void bevalCB(BalloonEval *, int); +void workshop_beval_cb(BalloonEval *, int); #endif static char *fixAccelText(char *); static void addMenu(char *, char *, char *); @@ -74,7 +74,6 @@ static int tbpri; /* ToolBar priority */ int usingSunWorkShop = 0; /* set if -ws flag is used */ char curMenuName[BUFSIZ]; char curMenuPriority[BUFSIZ]; -BalloonEval *balloonEval; static Boolean workshopInitDone = False; static Boolean workshopHotKeysEnabled = False; @@ -220,21 +219,7 @@ workshop_load_file( #endif #ifdef FEAT_BEVAL - if (balloonEval == NULL) - { - /* - * Set up the Balloon Expression Evaluation area. - * It's enabled by default. Disable it when 'ballooneval' is off. - */ -# ifdef FEAT_GUI_GTK - balloonEval = gui_mch_create_beval_area(gui.drawarea, NULL, - &bevalCB, NULL); -# else - balloonEval = gui_mch_create_beval_area(textArea, NULL, bevalCB, NULL); -# endif - if (!p_beval) - gui_mch_disable_beval_area(balloonEval); - } + bevalServers |= BEVAL_WORKSHOP; #endif load_window(filename, line); @@ -1566,15 +1551,15 @@ fixAccelText( } #ifdef FEAT_BEVAL - static void -bevalCB( + void +workshop_beval_cb( BalloonEval *beval, int state) { - char_u *filename; + win_T *wp; char_u *text; int type; - int line; + linenr_T lnum; int col; int idx; char buf[MAXPATHLEN * 2]; @@ -1583,7 +1568,7 @@ bevalCB( if (!p_beval) return; - if (gui_mch_get_beval_info(beval, &filename, &line, &text, &col) == OK) + if (get_beval_info(beval, FALSE, &wp, &lnum, &text, &col) == OK) { if (text && text[0]) { @@ -1606,7 +1591,7 @@ bevalCB( idx = computeIndex(col, text, beval->ts); if (idx > 0) { - line = 0; + lnum = 0; /* * If successful, it will respond with a balloon cmd. @@ -1623,9 +1608,10 @@ bevalCB( /* Send request to dbx */ sprintf(buf, "toolVerb debug.balloonEval " - "%s %d,0 %d,0 %d,%d %d %s\n", (char *) filename, - line, idx, type, serialNo++, - strlen((char *) text), (char *) text); + "%s %ld,0 %d,0 %d,%d %ld %s\n", + (char *)wp->w_buffer->b_ffname, + (long)lnum, idx, type, serialNo++, + (long)strlen((char *)text), (char *)text); balloonEval = beval; workshop_send_message(buf); } |