diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-06-13 20:20:40 +0000 |
commit | 071d4279d6ab81b7187b48f3a0fc61e587b6db6c (patch) | |
tree | 221cbe3c40e043163c06f61c52a7ba2eb41e12ce /src/gui_beval.h | |
parent | b4210b3bc14e2918f153a7307530fbe6eba659e1 (diff) | |
download | vim-git-071d4279d6ab81b7187b48f3a0fc61e587b6db6c.tar.gz |
updated for version 7.0001v7.0001
Diffstat (limited to 'src/gui_beval.h')
-rw-r--r-- | src/gui_beval.h | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/src/gui_beval.h b/src/gui_beval.h new file mode 100644 index 000000000..75d5a18fc --- /dev/null +++ b/src/gui_beval.h @@ -0,0 +1,76 @@ +/* vi:set ts=8 sts=4 sw=4: + * + * VIM - Vi IMproved by Bram Moolenaar + * Visual Workshop integration by Gordon Prieur + * + * Do ":help uganda" in Vim to read copying and usage conditions. + * Do ":help credits" in Vim to see a list of people who contributed. + */ + +#if !defined(GUI_BEVAL_H) && (defined(FEAT_BEVAL) || defined(PROTO)) +#define GUI_BEVAL_H + +#ifdef FEAT_GUI_GTK +# include <gtk/gtkwidget.h> +#else +# if defined(FEAT_GUI_X11) +# include <X11/Intrinsic.h> +# endif +#endif + +typedef enum +{ + ShS_NEUTRAL, /* nothing showing or pending */ + ShS_PENDING, /* data requested from debugger */ + ShS_UPDATE_PENDING, /* switching information displayed */ + ShS_SHOWING /* the balloon is being displayed */ +} BeState; + +typedef struct BalloonEvalStruct +{ +#ifdef FEAT_GUI_GTK + GtkWidget *target; /* widget we are monitoring */ + GtkWidget *balloonShell; + GtkWidget *balloonLabel; + unsigned int timerID; /* timer for run */ + BeState showState; /* tells us whats currently going on */ + int x; + int y; + unsigned int state; /* Button/Modifier key state */ +#else +# if !defined(FEAT_GUI_W32) + Widget target; /* widget we are monitoring */ + Widget balloonShell; + Widget balloonLabel; + XtIntervalId timerID; /* timer for run */ + BeState showState; /* tells us whats currently going on */ + XtAppContext appContext; /* used in event handler */ + Position x; + Position y; + Position x_root; + Position y_root; + int state; /* Button/Modifier key state */ +# else + HWND target; + HWND balloon; + int x; + int y; + BeState showState; /* tells us whats currently going on */ +# endif +#endif + int ts; /* tabstop setting for this buffer */ + char_u *msg; + void (*msgCB)__ARGS((struct BalloonEvalStruct *, int)); + void *clientData; /* For callback */ +#if !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_W32) + Dimension screen_width; /* screen width in pixels */ + Dimension screen_height; /* screen height in pixels */ +#endif +} BalloonEval; + +#define EVAL_OFFSET_X 15 /* displacement of beval topleft corner from pointer */ +#define EVAL_OFFSET_Y 10 + +#include "gui_beval.pro" + +#endif /* GUI_BEVAL_H and FEAT_BEVAL */ |