Update Spanish translation
[gnumeric.git] / src / cmd-edit.h
blob12cb6433200e0534c0ed1fc2743724f5526e6572
1 #ifndef _GNM_CMD_EDIT_H_
2 # define _GNM_CMD_EDIT_H_
4 #include <gnumeric.h>
6 G_BEGIN_DECLS
8 /* TODO : move these to selection */
9 void sv_select_cur_row (SheetView *sv);
10 void sv_select_cur_col (SheetView *sv);
11 void sv_select_cur_array (SheetView *sv);
12 void sv_select_cur_depends (SheetView *sv);
13 void sv_select_cur_inputs (SheetView *sv);
15 void cmd_paste_to_selection (WorkbookControl *wbc, SheetView *dest_sv, int paste_flags);
16 void cmd_paste (WorkbookControl *wbc, GnmPasteTarget const *pt);
18 void cmd_shift_cols (WorkbookControl *wbc, Sheet *sheet,
19 int start_col, int end_col,
20 int row, int count);
21 void cmd_shift_rows (WorkbookControl *wbc, Sheet *sheet,
22 int col,
23 int start_row, int end_row, int count);
25 G_END_DECLS
27 #endif /* _GNM_CMD_EDIT_H_ */