move do_cd from src/main.c to src/filemanager/panel.c
[midnight-commander.git] / src / filemanager / panel.h
blob6b2436df512ac483a2cbe43eb570d606141a7e04
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 GList *dir_history_current; /* pointer to the current history item */
95 char *hist_name; /* directory history name for history file */
96 int count; /* Number of files in dir structure */
97 int marked; /* Count of marked files */
98 int dirs_marked; /* Count of marked directories */
99 uintmax_t total; /* Bytes in marked files */
100 int top_file; /* The file showed on the top of the panel */
101 int selected; /* Index to the selected file */
102 int split; /* Split panel to allow two columns */
103 gboolean is_panelized; /* Flag: special filelisting, can't reload */
104 panel_display_t frame_size; /* half or full frame */
105 char *filter; /* File name filter */
106 panel_sort_info_t sort_info; /* Sort descriptor */
108 int dirty; /* Should we redisplay the panel? */
110 int user_mini_status; /* Is user_status_format used */
111 char *user_format; /* User format */
112 char *user_status_format[LIST_TYPES]; /* User format for status line */
114 struct format_e *format; /* Display format */
115 struct format_e *status_format; /* Mini status format */
117 int format_modified; /* If the format was changed this is set */
119 char *panel_name; /* The panel name */
120 struct stat dir_stat; /* Stat of current dir: used by execute () */
122 #ifdef HAVE_CHARSET
123 int codepage; /* panel codepage */
124 #endif
126 gboolean searching;
127 char search_buffer[MC_MAXFILENAMELEN];
128 char prev_search_buffer[MC_MAXFILENAMELEN];
129 char search_char[MB_LEN_MAX]; /*buffer for multibytes characters */
130 int search_chpoint; /*point after last characters in search_char */
131 int content_shift; /* Number of characters of filename need to skip from left side. */
132 int max_shift; /* Max shift for visible part of current panel */
133 } WPanel;
135 /*** global variables defined in .c file *********************************************************/
137 extern panelized_panel_t panelized_panel;
139 extern panel_field_t panel_fields[];
141 extern hook_t *select_file_hook;
143 /*** declarations of public functions ************************************************************/
145 WPanel *panel_new (const char *panel_name);
146 WPanel *panel_new_with_dir (const char *panel_name, const char *dr);
147 void panel_clean_dir (WPanel * panel);
149 void panel_reload (WPanel * panel);
150 void panel_set_sort_order (WPanel * panel, const panel_field_t * sort_order);
151 void panel_re_sort (WPanel * panel);
153 #ifdef HAVE_CHARSET
154 void panel_change_encoding (WPanel * panel);
155 vfs_path_t *remove_encoding_from_path (const vfs_path_t * vpath);
156 #endif
158 void update_panels (panel_update_flags_t flags, const char *current_file);
159 int set_panel_formats (WPanel * p);
160 void panel_update_cols (Widget * widget, panel_display_t frame_size);
162 void try_to_select (WPanel * panel, const char *name);
164 void unmark_files (WPanel * panel);
165 void select_item (WPanel * panel);
167 void recalculate_panel_summary (WPanel * panel);
168 void file_mark (WPanel * panel, int idx, int val);
169 void do_file_mark (WPanel * panel, int idx, int val);
171 gboolean do_panel_cd (struct WPanel *panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type);
173 gsize panel_get_num_of_sortable_fields (void);
174 const char **panel_get_sortable_fields (gsize *);
175 const panel_field_t *panel_get_field_by_id (const char *);
176 const panel_field_t *panel_get_field_by_title (const char *);
177 const panel_field_t *panel_get_field_by_title_hotkey (const char *);
178 gsize panel_get_num_of_user_possible_fields (void);
179 const char **panel_get_user_possible_fields (gsize *);
180 void panel_set_cwd (WPanel * panel, const char *path_str);
181 void panel_set_lwd (WPanel * panel, const char *path_str);
183 void panel_init (void);
184 void panel_deinit (void);
185 gboolean do_cd (const vfs_path_t * new_dir_vpath, enum cd_enum cd_type);
187 /*** inline functions ****************************************************************************/
188 #endif /* MC__PANEL_H */