|  |  |  | Anjuta Developers Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | ||||
#include <libanjuta/interfaces/ianjuta-editor-zoom.h> #define IANJUTA_EDITOR_ZOOM_ERROR struct IAnjutaEditorZoomIface; GQuark ianjuta_editor_zoom_error_quark (void); void ianjuta_editor_zoom_in (IAnjutaEditorZoom *obj,GError **err); void ianjuta_editor_zoom_out (IAnjutaEditorZoom *obj,GError **err);
struct IAnjutaEditorZoomIface {
	IAnjutaEditorIface g_iface;
	
	void (*in) (IAnjutaEditorZoom *obj, GError **err);
	void (*out) (IAnjutaEditorZoom *obj, GError **err);
};
void ianjuta_editor_zoom_in (IAnjutaEditorZoom *obj,GError **err);
Zoom in
| 
 | Self | 
| 
 | Error propagation and reporting |