1 #ifndef _GNM_SHEET_AUTOFILL_H_
2 # define _GNM_SHEET_AUTOFILL_H_
3 
4 #include <gnumeric.h>
5 
6 G_BEGIN_DECLS
7 
8 void gnm_autofill_init  (void);
9 void gnm_autofill_shutdown  (void);
10 
11 void gnm_autofill_fill (Sheet *sheet, gboolean default_increment,
12 			int base_col, int base_row,
13 			int w,        int h,
14 			int end_col,  int end_row);
15 
16 GString *gnm_autofill_hint (Sheet *sheet, gboolean default_increment,
17 			    int base_col, int base_row,
18 			    int w,        int h,
19 			    int end_col,  int end_row);
20 
21 G_END_DECLS
22 
23 #endif /* _GNM_SHEET_AUTOFILL_H_ */
24