diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-04-15 22:18:02 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-04-15 22:18:02 +0800 |
commit | 655592d3a8ee26b96142ef09fdf0cd1a8eb776ed (patch) | |
tree | 19081e1b5323b7b126c8e41b4ee54945088be251 /widgets/misc/e-canvas.h | |
parent | 9c91a37ee139de657d2ac341d246f93e186e6332 (diff) | |
download | gsoc2013-evolution-655592d3a8ee26b96142ef09fdf0cd1a8eb776ed.tar.gz gsoc2013-evolution-655592d3a8ee26b96142ef09fdf0cd1a8eb776ed.tar.zst gsoc2013-evolution-655592d3a8ee26b96142ef09fdf0cd1a8eb776ed.zip |
Use e_canvas_hide_tooltip and e_canvas_popup_tooltip. Set bold on the
2001-04-15 Christopher James Lahey <clahey@ximian.com>
* gal/e-text/e-text.c (tooltip_event): Use e_canvas_hide_tooltip
and e_canvas_popup_tooltip. Set bold on the tooltip.
* gal/widgets/e-canvas.c, gal/widgets/e-canvas.h: Added
e_canvas_popup_tooltip and e_canvas_hide_tooltip.
svn path=/trunk/; revision=9323
Diffstat (limited to 'widgets/misc/e-canvas.h')
-rw-r--r-- | widgets/misc/e-canvas.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/widgets/misc/e-canvas.h b/widgets/misc/e-canvas.h index 212fda7c2f..820dcddc2e 100644 --- a/widgets/misc/e-canvas.h +++ b/widgets/misc/e-canvas.h @@ -79,6 +79,11 @@ struct _ECanvas GList *selection; ECanvasSelectionInfo *cursor; + GtkWidget *tooltip_window; + int visibility_notify_id; + GtkWidget *toplevel; + guint visibility_first : 1; + /* Input context for dead key support */ GdkIC *ic; GdkICAttr *ic_attr; @@ -113,6 +118,9 @@ void e_canvas_item_remove_selection (GnomeCanvasItem *item, gpointer id); /* Not implemented yet. */ void e_canvas_item_set_cursor_end (GnomeCanvasItem *item, gpointer id); +void e_canvas_popup_tooltip (ECanvas *canvas, GtkWidget *widget, int x, int y); +void e_canvas_hide_tooltip (ECanvas *canvas); + #ifdef __cplusplus } #endif /* __cplusplus */ |