Merge branch '2199_button_bar_mouse'
[midnight-commander.git] / src / file.h
blobf73ab5dbed89526f522649e490f6f54c7845a82a
2 /** \file file.h
3 * \brief Header: File and directory operation routines
4 */
6 #ifndef MC_FILE_H
7 #define MC_FILE_H
9 #include <sys/types.h> /* off_t */
10 #include <sys/time.h>
12 #include "lib/global.h"
13 #include "dialog.h" /* Dlg_head */
14 #include "widget.h" /* WLabel */
15 #include "fileopctx.h"
17 struct link;
19 FileProgressStatus copy_file_file (FileOpTotalContext * tctx, FileOpContext * ctx,
20 const char *src_path, const char *dst_path);
21 FileProgressStatus move_dir_dir (FileOpTotalContext * tctx, FileOpContext * ctx,
22 const char *s, const char *d);
23 FileProgressStatus copy_dir_dir (FileOpTotalContext * tctx, FileOpContext * ctx,
24 const char *s, const char *d,
25 gboolean toplevel, gboolean move_over, gboolean do_delete,
26 struct link *parent_dirs);
27 FileProgressStatus erase_dir (FileOpTotalContext * tctx, FileOpContext * ctx, const char *s);
29 gboolean panel_operate (void *source_panel, FileOperation op, gboolean force_single);
31 extern int file_op_compute_totals;
33 /* Error reporting routines */
35 /* Report error with one file */
36 FileProgressStatus file_error (const char *format, const char *file);
38 /* Compute directory size */
39 /* callback to update status dialog */
40 typedef FileProgressStatus (*compute_dir_size_callback) (const void *ui, const char *dirname);
42 /* return value is FILE_CONT or FILE_ABORT */
43 FileProgressStatus compute_dir_size (const char *dirname, const void *ui,
44 compute_dir_size_callback cback,
45 off_t * ret_marked, double *ret_total,
46 gboolean compute_symlinks);
48 /* status dialog of directory size computing */
49 typedef struct
51 Dlg_head *dlg;
52 WLabel *dirname;
53 } ComputeDirSizeUI;
55 ComputeDirSizeUI *compute_dir_size_create_ui (void);
56 void compute_dir_size_destroy_ui (ComputeDirSizeUI * ui);
57 FileProgressStatus compute_dir_size_update_ui (const void *ui, const char *dirname);
59 #endif /* MC_FILE_H */