Changed function remove_encoding_from_path() for return vfs_path_t type
[midnight-commander.git] / src / filemanager / panel.h
blob0f9351db5f2e8e3412da3b5631d50b946e273378
1 /** \file panel.h
2 * \brief Header: defines WPanel structure
3 */
5 #ifndef MC__PANEL_H
6 #define MC__PANEL_H
8 #include <inttypes.h> /* uintmax_t */
10 #include "lib/global.h" /* gboolean */
11 #include "lib/fs.h" /* MC_MAXPATHLEN */
12 #include "lib/strutil.h"
13 #include "lib/widget.h" /* Widget */
15 #include "src/main.h" /* cd_enum */
17 #include "dir.h" /* dir_list */
19 /*** typedefs(not structures) and defined constants **********************************************/
21 #define selection(p) (&(p->dir.list[p->selected]))
22 #define DEFAULT_USER_FORMAT "half type name | size | perm"
24 #define LIST_TYPES 4
26 #define UP_KEEPSEL ((char *) -1)
28 /*** enums ***************************************************************************************/
30 enum list_types
32 list_full, /* Name, size, perm/date */
33 list_brief, /* Name */
34 list_long, /* Like ls -l */
35 list_user /* User defined */
38 typedef enum
40 frame_full, /* full screen frame */
41 frame_half /* half screen frame */
42 } panel_display_t;
44 typedef enum
46 UP_OPTIMIZE = 0,
47 UP_RELOAD = 1,
48 UP_ONLY_CURRENT = 2
49 } panel_update_flags_t;
51 /*** structures declarations (and typedefs of structures)*****************************************/
53 struct format_e;
55 typedef struct panel_field_struct
57 const char *id;
58 int min_size;
59 int expands;
60 align_crt_t default_just;
61 const char *hotkey;
62 const char *title_hotkey;
63 gboolean is_user_choice;
64 gboolean use_in_user_format;
65 const char *(*string_fn) (file_entry *, int);
66 sortfn *sort_routine; /* used by mouse_sort_col() */
67 } panel_field_t;
69 typedef struct
71 dir_list list;
72 int count;
73 vfs_path_t *root_vpath;
74 } panelized_panel_t;
76 typedef struct panel_sort_info_struct
78 gboolean reverse; /* Show listing in reverse? */
79 gboolean case_sensitive; /* Listing is case sensitive? */
80 gboolean exec_first; /* Show executable top in list? */
81 const panel_field_t *sort_field;
82 } panel_sort_info_t;
84 typedef struct WPanel
86 Widget widget;
87 dir_list dir; /* Directory contents */
89 int list_type; /* listing type (was view_type) */
90 int active; /* If panel is currently selected */
91 vfs_path_t *cwd_vpath; /* Current Working Directory */
92 vfs_path_t *lwd_vpath; /* Last Working Directory */
93 GList *dir_history; /* directory history */
94 char *hist_name; /* directory history name for history file */
95 int count; /* Number of files in dir structure */
96 int marked; /* Count of marked files */
97 int dirs_marked; /* Count of marked directories */
98 uintmax_t total; /* Bytes in marked files */
99 int top_file; /* The file showed on the top of the panel */
100 int selected; /* Index to the selected file */
101 int split; /* Split panel to allow two columns */
102 gboolean is_panelized; /* Flag: special filelisting, can't reload */
103 panel_display_t frame_size; /* half or full frame */
104 char *filter; /* File name filter */
105 panel_sort_info_t sort_info; /* Sort descriptor */
107 int dirty; /* Should we redisplay the panel? */
109 int user_mini_status; /* Is user_status_format used */
110 char *user_format; /* User format */
111 char *user_status_format[LIST_TYPES]; /* User format for status line */
113 struct format_e *format; /* Display format */
114 struct format_e *status_format; /* Mini status format */
116 int format_modified; /* If the format was changed this is set */
118 char *panel_name; /* The panel name */
119 struct stat dir_stat; /* Stat of current dir: used by execute () */
121 int codepage; /* panel codepage */
123 gboolean searching;
124 char search_buffer[MC_MAXFILENAMELEN];
125 char prev_search_buffer[MC_MAXFILENAMELEN];
126 char search_char[MB_LEN_MAX]; /*buffer for multibytes characters */
127 int search_chpoint; /*point after last characters in search_char */
128 } WPanel;
130 /*** global variables defined in .c file *********************************************************/
132 extern panelized_panel_t panelized_panel;
134 extern panel_field_t panel_fields[];
136 extern hook_t *select_file_hook;
138 /*** declarations of public functions ************************************************************/
140 WPanel *panel_new (const char *panel_name);
141 WPanel *panel_new_with_dir (const char *panel_name, const char *dr);
142 void panel_clean_dir (WPanel * panel);
144 void panel_reload (WPanel * panel);
145 void panel_set_sort_order (WPanel * panel, const panel_field_t * sort_order);
146 void panel_re_sort (WPanel * panel);
147 void panel_change_encoding (WPanel * panel);
149 void update_panels (panel_update_flags_t flags, const char *current_file);
150 int set_panel_formats (WPanel * p);
151 void panel_update_cols (Widget * widget, panel_display_t frame_size);
153 void try_to_select (WPanel * panel, const char *name);
155 void unmark_files (WPanel * panel);
156 void select_item (WPanel * panel);
158 void recalculate_panel_summary (WPanel * panel);
159 void file_mark (WPanel * panel, int idx, int val);
160 void do_file_mark (WPanel * panel, int idx, int val);
162 gboolean do_panel_cd (struct WPanel *panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type);
164 void directory_history_add (struct WPanel *panel, const char *dir);
166 vfs_path_t *remove_encoding_from_path (const vfs_path_t * vpath);
168 gsize panel_get_num_of_sortable_fields (void);
169 const char **panel_get_sortable_fields (gsize *);
170 const panel_field_t *panel_get_field_by_id (const char *);
171 const panel_field_t *panel_get_field_by_title (const char *);
172 const panel_field_t *panel_get_field_by_title_hotkey (const char *);
173 gsize panel_get_num_of_user_possible_fields (void);
174 const char **panel_get_user_possible_fields (gsize *);
175 void panel_set_cwd (WPanel * panel, const char *path_str);
176 void panel_set_lwd (WPanel * panel, const char *path_str);
178 void panel_init (void);
179 void panel_deinit (void);
181 /*** inline functions ****************************************************************************/
182 #endif /* MC__PANEL_H */