|  |  |  | Anjuta Developers Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | ||||
#include <libanjuta/interfaces/ianjuta-editor-hover> #define IANJUTA_EDITOR_HOVER_ERROR struct IAnjutaEditorHoverIface; void ianjuta_editor_hover_display (IAnjutaEditorHover *obj,IAnjutaIterable *position,const gchar *info,GError **err); GQuark ianjuta_editor_hover_error_quark (void);
struct IAnjutaEditorHoverIface {
	IAnjutaEditorIface g_iface;
	
	/* Signal */
	void (*hover_leave) (IAnjutaEditorHover *obj, IAnjutaIterable* position);
	/* Signal */
	void (*hover_over) (IAnjutaEditorHover *obj, IAnjutaIterable* position);
	void (*display) (IAnjutaEditorHover *obj, IAnjutaIterable* position,  const gchar *info, GError **err);
};
void ianjuta_editor_hover_display (IAnjutaEditorHover *obj,IAnjutaIterable *position,const gchar *info,GError **err);
Show info as tooltip
| 
 | Self | 
| 
 | String to display | 
| 
 | Error propagation and reporting |