Update Spanish translation
[gnumeric.git] / src / sheet-object-image.h
blob31e958b46eef3c7e407c26fa98e9f31d691a9390
1 #ifndef _GNM_SHEET_OBJECT_IMAGE_H_
2 # define _GNM_SHEET_OBJECT_IMAGE_H_
4 #include <sheet-object.h>
6 G_BEGIN_DECLS
8 #define GNM_SO_IMAGE_TYPE (sheet_object_image_get_type ())
9 #define GNM_SO_IMAGE(o) (G_TYPE_CHECK_INSTANCE_CAST((o), GNM_SO_IMAGE_TYPE, SheetObjectImage))
10 #define GNM_IS_SO_IMAGE(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), GNM_SO_IMAGE_TYPE))
12 typedef struct _SheetObjectImage SheetObjectImage;
14 GType sheet_object_image_get_type (void);
15 void sheet_object_image_set_image (SheetObjectImage *soi,
16 char const *type,
17 gconstpointer data,
18 unsigned data_len);
19 void sheet_object_image_set_crop (SheetObjectImage *soi,
20 double crop_left, double crop_top,
21 double crop_right, double crop_bottom);
23 G_END_DECLS
25 #endif /* _GNM_SHEET_OBJECT_IMAGE_H_ */