Update translations from Transifex
[midnight-commander.git] / src / filemanager / filegui.h
blobaf541c2f47bb572be0e3cac7565ad61affbb8f8b
1 /** \file filegui.h
2 * \brief Header: file management GUI for the text mode edition
3 */
5 #ifndef MC__FILEGUI_H
6 #define MC__FILEGUI_H
8 #include "lib/global.h"
9 #include "fileopctx.h"
11 /*** typedefs(not structures) and defined constants **********************************************/
13 /*** enums ***************************************************************************************/
15 /*** structures declarations (and typedefs of structures)*****************************************/
17 /*** global variables defined in .c file *********************************************************/
19 /*** declarations of public functions ************************************************************/
21 void file_op_context_create_ui (file_op_context_t * ctx, gboolean with_eta,
22 filegui_dialog_type_t dialog_type);
23 void file_op_context_destroy_ui (file_op_context_t * ctx);
25 char *file_mask_dialog (file_op_context_t * ctx, FileOperation operation,
26 gboolean only_one,
27 const char *format, const void *text,
28 const char *def_text, gboolean * do_bg);
30 FileProgressStatus check_progress_buttons (file_op_context_t * ctx);
32 void file_progress_show (file_op_context_t * ctx, off_t done, off_t total,
33 const char *stalled_msg, gboolean force_update);
34 void file_progress_show_count (file_op_context_t * ctx, size_t done, size_t total);
35 void file_progress_show_total (file_op_total_context_t * tctx, file_op_context_t * ctx,
36 uintmax_t copied_bytes, gboolean show_summary);
37 void file_progress_show_source (file_op_context_t * ctx, const vfs_path_t * vpath);
38 void file_progress_show_target (file_op_context_t * ctx, const vfs_path_t * vpath);
39 gboolean file_progress_show_deleting (file_op_context_t * ctx, const char *path, size_t * count);
41 /*** inline functions ****************************************************************************/
42 #endif /* MC__FILEGUI_H */