/** \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 about_box (void); 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 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