Update Spanish translation
[gnumeric.git] / src / cellspan.h
blob0209811ccb7d196de37e95d0b8efd53ca10b1d5e
1 #ifndef _GNM_CELLSPAN_H_
2 # define _GNM_CELLSPAN_H_
4 #include <gnumeric.h>
6 G_BEGIN_DECLS
8 typedef struct {
9 GnmCell const *cell;
10 int left, right;
11 } CellSpanInfo;
13 void cell_calc_span (GnmCell const *cell, int *col1, int *col2);
15 /* Management routines for spans */
16 void cell_register_span (GnmCell const *cell, int left, int right);
17 void cell_unregister_span (GnmCell const *cell);
19 GType cell_span_info_get_type (void);
20 CellSpanInfo const *row_span_get (ColRowInfo const *ri, int col);
21 void row_destroy_span (ColRowInfo *ri);
22 void row_calc_spans (ColRowInfo *ri, int row, Sheet const *sheet);
24 G_END_DECLS
26 #endif /* _GNM_CELLSPAN_H_ */