|  |  |  | Anjuta Developers Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | ||||
#include <libanjuta/interfaces/ianjuta-print.h> #define IANJUTA_PRINT_ERROR struct IAnjutaPrintIface; GQuark ianjuta_print_error_quark (void); void ianjuta_print_print (IAnjutaPrint *obj,GError **err); void ianjuta_print_print_preview (IAnjutaPrint *obj,GError **err);
struct IAnjutaPrintIface {
	GTypeInterface g_iface;
	
	void (*print) (IAnjutaPrint *obj, GError **err);
	void (*print_preview) (IAnjutaPrint *obj, GError **err);
};
void ianjuta_print_print (IAnjutaPrint *obj,GError **err);
Show print preview dialog
| 
 | Self | 
| 
 | Error propagation and reporting. |