diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:22:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:22:03 +0000 |
commit | ffccd5b2b05243e7976db80f90f453dccfae9886 (patch) | |
tree | 39a43152d27f7390d8f7a6fb276fa6887f87c6e8 /src/filemanager/boxes.h | |
parent | Initial commit. (diff) | |
download | mc-ffccd5b2b05243e7976db80f90f453dccfae9886.tar.xz mc-ffccd5b2b05243e7976db80f90f453dccfae9886.zip |
Adding upstream version 3:4.8.30.upstream/3%4.8.30
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/filemanager/boxes.h')
-rw-r--r-- | src/filemanager/boxes.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/filemanager/boxes.h b/src/filemanager/boxes.h new file mode 100644 index 0000000..6cb115e --- /dev/null +++ b/src/filemanager/boxes.h @@ -0,0 +1,37 @@ +/** \file boxes.h + * \brief Header: Some misc dialog boxes for the program + */ + +#ifndef MC__BOXES_H +#define MC__BOXES_H + +#include "dir.h" +#include "panel.h" + +/*** typedefs(not structures) and defined constants **********************************************/ + +/*** enums ***************************************************************************************/ + +/*** structures declarations (and typedefs of structures)*****************************************/ + +/*** global variables defined in .c file *********************************************************/ + +/*** declarations of public functions ************************************************************/ + +void configure_box (void); +void appearance_box (void); +void panel_options_box (void); +int panel_listing_box (WPanel * p, int num, char **user, char **mini, gboolean * use_msformat, + int *brief_cols); +const panel_field_t *sort_box (dir_sort_options_t * op, const panel_field_t * sort_field); +void confirm_box (void); +void display_bits_box (void); +void configure_vfs_box (void); +void jobs_box (void); +char *cd_box (const WPanel * panel); +void symlink_box (const vfs_path_t * existing_vpath, const vfs_path_t * new_vpath, + char **ret_existing, char **ret_new); +char *tree_box (const char *current_dir); + +/*** inline functions ****************************************************************************/ +#endif /* MC__BOXES_H */ |