root/src/filemanager/boxes.h

/* [previous][next][first][last][top][bottom][index][help]  */

INCLUDED FROM


   1 /** \file boxes.h
   2  *  \brief Header: Some misc dialog boxes for the program
   3  */
   4 
   5 #ifndef MC__BOXES_H
   6 #define MC__BOXES_H
   7 
   8 #include "dir.h"
   9 #include "panel.h"
  10 
  11 /*** typedefs(not structures) and defined constants **********************************************/
  12 
  13 /*** enums ***************************************************************************************/
  14 
  15 /*** structures declarations (and typedefs of structures)*****************************************/
  16 
  17 /*** global variables defined in .c file *********************************************************/
  18 
  19 /*** declarations of public functions ************************************************************/
  20 
  21 void configure_box (void);
  22 void appearance_box (void);
  23 void panel_options_box (void);
  24 int panel_listing_box (WPanel * p, int num, char **user, char **mini, gboolean * use_msformat,
  25                        int *brief_cols);
  26 const panel_field_t *sort_box (dir_sort_options_t * op, const panel_field_t * sort_field);
  27 void confirm_box (void);
  28 void display_bits_box (void);
  29 void configure_vfs_box (void);
  30 void jobs_box (void);
  31 char *cd_box (const WPanel * panel);
  32 void symlink_box (const vfs_path_t * existing_vpath, const vfs_path_t * new_vpath,
  33                   char **ret_existing, char **ret_new);
  34 char *tree_box (const char *current_dir);
  35 
  36 /*** inline functions ****************************************************************************/
  37 #endif /* MC__BOXES_H */

/* [previous][next][first][last][top][bottom][index][help]  */