panel.h: remove unused variable declaration.
[midnight-commander.git] / src / filemanager / panel.c
blob8f2f55349d7d63339831b5474edb123711bbf51d
1 /*
2 Panel managing.
4 Copyright (C) 1994-2015
5 Free Software Foundation, Inc.
7 Written by:
8 Miguel de Icaza, 1995
9 Timur Bakeyev, 1997, 1999
10 Slava Zanko <slavazanko@gmail.com>, 2013
11 Andrew Borodin <aborodin@vmail.ru>, 2013-2015
13 This file is part of the Midnight Commander.
15 The Midnight Commander is free software: you can redistribute it
16 and/or modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation, either version 3 of the License,
18 or (at your option) any later version.
20 The Midnight Commander is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program. If not, see <http://www.gnu.org/licenses/>.
29 /** \file panel.c
30 * \brief Source: panel managin module
33 #include <config.h>
35 #include <errno.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
40 #include "lib/global.h"
42 #include "lib/tty/tty.h"
43 #include "lib/tty/mouse.h" /* For Gpm_Event */
44 #include "lib/tty/key.h" /* XCTRL and ALT macros */
45 #include "lib/skin.h"
46 #include "lib/strescape.h"
47 #include "lib/mcconfig.h"
48 #include "lib/vfs/vfs.h"
49 #include "lib/unixcompat.h"
50 #include "lib/search.h"
51 #include "lib/timefmt.h" /* file_date() */
52 #include "lib/util.h"
53 #include "lib/widget.h"
54 #ifdef HAVE_CHARSET
55 #include "lib/charsets.h" /* get_codepage_id () */
56 #endif
57 #include "lib/event.h"
59 #include "src/setup.h" /* For loading/saving panel options */
60 #include "src/execute.h"
61 #ifdef HAVE_CHARSET
62 #include "src/selcodepage.h" /* select_charset (), SELECT_CHARSET_NO_TRANSLATE */
63 #endif
64 #include "src/keybind-defaults.h" /* global_keymap_t */
65 #ifdef ENABLE_SUBSHELL
66 #include "src/subshell/subshell.h" /* do_subshell_chdir() */
67 #endif
69 #include "dir.h"
70 #include "boxes.h"
71 #include "tree.h"
72 #include "ext.h" /* regexp_command */
73 #include "layout.h" /* Most layout variables are here */
74 #include "cmd.h"
75 #include "command.h" /* cmdline */
76 #include "usermenu.h"
77 #include "midnight.h"
78 #include "mountlist.h" /* my_statfs */
80 #include "panel.h"
82 /*** global variables ****************************************************************************/
84 /* The hook list for the select file function */
85 hook_t *select_file_hook = NULL;
87 /* *INDENT-OFF* */
88 panelized_panel_t panelized_panel = { {NULL, 0, -1}, NULL };
89 /* *INDENT-ON* */
91 static const char *string_file_name (file_entry_t *, int);
92 static const char *string_file_size (file_entry_t *, int);
93 static const char *string_file_size_brief (file_entry_t *, int);
94 static const char *string_file_type (file_entry_t *, int);
95 static const char *string_file_mtime (file_entry_t *, int);
96 static const char *string_file_atime (file_entry_t *, int);
97 static const char *string_file_ctime (file_entry_t *, int);
98 static const char *string_file_permission (file_entry_t *, int);
99 static const char *string_file_perm_octal (file_entry_t *, int);
100 static const char *string_file_nlinks (file_entry_t *, int);
101 static const char *string_inode (file_entry_t *, int);
102 static const char *string_file_nuid (file_entry_t *, int);
103 static const char *string_file_ngid (file_entry_t *, int);
104 static const char *string_file_owner (file_entry_t *, int);
105 static const char *string_file_group (file_entry_t *, int);
106 static const char *string_marked (file_entry_t *, int);
107 static const char *string_space (file_entry_t *, int);
108 static const char *string_dot (file_entry_t *, int);
110 mc_fhl_t *mc_filehighlight = NULL;
112 /*** file scope macro definitions ****************************************************************/
114 #define NORMAL 0
115 #define SELECTED 1
116 #define MARKED 2
117 #define MARKED_SELECTED 3
118 #define STATUS 5
120 /*** file scope type declarations ****************************************************************/
122 typedef enum
124 MARK_DONT_MOVE = 0,
125 MARK_DOWN = 1,
126 MARK_FORCE_DOWN = 2,
127 MARK_FORCE_UP = 3
128 } mark_act_t;
131 * This describes a format item. The parse_display_format routine parses
132 * the user specified format and creates a linked list of format_e structures.
134 typedef struct format_e
136 struct format_e *next;
137 int requested_field_len;
138 int field_len;
139 align_crt_t just_mode;
140 gboolean expand;
141 const char *(*string_fn) (file_entry_t *, int len);
142 char *title;
143 const char *id;
144 } format_e;
146 /* File name scroll states */
147 typedef enum
149 FILENAME_NOSCROLL = 1,
150 FILENAME_SCROLL_LEFT = 2,
151 FILENAME_SCROLL_RIGHT = 4
152 } filename_scroll_flag_t;
154 /*** file scope variables ************************************************************************/
156 /* *INDENT-OFF* */
157 static panel_field_t panel_fields[] = {
159 "unsorted", 12, TRUE, J_LEFT_FIT,
160 /* TRANSLATORS: one single character to represent 'unsorted' sort mode */
161 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
162 N_("sort|u"),
163 N_("&Unsorted"), TRUE, FALSE,
164 string_file_name,
165 (GCompareFunc) unsorted
169 "name", 12, TRUE, J_LEFT_FIT,
170 /* TRANSLATORS: one single character to represent 'name' sort mode */
171 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
172 N_("sort|n"),
173 N_("&Name"), TRUE, TRUE,
174 string_file_name,
175 (GCompareFunc) sort_name
179 "version", 12, TRUE, J_LEFT_FIT,
180 /* TRANSLATORS: one single character to represent 'version' sort mode */
181 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
182 N_("sort|v"),
183 N_("&Version"), TRUE, FALSE,
184 string_file_name,
185 (GCompareFunc) sort_vers
189 "extension", 12, TRUE, J_LEFT_FIT,
190 /* TRANSLATORS: one single character to represent 'extension' sort mode */
191 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
192 N_("sort|e"),
193 N_("E&xtension"), TRUE, FALSE,
194 string_file_name, /* TODO: string_file_ext */
195 (GCompareFunc) sort_ext
199 "size", 7, FALSE, J_RIGHT,
200 /* TRANSLATORS: one single character to represent 'size' sort mode */
201 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
202 N_("sort|s"),
203 N_("&Size"), TRUE, TRUE,
204 string_file_size,
205 (GCompareFunc) sort_size
209 "bsize", 7, FALSE, J_RIGHT,
211 N_("Block Size"), FALSE, FALSE,
212 string_file_size_brief,
213 (GCompareFunc) sort_size
217 "type", 1, FALSE, J_LEFT,
219 "", FALSE, TRUE,
220 string_file_type,
221 NULL
225 "mtime", 12, FALSE, J_RIGHT,
226 /* TRANSLATORS: one single character to represent 'Modify time' sort mode */
227 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
228 N_("sort|m"),
229 N_("&Modify time"), TRUE, TRUE,
230 string_file_mtime,
231 (GCompareFunc) sort_time
235 "atime", 12, FALSE, J_RIGHT,
236 /* TRANSLATORS: one single character to represent 'Access time' sort mode */
237 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
238 N_("sort|a"),
239 N_("&Access time"), TRUE, TRUE,
240 string_file_atime,
241 (GCompareFunc) sort_atime
245 "ctime", 12, FALSE, J_RIGHT,
246 /* TRANSLATORS: one single character to represent 'Change time' sort mode */
247 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
248 N_("sort|h"),
249 N_("C&hange time"), TRUE, TRUE,
250 string_file_ctime,
251 (GCompareFunc) sort_ctime
255 "perm", 10, FALSE, J_LEFT,
257 N_("Permission"), FALSE, TRUE,
258 string_file_permission,
259 NULL
263 "mode", 6, FALSE, J_RIGHT,
265 N_("Perm"), FALSE, TRUE,
266 string_file_perm_octal,
267 NULL
271 "nlink", 2, FALSE, J_RIGHT,
273 N_("Nl"), FALSE, TRUE,
274 string_file_nlinks, NULL
278 "inode", 5, FALSE, J_RIGHT,
279 /* TRANSLATORS: one single character to represent 'inode' sort mode */
280 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
281 N_("sort|i"),
282 N_("&Inode"), TRUE, TRUE,
283 string_inode,
284 (GCompareFunc) sort_inode
288 "nuid", 5, FALSE, J_RIGHT,
290 N_("UID"), FALSE, FALSE,
291 string_file_nuid,
292 NULL
296 "ngid", 5, FALSE, J_RIGHT,
298 N_("GID"), FALSE, FALSE,
299 string_file_ngid,
300 NULL
304 "owner", 8, FALSE, J_LEFT_FIT,
306 N_("Owner"), FALSE, TRUE,
307 string_file_owner,
308 NULL
312 "group", 8, FALSE, J_LEFT_FIT,
314 N_("Group"), FALSE, TRUE,
315 string_file_group,
316 NULL
320 "mark", 1, FALSE, J_RIGHT,
322 " ", FALSE, TRUE,
323 string_marked,
324 NULL
328 "|", 1, FALSE, J_RIGHT,
330 " ", FALSE, TRUE,
331 NULL,
332 NULL
336 "space", 1, FALSE, J_RIGHT,
338 " ", FALSE, TRUE,
339 string_space,
340 NULL
344 "dot", 1, FALSE, J_RIGHT,
346 " ", FALSE, FALSE,
347 string_dot,
348 NULL
352 NULL, 0, FALSE, J_RIGHT, NULL, NULL, FALSE, FALSE, NULL, NULL
355 /* *INDENT-ON* */
357 static char *panel_sort_up_sign = NULL;
358 static char *panel_sort_down_sign = NULL;
360 static char *panel_hiddenfiles_sign_show = NULL;
361 static char *panel_hiddenfiles_sign_hide = NULL;
362 static char *panel_history_prev_item_sign = NULL;
363 static char *panel_history_next_item_sign = NULL;
364 static char *panel_history_show_list_sign = NULL;
365 static char *panel_filename_scroll_left_char = NULL;
366 static char *panel_filename_scroll_right_char = NULL;
368 /* Panel that selection started */
369 static WPanel *mouse_mark_panel = NULL;
371 static int mouse_marking = 0;
372 static int state_mark = 0;
374 /* --------------------------------------------------------------------------------------------- */
375 /*** file scope functions ************************************************************************/
376 /* --------------------------------------------------------------------------------------------- */
378 static void
379 set_colors (const WPanel * panel)
381 (void) panel;
383 tty_set_normal_attrs ();
384 tty_setcolor (NORMAL_COLOR);
387 /* --------------------------------------------------------------------------------------------- */
388 /** Delete format string, it is a linked list */
390 static void
391 delete_format (format_e * format)
393 while (format != NULL)
395 format_e *next = format->next;
396 g_free (format->title);
397 g_free (format);
398 format = next;
402 /* --------------------------------------------------------------------------------------------- */
403 /** Extract the number of available lines in a panel */
405 static int
406 panel_lines (const WPanel * p)
408 /* 3 lines are: top frame, column header, botton frame */
409 return (WIDGET (p)->lines - 3 - (panels_options.show_mini_info ? 2 : 0));
412 /* --------------------------------------------------------------------------------------------- */
413 /** This code relies on the default justification!!! */
415 static void
416 add_permission_string (const char *dest, int width, file_entry_t * fe, int attr, int color,
417 gboolean is_octal)
419 int i, r, l;
421 l = get_user_permissions (&fe->st);
423 if (is_octal)
425 /* Place of the access bit in octal mode */
426 l = width + l - 3;
427 r = l + 1;
429 else
431 /* The same to the triplet in string mode */
432 l = l * 3 + 1;
433 r = l + 3;
436 for (i = 0; i < width; i++)
438 if (i >= l && i < r)
440 if (attr == SELECTED || attr == MARKED_SELECTED)
441 tty_setcolor (MARKED_SELECTED_COLOR);
442 else
443 tty_setcolor (MARKED_COLOR);
445 else if (color >= 0)
446 tty_setcolor (color);
447 else
448 tty_lowlevel_setcolor (-color);
450 tty_print_char (dest[i]);
454 /* --------------------------------------------------------------------------------------------- */
455 /** String representations of various file attributes name */
457 static const char *
458 string_file_name (file_entry_t * fe, int len)
460 static char buffer[MC_MAXPATHLEN * MB_LEN_MAX + 1];
462 (void) len;
464 g_strlcpy (buffer, fe->fname, sizeof (buffer));
465 return buffer;
468 /* --------------------------------------------------------------------------------------------- */
470 static unsigned int
471 ilog10 (dev_t n)
473 unsigned int digits = 0;
477 digits++, n /= 10;
479 while (n != 0);
481 return digits;
484 /* --------------------------------------------------------------------------------------------- */
486 static void
487 format_device_number (char *buf, size_t bufsize, dev_t dev)
489 dev_t major_dev = major (dev);
490 dev_t minor_dev = minor (dev);
491 unsigned int major_digits = ilog10 (major_dev);
492 unsigned int minor_digits = ilog10 (minor_dev);
494 g_assert (bufsize >= 1);
496 if (major_digits + 1 + minor_digits + 1 <= bufsize)
497 g_snprintf (buf, bufsize, "%lu,%lu", (unsigned long) major_dev, (unsigned long) minor_dev);
498 else
499 g_strlcpy (buf, _("[dev]"), bufsize);
502 /* --------------------------------------------------------------------------------------------- */
503 /** size */
505 static const char *
506 string_file_size (file_entry_t * fe, int len)
508 static char buffer[BUF_TINY];
510 /* Don't ever show size of ".." since we don't calculate it */
511 if (DIR_IS_DOTDOT (fe->fname))
512 return _("UP--DIR");
514 #ifdef HAVE_STRUCT_STAT_ST_RDEV
515 if (S_ISBLK (fe->st.st_mode) || S_ISCHR (fe->st.st_mode))
516 format_device_number (buffer, len + 1, fe->st.st_rdev);
517 else
518 #endif
519 size_trunc_len (buffer, (unsigned int) len, fe->st.st_size, 0, panels_options.kilobyte_si);
521 return buffer;
524 /* --------------------------------------------------------------------------------------------- */
525 /** bsize */
527 static const char *
528 string_file_size_brief (file_entry_t * fe, int len)
530 if (S_ISLNK (fe->st.st_mode) && !fe->f.link_to_dir)
531 return _("SYMLINK");
533 if ((S_ISDIR (fe->st.st_mode) || fe->f.link_to_dir) && !DIR_IS_DOTDOT (fe->fname))
534 return _("SUB-DIR");
536 return string_file_size (fe, len);
539 /* --------------------------------------------------------------------------------------------- */
540 /** This functions return a string representation of a file entry type */
542 static const char *
543 string_file_type (file_entry_t * fe, int len)
545 static char buffer[2];
547 (void) len;
549 if (S_ISDIR (fe->st.st_mode))
550 buffer[0] = PATH_SEP;
551 else if (S_ISLNK (fe->st.st_mode))
553 if (fe->f.link_to_dir)
554 buffer[0] = '~';
555 else if (fe->f.stale_link)
556 buffer[0] = '!';
557 else
558 buffer[0] = '@';
560 else if (S_ISCHR (fe->st.st_mode))
561 buffer[0] = '-';
562 else if (S_ISSOCK (fe->st.st_mode))
563 buffer[0] = '=';
564 else if (S_ISDOOR (fe->st.st_mode))
565 buffer[0] = '>';
566 else if (S_ISBLK (fe->st.st_mode))
567 buffer[0] = '+';
568 else if (S_ISFIFO (fe->st.st_mode))
569 buffer[0] = '|';
570 else if (S_ISNAM (fe->st.st_mode))
571 buffer[0] = '#';
572 else if (!S_ISREG (fe->st.st_mode))
573 buffer[0] = '?'; /* non-regular of unknown kind */
574 else if (is_exe (fe->st.st_mode))
575 buffer[0] = '*';
576 else
577 buffer[0] = ' ';
578 buffer[1] = '\0';
579 return buffer;
582 /* --------------------------------------------------------------------------------------------- */
583 /** mtime */
585 static const char *
586 string_file_mtime (file_entry_t * fe, int len)
588 (void) len;
590 return file_date (fe->st.st_mtime);
593 /* --------------------------------------------------------------------------------------------- */
594 /** atime */
596 static const char *
597 string_file_atime (file_entry_t * fe, int len)
599 (void) len;
601 return file_date (fe->st.st_atime);
604 /* --------------------------------------------------------------------------------------------- */
605 /** ctime */
607 static const char *
608 string_file_ctime (file_entry_t * fe, int len)
610 (void) len;
612 return file_date (fe->st.st_ctime);
615 /* --------------------------------------------------------------------------------------------- */
616 /** perm */
618 static const char *
619 string_file_permission (file_entry_t * fe, int len)
621 (void) len;
623 return string_perm (fe->st.st_mode);
626 /* --------------------------------------------------------------------------------------------- */
627 /** mode */
629 static const char *
630 string_file_perm_octal (file_entry_t * fe, int len)
632 static char buffer[10];
634 (void) len;
636 g_snprintf (buffer, sizeof (buffer), "0%06lo", (unsigned long) fe->st.st_mode);
637 return buffer;
640 /* --------------------------------------------------------------------------------------------- */
641 /** nlink */
643 static const char *
644 string_file_nlinks (file_entry_t * fe, int len)
646 static char buffer[BUF_TINY];
648 (void) len;
650 g_snprintf (buffer, sizeof (buffer), "%16d", (int) fe->st.st_nlink);
651 return buffer;
654 /* --------------------------------------------------------------------------------------------- */
655 /** inode */
657 static const char *
658 string_inode (file_entry_t * fe, int len)
660 static char buffer[10];
662 (void) len;
664 g_snprintf (buffer, sizeof (buffer), "%lu", (unsigned long) fe->st.st_ino);
665 return buffer;
668 /* --------------------------------------------------------------------------------------------- */
669 /** nuid */
671 static const char *
672 string_file_nuid (file_entry_t * fe, int len)
674 static char buffer[10];
676 (void) len;
678 g_snprintf (buffer, sizeof (buffer), "%lu", (unsigned long) fe->st.st_uid);
679 return buffer;
682 /* --------------------------------------------------------------------------------------------- */
683 /** ngid */
685 static const char *
686 string_file_ngid (file_entry_t * fe, int len)
688 static char buffer[10];
690 (void) len;
692 g_snprintf (buffer, sizeof (buffer), "%lu", (unsigned long) fe->st.st_gid);
693 return buffer;
696 /* --------------------------------------------------------------------------------------------- */
697 /** owner */
699 static const char *
700 string_file_owner (file_entry_t * fe, int len)
702 (void) len;
704 return get_owner (fe->st.st_uid);
707 /* --------------------------------------------------------------------------------------------- */
708 /** group */
710 static const char *
711 string_file_group (file_entry_t * fe, int len)
713 (void) len;
715 return get_group (fe->st.st_gid);
718 /* --------------------------------------------------------------------------------------------- */
719 /** mark */
721 static const char *
722 string_marked (file_entry_t * fe, int len)
724 (void) len;
726 return fe->f.marked ? "*" : " ";
729 /* --------------------------------------------------------------------------------------------- */
730 /** space */
732 static const char *
733 string_space (file_entry_t * fe, int len)
735 (void) fe;
736 (void) len;
738 return " ";
741 /* --------------------------------------------------------------------------------------------- */
742 /** dot */
744 static const char *
745 string_dot (file_entry_t * fe, int len)
747 (void) fe;
748 (void) len;
750 return ".";
753 /* --------------------------------------------------------------------------------------------- */
755 static int
756 file_compute_color (int attr, file_entry_t * fe)
758 switch (attr)
760 case SELECTED:
761 return (SELECTED_COLOR);
762 case MARKED:
763 return (MARKED_COLOR);
764 case MARKED_SELECTED:
765 return (MARKED_SELECTED_COLOR);
766 case STATUS:
767 return (NORMAL_COLOR);
768 case NORMAL:
769 default:
770 if (!panels_options.filetype_mode)
771 return (NORMAL_COLOR);
774 return mc_fhl_get_color (mc_filehighlight, fe);
777 /* --------------------------------------------------------------------------------------------- */
778 /** Returns the number of items in the given panel */
780 static int
781 panel_items (const WPanel * p)
783 return panel_lines (p) * p->list_cols;
786 /* --------------------------------------------------------------------------------------------- */
787 /** Formats the file number file_index of panel in the buffer dest */
789 static filename_scroll_flag_t
790 format_file (WPanel * panel, int file_index, int width, int attr, gboolean isstatus,
791 int *field_length)
793 int color = NORMAL_COLOR;
794 int length = 0;
795 format_e *format, *home;
796 file_entry_t *fe = NULL;
797 filename_scroll_flag_t res = FILENAME_NOSCROLL;
799 *field_length = 0;
801 if (file_index < panel->dir.len)
803 fe = &panel->dir.list[file_index];
804 color = file_compute_color (attr, fe);
807 home = isstatus ? panel->status_format : panel->format;
809 for (format = home; format != NULL && length != width; format = format->next)
811 if (format->string_fn != NULL)
813 const char *txt = " ";
814 int len, perm = 0;
815 const char *prepared_text;
816 int name_offset = 0;
818 if (fe != NULL)
819 txt = format->string_fn (fe, format->field_len);
821 len = format->field_len;
822 if (len + length > width)
823 len = width - length;
824 if (len <= 0)
825 break;
827 if (!isstatus && panel->content_shift > -1 && strcmp (format->id, "name") == 0)
829 int str_len;
830 int i;
832 *field_length = len + 1;
834 str_len = str_length (txt);
835 i = max (0, str_len - len);
836 panel->max_shift = max (panel->max_shift, i);
837 i = min (panel->content_shift, i);
839 if (i > -1)
841 name_offset = str_offset_to_pos (txt, i);
842 if (str_len > len)
844 res = FILENAME_SCROLL_LEFT;
845 if (str_length (txt + name_offset) > len)
846 res |= FILENAME_SCROLL_RIGHT;
851 if (panels_options.permission_mode)
853 if (strcmp (format->id, "perm") == 0)
854 perm = 1;
855 else if (strcmp (format->id, "mode") == 0)
856 perm = 2;
859 if (color >= 0)
860 tty_setcolor (color);
861 else
862 tty_lowlevel_setcolor (-color);
864 if (!isstatus && panel->content_shift > -1)
865 prepared_text =
866 str_fit_to_term (txt + name_offset, len, HIDE_FIT (format->just_mode));
867 else
868 prepared_text = str_fit_to_term (txt, len, format->just_mode);
870 if (perm != 0 && fe != NULL)
871 add_permission_string (prepared_text, format->field_len, fe, attr, color,
872 perm != 1);
873 else
874 tty_print_string (prepared_text);
876 length += len;
878 else
880 if (attr == SELECTED || attr == MARKED_SELECTED)
881 tty_setcolor (SELECTED_COLOR);
882 else
883 tty_setcolor (NORMAL_COLOR);
884 tty_print_one_vline (TRUE);
885 length++;
889 if (length < width)
891 int y, x;
893 tty_getyx (&y, &x);
894 tty_draw_hline (y, x, ' ', width - length);
897 return res;
900 /* --------------------------------------------------------------------------------------------- */
902 static void
903 repaint_file (WPanel * panel, int file_index, gboolean mv, int attr, gboolean isstatus)
905 Widget *w = WIDGET (panel);
907 int nth_column = 0;
908 int width;
909 int offset = 0;
910 filename_scroll_flag_t ret_frm;
911 int ypos = 0;
912 gboolean panel_is_split;
913 int fln = 0;
915 panel_is_split = !isstatus && panel->list_cols > 1;
916 width = w->cols - 2;
918 if (panel_is_split)
920 nth_column = (file_index - panel->top_file) / panel_lines (panel);
921 width /= panel->list_cols;
923 offset = width * nth_column;
925 if (nth_column + 1 >= panel->list_cols)
926 width = w->cols - offset - 2;
929 /* Nothing to paint */
930 if (width <= 0)
931 return;
933 if (mv)
935 ypos = file_index - panel->top_file;
937 if (panel_is_split)
938 ypos %= panel_lines (panel);
940 ypos += 2; /* top frame and header */
941 widget_move (w, ypos, offset + 1);
944 ret_frm = format_file (panel, file_index, width, attr, isstatus, &fln);
946 if (panel_is_split && nth_column + 1 < panel->list_cols)
948 tty_setcolor (NORMAL_COLOR);
949 tty_print_one_vline (TRUE);
952 if (ret_frm != FILENAME_NOSCROLL && mv)
954 if (!panel_is_split && fln > 0)
956 if (panel->list_type != list_long)
957 width = fln;
958 else
960 offset = width - fln + 1;
961 width = fln - 1;
965 widget_move (w, ypos, offset);
966 tty_setcolor (NORMAL_COLOR);
967 tty_print_string (panel_filename_scroll_left_char);
969 if ((ret_frm & FILENAME_SCROLL_RIGHT) != 0)
971 offset += width;
972 if (nth_column + 1 >= panel->list_cols)
973 offset++;
975 widget_move (w, ypos, offset);
976 tty_setcolor (NORMAL_COLOR);
977 tty_print_string (panel_filename_scroll_right_char);
982 /* --------------------------------------------------------------------------------------------- */
984 static void
985 display_mini_info (WPanel * panel)
987 Widget *w = WIDGET (panel);
989 if (!panels_options.show_mini_info)
990 return;
992 widget_move (w, panel_lines (panel) + 3, 1);
994 if (panel->searching)
996 tty_setcolor (INPUT_COLOR);
997 tty_print_char ('/');
998 tty_print_string (str_fit_to_term (panel->search_buffer, w->cols - 3, J_LEFT));
999 return;
1002 /* Status resolves links and show them */
1003 set_colors (panel);
1005 if (S_ISLNK (panel->dir.list[panel->selected].st.st_mode))
1007 char link_target[MC_MAXPATHLEN];
1008 vfs_path_t *lc_link_vpath;
1009 int len;
1011 lc_link_vpath =
1012 vfs_path_append_new (panel->cwd_vpath, panel->dir.list[panel->selected].fname, NULL);
1013 len = mc_readlink (lc_link_vpath, link_target, MC_MAXPATHLEN - 1);
1014 vfs_path_free (lc_link_vpath);
1015 if (len > 0)
1017 link_target[len] = 0;
1018 tty_print_string ("-> ");
1019 tty_print_string (str_fit_to_term (link_target, w->cols - 5, J_LEFT_FIT));
1021 else
1022 tty_print_string (str_fit_to_term (_("<readlink failed>"), w->cols - 2, J_LEFT));
1024 else if (DIR_IS_DOTDOT (panel->dir.list[panel->selected].fname))
1026 /* FIXME:
1027 * while loading directory (dir_list_load() and dir_list_reload()),
1028 * the actual stat info about ".." directory isn't got;
1029 * so just don't display incorrect info about ".." directory */
1030 tty_print_string (str_fit_to_term (_("UP--DIR"), w->cols - 2, J_LEFT));
1032 else
1033 /* Default behavior */
1034 repaint_file (panel, panel->selected, FALSE, STATUS, TRUE);
1037 /* --------------------------------------------------------------------------------------------- */
1039 static void
1040 paint_dir (WPanel * panel)
1042 int i;
1043 int items; /* Number of items */
1045 items = panel_items (panel);
1046 /* reset max len of filename because we have the new max length for the new file list */
1047 panel->max_shift = -1;
1049 for (i = 0; i < items; i++)
1051 int color = 0; /* Color value of the line */
1053 if (i + panel->top_file < panel->dir.len)
1055 color = 2 * (panel->dir.list[i + panel->top_file].f.marked);
1056 color += (panel->selected == i + panel->top_file && panel->active);
1059 repaint_file (panel, i + panel->top_file, TRUE, color, FALSE);
1062 tty_set_normal_attrs ();
1065 /* --------------------------------------------------------------------------------------------- */
1067 static void
1068 display_total_marked_size (const WPanel * panel, int y, int x, gboolean size_only)
1070 Widget *w = WIDGET (panel);
1072 char buffer[BUF_SMALL], b_bytes[BUF_SMALL], *buf;
1073 int cols;
1075 if (panel->marked <= 0)
1076 return;
1078 buf = size_only ? b_bytes : buffer;
1079 cols = w->cols - 2;
1082 * This is a trick to use two ngettext() calls in one sentence.
1083 * First make "N bytes", then insert it into "X in M files".
1085 g_snprintf (b_bytes, sizeof (b_bytes),
1086 ngettext ("%s byte", "%s bytes", panel->total),
1087 size_trunc_sep (panel->total, panels_options.kilobyte_si));
1088 if (!size_only)
1089 g_snprintf (buffer, sizeof (buffer),
1090 ngettext ("%s in %d file", "%s in %d files", panel->marked),
1091 b_bytes, panel->marked);
1093 /* don't forget spaces around buffer content */
1094 buf = (char *) str_trunc (buf, cols - 4);
1096 if (x < 0)
1097 /* center in panel */
1098 x = (w->cols - str_term_width1 (buf)) / 2 - 1;
1101 * y == panel_lines (panel) + 2 for mini_info_separator
1102 * y == w->lines - 1 for panel bottom frame
1104 widget_move (w, y, x);
1105 tty_setcolor (MARKED_COLOR);
1106 tty_printf (" %s ", buf);
1109 /* --------------------------------------------------------------------------------------------- */
1111 static void
1112 mini_info_separator (const WPanel * panel)
1114 if (panels_options.show_mini_info)
1116 Widget *w = WIDGET (panel);
1117 int y;
1119 y = panel_lines (panel) + 2;
1121 tty_setcolor (NORMAL_COLOR);
1122 tty_draw_hline (w->y + y, w->x + 1, ACS_HLINE, w->cols - 2);
1123 /* Status displays total marked size.
1124 * Centered in panel, full format. */
1125 display_total_marked_size (panel, y, -1, FALSE);
1129 /* --------------------------------------------------------------------------------------------- */
1131 static void
1132 show_free_space (const WPanel * panel)
1134 /* Used to figure out how many free space we have */
1135 static struct my_statfs myfs_stats;
1136 /* Old current working directory for displaying free space */
1137 static char *old_cwd = NULL;
1139 /* Don't try to stat non-local fs */
1140 if (!vfs_file_is_local (panel->cwd_vpath) || !free_space)
1141 return;
1143 if (old_cwd == NULL || strcmp (old_cwd, vfs_path_as_str (panel->cwd_vpath)) != 0)
1145 char rpath[PATH_MAX];
1147 init_my_statfs ();
1148 g_free (old_cwd);
1149 old_cwd = g_strdup (vfs_path_as_str (panel->cwd_vpath));
1151 if (mc_realpath (old_cwd, rpath) == NULL)
1152 return;
1154 my_statfs (&myfs_stats, rpath);
1157 if (myfs_stats.avail != 0 || myfs_stats.total != 0)
1159 Widget *w = WIDGET (panel);
1160 char buffer1[6], buffer2[6], tmp[BUF_SMALL];
1162 size_trunc_len (buffer1, sizeof (buffer1) - 1, myfs_stats.avail, 1,
1163 panels_options.kilobyte_si);
1164 size_trunc_len (buffer2, sizeof (buffer2) - 1, myfs_stats.total, 1,
1165 panels_options.kilobyte_si);
1166 g_snprintf (tmp, sizeof (tmp), " %s/%s (%d%%) ", buffer1, buffer2,
1167 myfs_stats.total == 0 ? 0 :
1168 (int) (100 * (long double) myfs_stats.avail / myfs_stats.total));
1169 widget_move (w, w->lines - 1, w->cols - 2 - (int) strlen (tmp));
1170 tty_setcolor (NORMAL_COLOR);
1171 tty_print_string (tmp);
1175 /* --------------------------------------------------------------------------------------------- */
1177 * Prepare path string for showing in panel's header.
1178 * Passwords will removed, also home dir will replaced by ~
1180 * @param panel WPanel object
1182 * @return newly allocated string.
1185 static char *
1186 panel_correct_path_to_show (const WPanel * panel)
1188 vfs_path_t *last_vpath;
1189 const vfs_path_element_t *path_element;
1190 char *return_path;
1191 int elements_count;
1193 elements_count = vfs_path_elements_count (panel->cwd_vpath);
1195 /* get last path element */
1196 path_element = vfs_path_element_clone (vfs_path_get_by_index (panel->cwd_vpath, -1));
1198 if (elements_count > 1 && (strcmp (path_element->class->name, "cpiofs") == 0 ||
1199 strcmp (path_element->class->name, "extfs") == 0 ||
1200 strcmp (path_element->class->name, "tarfs") == 0))
1202 const char *archive_name;
1203 const vfs_path_element_t *prev_path_element;
1205 /* get previous path element for catching archive name */
1206 prev_path_element = vfs_path_get_by_index (panel->cwd_vpath, -2);
1207 archive_name = strrchr (prev_path_element->path, PATH_SEP);
1208 if (archive_name != NULL)
1209 last_vpath = vfs_path_from_str_flags (archive_name + 1, VPF_NO_CANON);
1210 else
1212 last_vpath = vfs_path_from_str_flags (prev_path_element->path, VPF_NO_CANON);
1213 last_vpath->relative = TRUE;
1216 else
1218 last_vpath = vfs_path_new ();
1219 last_vpath->relative = TRUE;
1222 vfs_path_add_element (last_vpath, path_element);
1223 return_path =
1224 vfs_path_to_str_flags (last_vpath, 0,
1225 VPF_STRIP_HOME | VPF_STRIP_PASSWORD | VPF_HIDE_CHARSET);
1226 vfs_path_free (last_vpath);
1228 return return_path;
1231 /* --------------------------------------------------------------------------------------------- */
1233 * Get Current path element encoding
1235 * @param panel WPanel object
1237 * @return newly allocated string or NULL if path charset is same as system charset
1240 #ifdef HAVE_CHARSET
1241 static char *
1242 panel_get_encoding_info_str (const WPanel * panel)
1244 char *ret_str = NULL;
1245 const vfs_path_element_t *path_element;
1247 path_element = vfs_path_get_by_index (panel->cwd_vpath, -1);
1248 if (path_element->encoding != NULL)
1249 ret_str = g_strdup_printf ("[%s]", path_element->encoding);
1251 return ret_str;
1253 #endif
1255 /* --------------------------------------------------------------------------------------------- */
1257 static void
1258 show_dir (const WPanel * panel)
1260 Widget *w = WIDGET (panel);
1262 gchar *tmp;
1264 set_colors (panel);
1265 tty_draw_box (w->y, w->x, w->lines, w->cols, FALSE);
1267 if (panels_options.show_mini_info)
1269 int y;
1271 y = panel_lines (panel) + 2;
1273 widget_move (w, y, 0);
1274 tty_print_alt_char (ACS_LTEE, FALSE);
1275 widget_move (w, y, w->cols - 1);
1276 tty_print_alt_char (ACS_RTEE, FALSE);
1279 widget_move (w, 0, 1);
1280 tty_print_string (panel_history_prev_item_sign);
1282 tmp = panels_options.show_dot_files ? panel_hiddenfiles_sign_show : panel_hiddenfiles_sign_hide;
1283 tmp = g_strdup_printf ("%s[%s]%s", tmp, panel_history_show_list_sign,
1284 panel_history_next_item_sign);
1286 widget_move (w, 0, w->cols - 6);
1287 tty_print_string (tmp);
1289 g_free (tmp);
1291 widget_move (w, 0, 3);
1293 if (panel->is_panelized)
1294 tty_printf (" %s ", _("Panelize"));
1295 #ifdef HAVE_CHARSET
1296 else
1298 tmp = panel_get_encoding_info_str (panel);
1299 if (tmp != NULL)
1301 tty_printf ("%s", tmp);
1302 widget_move (w, 0, 3 + strlen (tmp));
1303 g_free (tmp);
1306 #endif
1308 if (panel->active)
1309 tty_setcolor (REVERSE_COLOR);
1311 tmp = panel_correct_path_to_show (panel);
1312 tty_printf (" %s ", str_term_trim (tmp, min (max (w->cols - 12, 0), w->cols)));
1313 g_free (tmp);
1315 if (!panels_options.show_mini_info)
1317 if (panel->marked == 0)
1319 /* Show size of curret file in the bottom of panel */
1320 if (S_ISREG (panel->dir.list[panel->selected].st.st_mode))
1322 char buffer[BUF_SMALL];
1324 g_snprintf (buffer, sizeof (buffer), " %s ",
1325 size_trunc_sep (panel->dir.list[panel->selected].st.st_size,
1326 panels_options.kilobyte_si));
1327 tty_setcolor (NORMAL_COLOR);
1328 widget_move (w, w->lines - 1, 4);
1329 tty_print_string (buffer);
1332 else
1334 /* Show total size of marked files
1335 * In the bottom of panel, display size only. */
1336 display_total_marked_size (panel, w->lines - 1, 2, TRUE);
1340 show_free_space (panel);
1342 if (panel->active)
1343 tty_set_normal_attrs ();
1346 /* --------------------------------------------------------------------------------------------- */
1348 static void
1349 adjust_top_file (WPanel * panel)
1351 int items;
1353 items = panel_items (panel);
1355 if (panel->dir.len <= items)
1357 /* If all files fit, show them all. */
1358 panel->top_file = 0;
1360 else
1362 int i;
1364 /* top_file has to be in the range [selected-items+1, selected] so that
1365 the selected file is visible.
1366 top_file should be in the range [0, count-items] so that there's
1367 no empty space wasted.
1368 Within these ranges, adjust it by as little as possible. */
1370 if (panel->top_file < 0)
1371 panel->top_file = 0;
1373 i = panel->selected - items + 1;
1374 if (panel->top_file < i)
1375 panel->top_file = i;
1377 i = panel->dir.len - items;
1378 if (panel->top_file > i)
1379 panel->top_file = i;
1381 if (panel->top_file > panel->selected)
1382 panel->top_file = panel->selected;
1386 /* --------------------------------------------------------------------------------------------- */
1387 /** add "#enc:encodning" to end of path */
1388 /* if path end width a previous #enc:, only encoding is changed no additional
1389 * #enc: is appended
1390 * retun new string
1393 static char *
1394 panel_save_name (WPanel * panel)
1396 /* If the program is shuting down */
1397 if ((mc_global.midnight_shutdown && auto_save_setup) || saving_setup)
1398 return g_strdup (panel->panel_name);
1400 return g_strconcat ("Temporal:", panel->panel_name, (char *) NULL);
1403 /* --------------------------------------------------------------------------------------------- */
1405 static void
1406 directory_history_add (WPanel * panel, const vfs_path_t * vpath)
1408 char *tmp;
1410 tmp = vfs_path_to_str_flags (vpath, 0, VPF_STRIP_PASSWORD);
1411 panel->dir_history = list_append_unique (panel->dir_history, tmp);
1412 panel->dir_history_current = panel->dir_history;
1415 /* --------------------------------------------------------------------------------------------- */
1417 /* "history_load" event handler */
1418 static gboolean
1419 panel_load_history (const gchar * event_group_name, const gchar * event_name,
1420 gpointer init_data, gpointer data)
1422 WPanel *p = PANEL (init_data);
1423 ev_history_load_save_t *ev = (ev_history_load_save_t *) data;
1425 (void) event_group_name;
1426 (void) event_name;
1428 if (ev->receiver == NULL || ev->receiver == WIDGET (p))
1430 if (ev->cfg != NULL)
1431 p->dir_history = history_load (ev->cfg, p->hist_name);
1432 else
1433 p->dir_history = history_get (p->hist_name);
1435 directory_history_add (p, p->cwd_vpath);
1438 return TRUE;
1441 /* --------------------------------------------------------------------------------------------- */
1443 /* "history_save" event handler */
1444 static gboolean
1445 panel_save_history (const gchar * event_group_name, const gchar * event_name,
1446 gpointer init_data, gpointer data)
1448 WPanel *p = PANEL (init_data);
1450 (void) event_group_name;
1451 (void) event_name;
1453 if (p->dir_history != NULL)
1455 ev_history_load_save_t *ev = (ev_history_load_save_t *) data;
1457 history_save (ev->cfg, p->hist_name, p->dir_history);
1460 return TRUE;
1463 /* --------------------------------------------------------------------------------------------- */
1465 static void
1466 panel_destroy (WPanel * p)
1468 size_t i;
1470 if (panels_options.auto_save_setup)
1472 char *name;
1474 name = panel_save_name (p);
1475 panel_save_setup (p, name);
1476 g_free (name);
1479 panel_clean_dir (p);
1481 /* clean history */
1482 if (p->dir_history != NULL)
1484 /* directory history is already saved before this moment */
1485 p->dir_history = g_list_first (p->dir_history);
1486 g_list_free_full (p->dir_history, g_free);
1488 g_free (p->hist_name);
1490 delete_format (p->format);
1491 delete_format (p->status_format);
1493 g_free (p->user_format);
1494 for (i = 0; i < LIST_TYPES; i++)
1495 g_free (p->user_status_format[i]);
1497 g_free (p->dir.list);
1498 g_free (p->panel_name);
1500 vfs_path_free (p->lwd_vpath);
1501 vfs_path_free (p->cwd_vpath);
1504 /* --------------------------------------------------------------------------------------------- */
1506 static inline void
1507 panel_format_modified (WPanel * panel)
1509 panel->format_modified = 1;
1512 /* --------------------------------------------------------------------------------------------- */
1514 static void
1515 panel_paint_sort_info (const WPanel * panel)
1517 if (*panel->sort_field->hotkey != '\0')
1519 const char *sort_sign =
1520 panel->sort_info.reverse ? panel_sort_up_sign : panel_sort_down_sign;
1521 char *str;
1523 str = g_strdup_printf ("%s%s", sort_sign, Q_ (panel->sort_field->hotkey));
1524 widget_move (panel, 1, 1);
1525 tty_print_string (str);
1526 g_free (str);
1530 /* --------------------------------------------------------------------------------------------- */
1532 static const char *
1533 panel_get_title_without_hotkey (const char *title)
1535 static char translated_title[BUF_TINY];
1537 if (title == NULL || title[0] == '\0')
1538 translated_title[0] = '\0';
1539 else
1541 char *hkey;
1543 g_snprintf (translated_title, sizeof (translated_title), "%s", _(title));
1545 hkey = strchr (translated_title, '&');
1546 if (hkey != NULL && hkey[1] != '\0')
1547 memmove (hkey, hkey + 1, strlen (hkey));
1550 return translated_title;
1553 /* --------------------------------------------------------------------------------------------- */
1555 static void
1556 panel_print_header (const WPanel * panel)
1558 Widget *w = WIDGET (panel);
1560 int y, x;
1561 int i;
1562 GString *format_txt;
1564 widget_move (w, 1, 1);
1565 tty_getyx (&y, &x);
1566 tty_setcolor (NORMAL_COLOR);
1567 tty_draw_hline (y, x, ' ', w->cols - 2);
1569 format_txt = g_string_new ("");
1571 for (i = 0; i < panel->list_cols; i++)
1573 format_e *format;
1575 for (format = panel->format; format != NULL; format = format->next)
1577 if (format->string_fn != NULL)
1579 g_string_set_size (format_txt, 0);
1581 if (panel->list_type == list_long
1582 && strcmp (format->id, panel->sort_field->id) == 0)
1583 g_string_append (format_txt,
1584 panel->sort_info.reverse
1585 ? panel_sort_up_sign : panel_sort_down_sign);
1587 g_string_append (format_txt, format->title);
1589 if (panel->filter != NULL && *panel->filter != '\0'
1590 && strcmp (format->id, "name") == 0)
1592 g_string_append (format_txt, " [");
1593 g_string_append (format_txt, panel->filter);
1594 g_string_append (format_txt, "]");
1597 tty_setcolor (HEADER_COLOR);
1598 tty_print_string (str_fit_to_term (format_txt->str, format->field_len,
1599 J_CENTER_LEFT));
1601 else
1603 tty_setcolor (NORMAL_COLOR);
1604 tty_print_one_vline (TRUE);
1608 if (i < panel->list_cols - 1)
1610 tty_setcolor (NORMAL_COLOR);
1611 tty_print_one_vline (TRUE);
1615 g_string_free (format_txt, TRUE);
1617 if (panel->list_type != list_long)
1618 panel_paint_sort_info (panel);
1621 /* --------------------------------------------------------------------------------------------- */
1623 static const char *
1624 parse_panel_size (WPanel * panel, const char *format, gboolean isstatus)
1626 panel_display_t frame = frame_half;
1627 format = skip_separators (format);
1629 if (strncmp (format, "full", 4) == 0)
1631 frame = frame_full;
1632 format += 4;
1634 else if (strncmp (format, "half", 4) == 0)
1636 frame = frame_half;
1637 format += 4;
1640 if (!isstatus)
1642 panel->frame_size = frame;
1643 panel->list_cols = 1;
1646 /* Now, the optional column specifier */
1647 format = skip_separators (format);
1649 if (g_ascii_isdigit (*format))
1651 if (!isstatus && panel->list_type == list_brief)
1653 panel->brief_cols = g_ascii_digit_value (*format);
1654 if (panel->brief_cols < 1)
1655 panel->brief_cols = 1;
1657 panel->list_cols = panel->brief_cols;
1660 format++;
1663 if (!isstatus)
1664 panel_update_cols (WIDGET (panel), panel->frame_size);
1666 return skip_separators (format);
1669 /* Format is:
1671 all := panel_format? format
1672 panel_format := [full|half] [1-9]
1673 format := one_format_e
1674 | format , one_format_e
1676 one_format_e := just format.id [opt_size]
1677 just := [<=>]
1678 opt_size := : size [opt_expand]
1679 size := [0-9]+
1680 opt_expand := +
1684 /* --------------------------------------------------------------------------------------------- */
1686 static format_e *
1687 parse_display_format (WPanel * panel, const char *format, char **error, gboolean isstatus,
1688 int *res_total_cols)
1690 format_e *darr, *old = NULL, *home = NULL; /* The formats we return */
1691 int total_cols = 0; /* Used columns by the format */
1692 size_t i;
1694 static size_t i18n_timelength = 0; /* flag: check ?Time length at startup */
1696 *error = NULL;
1698 if (i18n_timelength == 0)
1700 i18n_timelength = i18n_checktimelength (); /* Musn't be 0 */
1702 for (i = 0; panel_fields[i].id != NULL; i++)
1703 if (strcmp ("time", panel_fields[i].id + 1) == 0)
1704 panel_fields[i].min_size = i18n_timelength;
1708 * This makes sure that the panel and mini status full/half mode
1709 * setting is equal
1711 format = parse_panel_size (panel, format, isstatus);
1713 while (*format != '\0')
1714 { /* format can be an empty string */
1715 align_crt_t justify; /* Which mode. */
1716 gboolean set_justify = TRUE; /* flag: set justification mode? */
1717 gboolean found = FALSE;
1719 darr = g_new0 (format_e, 1);
1721 /* I'm so ugly, don't look at me :-) */
1722 if (home == NULL)
1723 home = old = darr;
1725 old->next = darr;
1726 darr->next = NULL;
1727 old = darr;
1729 format = skip_separators (format);
1731 switch (*format)
1733 case '<':
1734 justify = J_LEFT;
1735 format = skip_separators (format + 1);
1736 break;
1737 case '=':
1738 justify = J_CENTER;
1739 format = skip_separators (format + 1);
1740 break;
1741 case '>':
1742 justify = J_RIGHT;
1743 format = skip_separators (format + 1);
1744 break;
1745 default:
1746 justify = J_LEFT;
1747 set_justify = FALSE;
1748 break;
1751 for (i = 0; panel_fields[i].id != NULL; i++)
1753 size_t klen;
1755 klen = strlen (panel_fields[i].id);
1757 if (strncmp (format, panel_fields[i].id, klen) != 0)
1758 continue;
1760 format += klen;
1762 darr->requested_field_len = panel_fields[i].min_size;
1763 darr->string_fn = panel_fields[i].string_fn;
1764 darr->title = g_strdup (panel_get_title_without_hotkey (panel_fields[i].title_hotkey));
1766 darr->id = panel_fields[i].id;
1767 darr->expand = panel_fields[i].expands;
1768 darr->just_mode = panel_fields[i].default_just;
1770 if (set_justify)
1772 if (IS_FIT (darr->just_mode))
1773 darr->just_mode = MAKE_FIT (justify);
1774 else
1775 darr->just_mode = justify;
1777 found = TRUE;
1779 format = skip_separators (format);
1781 /* If we have a size specifier */
1782 if (*format == ':')
1784 int req_length;
1786 /* If the size was specified, we don't want
1787 * auto-expansion by default
1789 darr->expand = FALSE;
1790 format++;
1791 req_length = atoi (format);
1792 darr->requested_field_len = req_length;
1794 format = skip_numbers (format);
1796 /* Now, if they insist on expansion */
1797 if (*format == '+')
1799 darr->expand = TRUE;
1800 format++;
1805 break;
1808 if (!found)
1810 size_t pos;
1811 char *tmp_format;
1813 pos = strlen (format);
1814 if (pos > 8)
1815 pos = 8;
1817 tmp_format = g_strndup (format, pos);
1818 delete_format (home);
1819 *error =
1820 g_strconcat (_("Unknown tag on display format:"), " ", tmp_format, (char *) NULL);
1821 g_free (tmp_format);
1823 return NULL;
1826 total_cols += darr->requested_field_len;
1829 *res_total_cols = total_cols;
1830 return home;
1833 /* --------------------------------------------------------------------------------------------- */
1835 static format_e *
1836 use_display_format (WPanel * panel, const char *format, char **error, gboolean isstatus)
1838 #define MAX_EXPAND 4
1839 int expand_top = 0; /* Max used element in expand */
1840 int usable_columns; /* Usable columns in the panel */
1841 int total_cols = 0;
1842 format_e *darr, *home;
1844 if (format == NULL)
1845 format = DEFAULT_USER_FORMAT;
1847 home = parse_display_format (panel, format, error, isstatus, &total_cols);
1849 if (*error != NULL)
1850 return NULL;
1852 panel->dirty = 1;
1854 usable_columns = WIDGET (panel)->cols - 2;
1855 /* Status needn't to be split */
1856 if (!isstatus)
1858 usable_columns /= panel->list_cols;
1859 if (panel->list_cols > 1)
1860 usable_columns--;
1863 /* Look for the expandable fields and set field_len based on the requested field len */
1864 for (darr = home; darr != NULL && expand_top < MAX_EXPAND; darr = darr->next)
1866 darr->field_len = darr->requested_field_len;
1867 if (darr->expand)
1868 expand_top++;
1871 /* If we used more columns than the available columns, adjust that */
1872 if (total_cols > usable_columns)
1874 int dif;
1875 int pdif = 0;
1877 dif = total_cols - usable_columns;
1879 while (dif != 0 && pdif != dif)
1881 pdif = dif;
1883 for (darr = home; darr; darr = darr->next)
1884 if (dif != 0 && darr->field_len != 1)
1886 darr->field_len--;
1887 dif--;
1891 total_cols = usable_columns; /* give up, the rest should be truncated */
1894 /* Expand the available space */
1895 if (usable_columns > total_cols && expand_top != 0)
1897 int i;
1898 int spaces = (usable_columns - total_cols) / expand_top;
1900 for (i = 0, darr = home; darr && (i < expand_top); darr = darr->next)
1901 if (darr->expand)
1903 darr->field_len += spaces;
1904 if (i == 0)
1905 darr->field_len += (usable_columns - total_cols) % expand_top;
1906 i++;
1909 return home;
1912 /* --------------------------------------------------------------------------------------------- */
1913 /** Given the panel->view_type returns the format string to be parsed */
1915 static const char *
1916 panel_format (WPanel * panel)
1919 switch (panel->list_type)
1921 case list_long:
1922 return "full perm space nlink space owner space group space size space mtime space name";
1924 case list_brief:
1926 static char format[BUF_TINY];
1927 int brief_cols = panel->brief_cols;
1929 if (brief_cols < 1)
1930 brief_cols = 2;
1932 if (brief_cols > 9)
1933 brief_cols = 9;
1935 g_snprintf (format, sizeof (format), "half %d type name", brief_cols);
1936 return format;
1939 case list_user:
1940 return panel->user_format;
1942 default:
1943 case list_full:
1944 return "half type name | size | mtime";
1948 /* --------------------------------------------------------------------------------------------- */
1950 static const char *
1951 mini_status_format (WPanel * panel)
1953 if (panel->user_mini_status)
1954 return panel->user_status_format[panel->list_type];
1956 switch (panel->list_type)
1958 case list_long:
1959 return "full perm space nlink space owner space group space size space mtime space name";
1961 case list_brief:
1962 return "half type name space bsize space perm space";
1964 case list_full:
1965 return "half type name";
1967 default:
1968 case list_user:
1969 return panel->user_format;
1973 /* */
1974 /* Panel operation commands */
1975 /* */
1977 /* --------------------------------------------------------------------------------------------- */
1978 /** Used to emulate Lynx's entering leaving a directory with the arrow keys */
1980 static cb_ret_t
1981 maybe_cd (gboolean move_up_dir)
1983 if (panels_options.navigate_with_arrows && (cmdline->buffer[0] == '\0'))
1985 if (move_up_dir)
1987 vfs_path_t *up_dir;
1989 up_dir = vfs_path_from_str ("..");
1990 do_cd (up_dir, cd_exact);
1991 vfs_path_free (up_dir);
1992 return MSG_HANDLED;
1995 if (S_ISDIR (selection (current_panel)->st.st_mode)
1996 || link_isdir (selection (current_panel)))
1998 vfs_path_t *vpath;
2000 vpath = vfs_path_from_str (selection (current_panel)->fname);
2001 do_cd (vpath, cd_exact);
2002 vfs_path_free (vpath);
2003 return MSG_HANDLED;
2007 return MSG_NOT_HANDLED;
2010 /* --------------------------------------------------------------------------------------------- */
2012 /* if command line is empty then do 'cd ..' */
2013 static cb_ret_t
2014 force_maybe_cd (void)
2016 if (cmdline->buffer[0] == '\0')
2018 vfs_path_t *up_dir = vfs_path_from_str ("..");
2019 do_cd (up_dir, cd_exact);
2020 vfs_path_free (up_dir);
2021 return MSG_HANDLED;
2024 return MSG_NOT_HANDLED;
2027 /* --------------------------------------------------------------------------------------------- */
2029 static inline void
2030 unselect_item (WPanel * panel)
2032 repaint_file (panel, panel->selected, TRUE, 2 * selection (panel)->f.marked, FALSE);
2035 /* --------------------------------------------------------------------------------------------- */
2036 /** Select/unselect all the files like a current file by extension */
2038 static void
2039 panel_select_ext_cmd (void)
2041 gboolean do_select = !selection (current_panel)->f.marked;
2042 char *filename = selection (current_panel)->fname;
2043 char *reg_exp, *cur_file_ext;
2044 mc_search_t *search;
2045 int i;
2047 if (filename == NULL)
2048 return;
2050 cur_file_ext = strutils_regex_escape (extension (filename));
2052 if (cur_file_ext[0] != '\0')
2053 reg_exp = g_strconcat ("^.*\\.", cur_file_ext, "$", (char *) NULL);
2054 else
2055 reg_exp = g_strdup ("^[^\\.]+$");
2057 g_free (cur_file_ext);
2059 search = mc_search_new (reg_exp, -1, NULL);
2060 search->search_type = MC_SEARCH_T_REGEX;
2061 search->is_case_sensitive = FALSE;
2063 for (i = 0; i < current_panel->dir.len; i++)
2065 file_entry_t *file_entry = &current_panel->dir.list[i];
2067 if (DIR_IS_DOTDOT (file_entry->fname) || S_ISDIR (file_entry->st.st_mode))
2068 continue;
2070 if (!mc_search_run (search, file_entry->fname, 0, file_entry->fnamelen, NULL))
2071 continue;
2073 do_file_mark (current_panel, i, do_select);
2076 mc_search_free (search);
2077 g_free (reg_exp);
2081 /* --------------------------------------------------------------------------------------------- */
2083 static void
2084 move_down (WPanel * panel)
2086 int items;
2088 if (panel->selected + 1 == panel->dir.len)
2089 return;
2091 unselect_item (panel);
2092 panel->selected++;
2094 items = panel_items (panel);
2096 if (panels_options.scroll_pages && panel->selected - panel->top_file == items)
2098 /* Scroll window half screen */
2099 panel->top_file += items / 2;
2100 if (panel->top_file > panel->dir.len - items)
2101 panel->top_file = panel->dir.len - items;
2102 paint_dir (panel);
2104 select_item (panel);
2107 /* --------------------------------------------------------------------------------------------- */
2109 static void
2110 move_up (WPanel * panel)
2112 if (panel->selected == 0)
2113 return;
2115 unselect_item (panel);
2116 panel->selected--;
2118 if (panels_options.scroll_pages && panel->selected < panel->top_file)
2120 /* Scroll window half screen */
2121 panel->top_file -= panel_items (panel) / 2;
2122 if (panel->top_file < 0)
2123 panel->top_file = 0;
2124 paint_dir (panel);
2126 select_item (panel);
2129 /* --------------------------------------------------------------------------------------------- */
2130 /** Changes the selection by lines (may be negative) */
2132 static void
2133 move_selection (WPanel * panel, int lines)
2135 int new_pos;
2136 gboolean adjust = FALSE;
2138 new_pos = panel->selected + lines;
2139 if (new_pos >= panel->dir.len)
2140 new_pos = panel->dir.len - 1;
2142 if (new_pos < 0)
2143 new_pos = 0;
2145 unselect_item (panel);
2146 panel->selected = new_pos;
2148 if (panel->selected - panel->top_file >= panel_items (panel))
2150 panel->top_file += lines;
2151 adjust = TRUE;
2154 if (panel->selected - panel->top_file < 0)
2156 panel->top_file += lines;
2157 adjust = TRUE;
2160 if (adjust)
2162 if (panel->top_file > panel->selected)
2163 panel->top_file = panel->selected;
2164 if (panel->top_file < 0)
2165 panel->top_file = 0;
2166 paint_dir (panel);
2168 select_item (panel);
2171 /* --------------------------------------------------------------------------------------------- */
2173 static cb_ret_t
2174 move_left (WPanel * panel)
2176 if (panel->list_cols > 1)
2178 move_selection (panel, -panel_lines (panel));
2179 return MSG_HANDLED;
2182 return maybe_cd (TRUE); /* cd .. */
2185 /* --------------------------------------------------------------------------------------------- */
2187 static cb_ret_t
2188 move_right (WPanel * panel)
2190 if (panel->list_cols > 1)
2192 move_selection (panel, panel_lines (panel));
2193 return MSG_HANDLED;
2196 return maybe_cd (FALSE); /* cd (selection) */
2199 /* --------------------------------------------------------------------------------------------- */
2201 static void
2202 prev_page (WPanel * panel)
2204 int items;
2206 if (!panel->selected && !panel->top_file)
2207 return;
2209 unselect_item (panel);
2210 items = panel_items (panel);
2211 if (panel->top_file < items)
2212 items = panel->top_file;
2213 if (items == 0)
2214 panel->selected = 0;
2215 else
2216 panel->selected -= items;
2217 panel->top_file -= items;
2219 select_item (panel);
2220 paint_dir (panel);
2223 /* --------------------------------------------------------------------------------------------- */
2225 static void
2226 goto_parent_dir (WPanel * panel)
2228 if (!panel->is_panelized)
2230 vfs_path_t *up_dir;
2232 up_dir = vfs_path_from_str ("..");
2233 do_cd (up_dir, cd_exact);
2234 vfs_path_free (up_dir);
2236 else
2238 char *fname = panel->dir.list[panel->selected].fname;
2239 const char *bname;
2240 vfs_path_t *dname_vpath;
2242 if (g_path_is_absolute (fname))
2243 fname = g_strdup (fname);
2244 else
2245 fname =
2246 mc_build_filename (vfs_path_as_str (panelized_panel.root_vpath), fname,
2247 (char *) NULL);
2249 bname = x_basename (fname);
2251 if (bname == fname)
2252 dname_vpath = vfs_path_from_str (".");
2253 else
2255 char *dname;
2257 dname = g_strndup (fname, bname - fname);
2258 dname_vpath = vfs_path_from_str (dname);
2259 g_free (dname);
2262 do_cd (dname_vpath, cd_exact);
2263 try_to_select (panel, bname);
2265 vfs_path_free (dname_vpath);
2266 g_free (fname);
2270 /* --------------------------------------------------------------------------------------------- */
2272 static void
2273 next_page (WPanel * panel)
2275 int items;
2277 if (panel->selected == panel->dir.len - 1)
2278 return;
2280 unselect_item (panel);
2281 items = panel_items (panel);
2282 if (panel->top_file > panel->dir.len - 2 * items)
2283 items = panel->dir.len - items - panel->top_file;
2284 if (panel->top_file + items < 0)
2285 items = -panel->top_file;
2286 if (items == 0)
2287 panel->selected = panel->dir.len - 1;
2288 else
2289 panel->selected += items;
2290 panel->top_file += items;
2292 select_item (panel);
2293 paint_dir (panel);
2296 /* --------------------------------------------------------------------------------------------- */
2298 static void
2299 goto_child_dir (WPanel * panel)
2301 if ((S_ISDIR (selection (panel)->st.st_mode) || link_isdir (selection (panel))))
2303 vfs_path_t *vpath;
2305 vpath = vfs_path_from_str (selection (panel)->fname);
2306 do_cd (vpath, cd_exact);
2307 vfs_path_free (vpath);
2311 /* --------------------------------------------------------------------------------------------- */
2313 static void
2314 goto_top_file (WPanel * panel)
2316 unselect_item (panel);
2317 panel->selected = panel->top_file;
2318 select_item (panel);
2321 /* --------------------------------------------------------------------------------------------- */
2323 static void
2324 goto_middle_file (WPanel * panel)
2326 unselect_item (panel);
2327 panel->selected = panel->top_file + panel_items (panel) / 2;
2328 select_item (panel);
2331 /* --------------------------------------------------------------------------------------------- */
2333 static void
2334 goto_bottom_file (WPanel * panel)
2336 unselect_item (panel);
2337 panel->selected = panel->top_file + panel_items (panel) - 1;
2338 select_item (panel);
2341 /* --------------------------------------------------------------------------------------------- */
2343 static void
2344 move_home (WPanel * panel)
2346 if (panel->selected == 0)
2347 return;
2349 unselect_item (panel);
2351 if (panels_options.torben_fj_mode)
2353 int middle_pos = panel->top_file + panel_items (panel) / 2;
2355 if (panel->selected > middle_pos)
2357 goto_middle_file (panel);
2358 return;
2360 if (panel->selected != panel->top_file)
2362 goto_top_file (panel);
2363 return;
2367 panel->top_file = 0;
2368 panel->selected = 0;
2370 paint_dir (panel);
2371 select_item (panel);
2374 /* --------------------------------------------------------------------------------------------- */
2376 static void
2377 move_end (WPanel * panel)
2379 if (panel->selected == panel->dir.len - 1)
2380 return;
2382 unselect_item (panel);
2384 if (panels_options.torben_fj_mode)
2386 int items, middle_pos;
2388 items = panel_items (panel);
2389 middle_pos = panel->top_file + items / 2;
2391 if (panel->selected < middle_pos)
2393 goto_middle_file (panel);
2394 return;
2396 if (panel->selected != panel->top_file + items - 1)
2398 goto_bottom_file (panel);
2399 return;
2403 panel->selected = panel->dir.len - 1;
2404 paint_dir (panel);
2405 select_item (panel);
2408 /* --------------------------------------------------------------------------------------------- */
2410 static void
2411 do_mark_file (WPanel * panel, mark_act_t do_move)
2413 do_file_mark (panel, panel->selected, selection (panel)->f.marked ? 0 : 1);
2414 if ((panels_options.mark_moves_down && do_move == MARK_DOWN) || do_move == MARK_FORCE_DOWN)
2415 move_down (panel);
2416 else if (do_move == MARK_FORCE_UP)
2417 move_up (panel);
2420 /* --------------------------------------------------------------------------------------------- */
2422 static inline void
2423 mark_file (WPanel * panel)
2425 do_mark_file (panel, MARK_DOWN);
2428 /* --------------------------------------------------------------------------------------------- */
2430 static inline void
2431 mark_file_up (WPanel * panel)
2433 do_mark_file (panel, MARK_FORCE_UP);
2436 /* --------------------------------------------------------------------------------------------- */
2438 static inline void
2439 mark_file_down (WPanel * panel)
2441 do_mark_file (panel, MARK_FORCE_DOWN);
2444 /* --------------------------------------------------------------------------------------------- */
2446 static void
2447 mark_file_right (WPanel * panel)
2449 int lines;
2451 if (state_mark < 0)
2452 state_mark = selection (panel)->f.marked ? 0 : 1;
2454 lines = panel_lines (panel);
2455 lines = min (lines, panel->dir.len - panel->selected - 1);
2456 for (; lines != 0; lines--)
2458 do_file_mark (panel, panel->selected, state_mark);
2459 move_down (panel);
2461 do_file_mark (panel, panel->selected, state_mark);
2464 /* --------------------------------------------------------------------------------------------- */
2466 static void
2467 mark_file_left (WPanel * panel)
2469 int lines;
2471 if (state_mark < 0)
2472 state_mark = selection (panel)->f.marked ? 0 : 1;
2474 lines = panel_lines (panel);
2475 lines = min (lines, panel->selected + 1);
2476 for (; lines != 0; lines--)
2478 do_file_mark (panel, panel->selected, state_mark);
2479 move_up (panel);
2481 do_file_mark (panel, panel->selected, state_mark);
2484 /* --------------------------------------------------------------------------------------------- */
2486 static void
2487 panel_select_unselect_files (WPanel * panel, const char *title, const char *history_name,
2488 gboolean do_select)
2490 int files_only = (panels_options.select_flags & SELECT_FILES_ONLY) != 0;
2491 int case_sens = (panels_options.select_flags & SELECT_MATCH_CASE) != 0;
2492 int shell_patterns = (panels_options.select_flags & SELECT_SHELL_PATTERNS) != 0;
2494 char *reg_exp;
2495 mc_search_t *search;
2496 int i;
2498 quick_widget_t quick_widgets[] = {
2499 /* *INDENT-OFF* */
2500 QUICK_INPUT (INPUT_LAST_TEXT, history_name, &reg_exp, NULL,
2501 FALSE, FALSE, INPUT_COMPLETE_FILENAMES),
2502 QUICK_START_COLUMNS,
2503 QUICK_CHECKBOX (N_("&Files only"), &files_only, NULL),
2504 QUICK_CHECKBOX (N_("&Using shell patterns"), &shell_patterns, NULL),
2505 QUICK_NEXT_COLUMN,
2506 QUICK_CHECKBOX (N_("&Case sensitive"), &case_sens, NULL),
2507 QUICK_STOP_COLUMNS,
2508 QUICK_END
2509 /* *INDENT-ON* */
2512 quick_dialog_t qdlg = {
2513 -1, -1, 50,
2514 title, "[Select/Unselect Files]",
2515 quick_widgets, NULL, NULL
2518 if (quick_dialog (&qdlg) == B_CANCEL)
2519 return;
2521 if (reg_exp == NULL || *reg_exp == '\0')
2523 g_free (reg_exp);
2524 return;
2527 search = mc_search_new (reg_exp, -1, NULL);
2528 search->search_type = (shell_patterns != 0) ? MC_SEARCH_T_GLOB : MC_SEARCH_T_REGEX;
2529 search->is_entire_line = TRUE;
2530 search->is_case_sensitive = case_sens != 0;
2532 for (i = 0; i < panel->dir.len; i++)
2534 if (DIR_IS_DOTDOT (panel->dir.list[i].fname))
2535 continue;
2536 if (S_ISDIR (panel->dir.list[i].st.st_mode) && files_only != 0)
2537 continue;
2539 if (mc_search_run (search, panel->dir.list[i].fname, 0, panel->dir.list[i].fnamelen, NULL))
2540 do_file_mark (panel, i, do_select);
2543 mc_search_free (search);
2544 g_free (reg_exp);
2546 /* result flags */
2547 panels_options.select_flags = 0;
2548 if (case_sens != 0)
2549 panels_options.select_flags |= SELECT_MATCH_CASE;
2550 if (files_only != 0)
2551 panels_options.select_flags |= SELECT_FILES_ONLY;
2552 if (shell_patterns != 0)
2553 panels_options.select_flags |= SELECT_SHELL_PATTERNS;
2556 /* --------------------------------------------------------------------------------------------- */
2558 static void
2559 panel_select_files (WPanel * panel)
2561 panel_select_unselect_files (panel, _("Select"), ":select_cmd: Select ", TRUE);
2564 /* --------------------------------------------------------------------------------------------- */
2566 static void
2567 panel_unselect_files (WPanel * panel)
2569 panel_select_unselect_files (panel, _("Unselect"), ":unselect_cmd: Unselect ", FALSE);
2572 /* --------------------------------------------------------------------------------------------- */
2574 static void
2575 panel_select_invert_files (WPanel * panel)
2577 int i;
2579 for (i = 0; i < panel->dir.len; i++)
2581 file_entry_t *file = &panel->dir.list[i];
2583 if (!panels_options.reverse_files_only || !S_ISDIR (file->st.st_mode))
2584 do_file_mark (panel, i, !file->f.marked);
2588 /* --------------------------------------------------------------------------------------------- */
2589 /** Incremental search of a file name in the panel.
2590 * @param panel instance of WPanel structure
2591 * @param c_code key code
2594 static void
2595 do_search (WPanel * panel, int c_code)
2597 size_t l;
2598 int i, sel;
2599 gboolean wrapped = FALSE;
2600 char *act;
2601 mc_search_t *search;
2602 char *reg_exp, *esc_str;
2603 gboolean is_found = FALSE;
2605 l = strlen (panel->search_buffer);
2606 if (c_code == KEY_BACKSPACE)
2608 if (l != 0)
2610 act = panel->search_buffer + l;
2611 str_prev_noncomb_char (&act, panel->search_buffer);
2612 act[0] = '\0';
2614 panel->search_chpoint = 0;
2616 else
2618 if (c_code != 0 && (gsize) panel->search_chpoint < sizeof (panel->search_char))
2620 panel->search_char[panel->search_chpoint] = c_code;
2621 panel->search_chpoint++;
2624 if (panel->search_chpoint > 0)
2626 switch (str_is_valid_char (panel->search_char, panel->search_chpoint))
2628 case -2:
2629 return;
2630 case -1:
2631 panel->search_chpoint = 0;
2632 return;
2633 default:
2634 if (l + panel->search_chpoint < sizeof (panel->search_buffer))
2636 memcpy (panel->search_buffer + l, panel->search_char, panel->search_chpoint);
2637 l += panel->search_chpoint;
2638 *(panel->search_buffer + l) = '\0';
2639 panel->search_chpoint = 0;
2645 reg_exp = g_strdup_printf ("%s*", panel->search_buffer);
2646 esc_str = strutils_escape (reg_exp, -1, ",|\\{}[]", TRUE);
2647 search = mc_search_new (esc_str, -1, NULL);
2648 search->search_type = MC_SEARCH_T_GLOB;
2649 search->is_entire_line = TRUE;
2651 switch (panels_options.qsearch_mode)
2653 case QSEARCH_CASE_SENSITIVE:
2654 search->is_case_sensitive = TRUE;
2655 break;
2656 case QSEARCH_CASE_INSENSITIVE:
2657 search->is_case_sensitive = FALSE;
2658 break;
2659 default:
2660 search->is_case_sensitive = panel->sort_info.case_sensitive;
2661 break;
2664 sel = panel->selected;
2666 for (i = panel->selected; !wrapped || i != panel->selected; i++)
2668 if (i >= panel->dir.len)
2670 i = 0;
2671 if (wrapped)
2672 break;
2673 wrapped = TRUE;
2675 if (mc_search_run (search, panel->dir.list[i].fname, 0, panel->dir.list[i].fnamelen, NULL))
2677 sel = i;
2678 is_found = TRUE;
2679 break;
2682 if (is_found)
2684 unselect_item (panel);
2685 panel->selected = sel;
2686 select_item (panel);
2687 widget_redraw (WIDGET (panel));
2689 else if (c_code != KEY_BACKSPACE)
2691 act = panel->search_buffer + l;
2692 str_prev_noncomb_char (&act, panel->search_buffer);
2693 act[0] = '\0';
2695 mc_search_free (search);
2696 g_free (reg_exp);
2697 g_free (esc_str);
2700 /* --------------------------------------------------------------------------------------------- */
2701 /** Start new search.
2702 * @param panel instance of WPanel structure
2705 static void
2706 start_search (WPanel * panel)
2708 if (panel->searching)
2710 if (panel->selected + 1 == panel->dir.len)
2711 panel->selected = 0;
2712 else
2713 move_down (panel);
2715 /* in case if there was no search string we need to recall
2716 previous string, with which we ended previous searching */
2717 if (panel->search_buffer[0] == '\0')
2718 g_strlcpy (panel->search_buffer, panel->prev_search_buffer,
2719 sizeof (panel->search_buffer));
2721 do_search (panel, 0);
2723 else
2725 panel->searching = TRUE;
2726 panel->search_buffer[0] = '\0';
2727 panel->search_char[0] = '\0';
2728 panel->search_chpoint = 0;
2729 display_mini_info (panel);
2730 mc_refresh ();
2734 /* --------------------------------------------------------------------------------------------- */
2736 static void
2737 stop_search (WPanel * panel)
2739 panel->searching = FALSE;
2741 /* if user had overrdied search string, we need to store it
2742 to the previous_search_buffer */
2743 if (panel->search_buffer[0] != '\0')
2744 g_strlcpy (panel->prev_search_buffer, panel->search_buffer,
2745 sizeof (panel->prev_search_buffer));
2747 display_mini_info (panel);
2750 /* --------------------------------------------------------------------------------------------- */
2751 /** Return TRUE if the Enter key has been processed, FALSE otherwise */
2753 static gboolean
2754 do_enter_on_file_entry (file_entry_t * fe)
2756 vfs_path_t *full_name_vpath;
2757 gboolean ok;
2760 * Directory or link to directory - change directory.
2761 * Try the same for the entries on which mc_lstat() has failed.
2763 if (S_ISDIR (fe->st.st_mode) || link_isdir (fe) || (fe->st.st_mode == 0))
2765 vfs_path_t *fname_vpath;
2767 fname_vpath = vfs_path_from_str (fe->fname);
2768 if (!do_cd (fname_vpath, cd_exact))
2769 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
2770 vfs_path_free (fname_vpath);
2771 return TRUE;
2774 full_name_vpath = vfs_path_append_new (current_panel->cwd_vpath, fe->fname, NULL);
2776 /* Try associated command */
2777 ok = regex_command (full_name_vpath, "Open") != 0;
2778 vfs_path_free (full_name_vpath);
2779 if (ok)
2780 return TRUE;
2782 /* Check if the file is executable */
2783 full_name_vpath = vfs_path_append_new (current_panel->cwd_vpath, fe->fname, NULL);
2784 ok = (is_exe (fe->st.st_mode) && if_link_is_exe (full_name_vpath, fe));
2785 vfs_path_free (full_name_vpath);
2786 if (!ok)
2787 return FALSE;
2789 if (confirm_execute)
2791 if (query_dialog
2792 (_("The Midnight Commander"),
2793 _("Do you really want to execute?"), D_NORMAL, 2, _("&Yes"), _("&No")) != 0)
2794 return TRUE;
2797 if (!vfs_current_is_local ())
2799 int ret;
2800 vfs_path_t *tmp_vpath;
2802 tmp_vpath = vfs_path_append_new (vfs_get_raw_current_dir (), fe->fname, NULL);
2803 ret = mc_setctl (tmp_vpath, VFS_SETCTL_RUN, NULL);
2804 vfs_path_free (tmp_vpath);
2805 /* We took action only if the dialog was shown or the execution
2806 * was successful */
2807 return confirm_execute || (ret == 0);
2811 char *tmp, *cmd;
2813 tmp = name_quote (fe->fname, FALSE);
2814 cmd = g_strconcat (".", PATH_SEP_STR, tmp, (char *) NULL);
2815 g_free (tmp);
2816 shell_execute (cmd, 0);
2817 g_free (cmd);
2820 #ifdef HAVE_CHARSET
2821 mc_global.source_codepage = default_source_codepage;
2822 #endif
2824 return TRUE;
2827 /* --------------------------------------------------------------------------------------------- */
2829 static inline gboolean
2830 do_enter (WPanel * panel)
2832 return do_enter_on_file_entry (selection (panel));
2835 /* --------------------------------------------------------------------------------------------- */
2837 static void
2838 chdir_other_panel (WPanel * panel)
2840 const file_entry_t *entry = &panel->dir.list[panel->selected];
2842 vfs_path_t *new_dir_vpath;
2843 char *sel_entry = NULL;
2845 if (get_other_type () != view_listing)
2846 set_display_type (get_other_index (), view_listing);
2848 if (S_ISDIR (entry->st.st_mode) || entry->f.link_to_dir)
2849 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, entry->fname, NULL);
2850 else
2852 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, "..", (char *) NULL);
2853 sel_entry = strrchr (vfs_path_get_last_path_str (panel->cwd_vpath), PATH_SEP);
2856 change_panel ();
2857 do_cd (new_dir_vpath, cd_exact);
2858 vfs_path_free (new_dir_vpath);
2860 if (sel_entry)
2861 try_to_select (current_panel, sel_entry);
2862 change_panel ();
2864 move_down (panel);
2867 /* --------------------------------------------------------------------------------------------- */
2869 * Make the current directory of the current panel also the current
2870 * directory of the other panel. Put the other panel to the listing
2871 * mode if needed. If the current panel is panelized, the other panel
2872 * doesn't become panelized.
2875 static void
2876 panel_sync_other (const WPanel * panel)
2878 if (get_other_type () != view_listing)
2879 set_display_type (get_other_index (), view_listing);
2881 do_panel_cd (other_panel, current_panel->cwd_vpath, cd_exact);
2883 /* try to select current filename on the other panel */
2884 if (!panel->is_panelized)
2885 try_to_select (other_panel, selection (panel)->fname);
2888 /* --------------------------------------------------------------------------------------------- */
2890 static void
2891 chdir_to_readlink (WPanel * panel)
2893 vfs_path_t *new_dir_vpath;
2894 char buffer[MC_MAXPATHLEN];
2895 int i;
2896 struct stat st;
2897 vfs_path_t *panel_fname_vpath;
2898 gboolean ok;
2900 if (get_other_type () != view_listing)
2901 return;
2903 if (!S_ISLNK (panel->dir.list[panel->selected].st.st_mode))
2904 return;
2906 i = readlink (selection (panel)->fname, buffer, MC_MAXPATHLEN - 1);
2907 if (i < 0)
2908 return;
2910 panel_fname_vpath = vfs_path_from_str (selection (panel)->fname);
2911 ok = (mc_stat (panel_fname_vpath, &st) >= 0);
2912 vfs_path_free (panel_fname_vpath);
2913 if (!ok)
2914 return;
2916 buffer[i] = 0;
2917 if (!S_ISDIR (st.st_mode))
2919 char *p;
2921 p = strrchr (buffer, PATH_SEP);
2922 if (p && !p[1])
2924 *p = 0;
2925 p = strrchr (buffer, PATH_SEP);
2927 if (!p)
2928 return;
2929 p[1] = 0;
2931 if (IS_PATH_SEP (*buffer))
2932 new_dir_vpath = vfs_path_from_str (buffer);
2933 else
2934 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, buffer, NULL);
2936 change_panel ();
2937 do_cd (new_dir_vpath, cd_exact);
2938 vfs_path_free (new_dir_vpath);
2939 change_panel ();
2941 move_down (panel);
2944 /* --------------------------------------------------------------------------------------------- */
2946 static gsize
2947 panel_get_format_field_count (WPanel * panel)
2949 format_e *format;
2950 gsize lc_index;
2952 for (lc_index = 0, format = panel->format; format != NULL; format = format->next, lc_index++)
2955 return lc_index;
2958 /* --------------------------------------------------------------------------------------------- */
2960 function return 0 if not found and REAL_INDEX+1 if found
2963 static gsize
2964 panel_get_format_field_index_by_name (WPanel * panel, const char *name)
2966 format_e *format;
2967 gsize lc_index;
2969 for (lc_index = 1, format = panel->format;
2970 format != NULL && strcmp (format->title, name) != 0; format = format->next, lc_index++)
2973 if (format == NULL)
2974 lc_index = 0;
2976 return lc_index;
2979 /* --------------------------------------------------------------------------------------------- */
2981 static format_e *
2982 panel_get_format_field_by_index (WPanel * panel, gsize lc_index)
2984 format_e *format;
2986 for (format = panel->format; format != NULL && lc_index != 0; format = format->next, lc_index--)
2989 return format;
2992 /* --------------------------------------------------------------------------------------------- */
2994 static const panel_field_t *
2995 panel_get_sortable_field_by_format (WPanel * panel, gsize lc_index)
2997 const panel_field_t *pfield;
2998 format_e *format;
3000 format = panel_get_format_field_by_index (panel, lc_index);
3001 if (format == NULL)
3002 return NULL;
3004 pfield = panel_get_field_by_title (format->title);
3005 if (pfield == NULL)
3006 return NULL;
3007 if (pfield->sort_routine == NULL)
3008 return NULL;
3009 return pfield;
3012 /* --------------------------------------------------------------------------------------------- */
3014 static void
3015 panel_toggle_sort_order_prev (WPanel * panel)
3017 gsize lc_index, i;
3018 const char *title;
3019 const panel_field_t *pfield = NULL;
3021 title = panel_get_title_without_hotkey (panel->sort_field->title_hotkey);
3022 lc_index = panel_get_format_field_index_by_name (panel, title);
3024 if (lc_index > 1)
3026 /* search for prev sortable column in panel format */
3027 for (i = lc_index - 1;
3028 i != 0 && (pfield = panel_get_sortable_field_by_format (panel, i - 1)) == NULL; i--)
3032 if (pfield == NULL)
3034 /* Sortable field not found. Try to search in each array */
3035 for (i = panel_get_format_field_count (panel);
3036 i != 0 && (pfield = panel_get_sortable_field_by_format (panel, i - 1)) == NULL; i--)
3040 if (pfield != NULL)
3042 panel->sort_field = pfield;
3043 panel_set_sort_order (panel, pfield);
3047 /* --------------------------------------------------------------------------------------------- */
3049 static void
3050 panel_toggle_sort_order_next (WPanel * panel)
3052 gsize lc_index, i;
3053 const panel_field_t *pfield = NULL;
3054 gsize format_field_count;
3055 const char *title;
3057 format_field_count = panel_get_format_field_count (panel);
3058 title = panel_get_title_without_hotkey (panel->sort_field->title_hotkey);
3059 lc_index = panel_get_format_field_index_by_name (panel, title);
3061 if (lc_index != 0 && lc_index != format_field_count)
3063 /* search for prev sortable column in panel format */
3064 for (i = lc_index;
3065 i != format_field_count
3066 && (pfield = panel_get_sortable_field_by_format (panel, i)) == NULL; i++)
3070 if (pfield == NULL)
3072 /* Sortable field not found. Try to search in each array */
3073 for (i = 0;
3074 i != format_field_count
3075 && (pfield = panel_get_sortable_field_by_format (panel, i)) == NULL; i++)
3079 if (pfield != NULL)
3081 panel->sort_field = pfield;
3082 panel_set_sort_order (panel, pfield);
3086 /* --------------------------------------------------------------------------------------------- */
3088 static void
3089 panel_select_sort_order (WPanel * panel)
3091 const panel_field_t *sort_order;
3093 sort_order = sort_box (&panel->sort_info, panel->sort_field);
3094 if (sort_order != NULL)
3096 panel->sort_field = sort_order;
3097 panel_set_sort_order (panel, sort_order);
3101 /* --------------------------------------------------------------------------------------------- */
3104 * panel_content_scroll_left:
3105 * @param panel the pointer to the panel on which we operate
3107 * scroll long filename to the left (decrement scroll pointer)
3111 static void
3112 panel_content_scroll_left (WPanel * panel)
3114 if (panel->content_shift > -1)
3116 if (panel->content_shift > panel->max_shift)
3117 panel->content_shift = panel->max_shift;
3119 panel->content_shift--;
3120 show_dir (panel);
3121 paint_dir (panel);
3125 /* --------------------------------------------------------------------------------------------- */
3128 * panel_content_scroll_right:
3129 * @param panel the pointer to the panel on which we operate
3131 * scroll long filename to the right (increment scroll pointer)
3135 static void
3136 panel_content_scroll_right (WPanel * panel)
3138 if (panel->content_shift < 0 || panel->content_shift < panel->max_shift)
3140 panel->content_shift++;
3141 show_dir (panel);
3142 paint_dir (panel);
3146 /* --------------------------------------------------------------------------------------------- */
3148 static void
3149 panel_set_sort_type_by_id (WPanel * panel, const char *name)
3151 if (strcmp (panel->sort_field->id, name) != 0)
3153 const panel_field_t *sort_order;
3155 sort_order = panel_get_field_by_id (name);
3156 if (sort_order == NULL)
3157 return;
3159 panel->sort_field = sort_order;
3161 else
3162 panel->sort_info.reverse = !panel->sort_info.reverse;
3164 panel_set_sort_order (panel, panel->sort_field);
3167 /* --------------------------------------------------------------------------------------------- */
3169 * If we moved to the parent directory move the selection pointer to
3170 * the old directory name; If we leave VFS dir, remove FS specificator.
3172 * You do _NOT_ want to add any vfs aware code here. <pavel@ucw.cz>
3175 static const char *
3176 get_parent_dir_name (const vfs_path_t * cwd_vpath, const vfs_path_t * lwd_vpath)
3178 size_t llen, clen;
3179 const char *p, *cwd, *lwd;
3181 llen = vfs_path_len (lwd_vpath);
3182 clen = vfs_path_len (cwd_vpath);
3184 if (llen <= clen)
3185 return NULL;
3187 cwd = vfs_path_as_str (cwd_vpath);
3188 lwd = vfs_path_as_str (lwd_vpath);
3190 p = g_strrstr (lwd, VFS_PATH_URL_DELIMITER);
3192 if (p == NULL)
3194 p = strrchr (lwd, PATH_SEP);
3196 if ((p != NULL)
3197 && (strncmp (cwd, lwd, (size_t) (p - lwd)) == 0)
3198 && (clen == (size_t) (p - lwd) || (p == lwd && IS_PATH_SEP (cwd[0]) && cwd[1] == '\0')))
3199 return (p + 1);
3201 return NULL;
3204 /* skip VFS prefix */
3205 while (--p > lwd && !IS_PATH_SEP (*p))
3207 /* get last component */
3208 while (--p > lwd && !IS_PATH_SEP (*p))
3211 /* return last component */
3212 return (p != lwd || IS_PATH_SEP (*p)) ? p + 1 : p;
3215 /* --------------------------------------------------------------------------------------------- */
3216 /** Wrapper for do_subshell_chdir, check for availability of subshell */
3218 static void
3219 subshell_chdir (const vfs_path_t * vpath)
3221 #ifdef ENABLE_SUBSHELL
3222 if (mc_global.tty.use_subshell && vfs_current_is_local ())
3223 do_subshell_chdir (vpath, FALSE);
3224 #else /* ENABLE_SUBSHELL */
3225 (void) vpath;
3226 #endif /* ENABLE_SUBSHELL */
3229 /* --------------------------------------------------------------------------------------------- */
3231 * Changes the current directory of the panel.
3232 * Don't record change in the directory history.
3235 static gboolean
3236 _do_panel_cd (WPanel * panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type)
3238 vfs_path_t *olddir_vpath;
3240 /* Convert *new_path to a suitable pathname, handle ~user */
3241 if (cd_type == cd_parse_command)
3243 const vfs_path_element_t *element;
3245 element = vfs_path_get_by_index (new_dir_vpath, 0);
3246 if (strcmp (element->path, "-") == 0)
3247 new_dir_vpath = panel->lwd_vpath;
3250 if (mc_chdir (new_dir_vpath) == -1)
3251 return FALSE;
3253 /* Success: save previous directory, shutdown status of previous dir */
3254 olddir_vpath = vfs_path_clone (panel->cwd_vpath);
3255 panel_set_lwd (panel, panel->cwd_vpath);
3256 input_free_completions (cmdline);
3258 vfs_path_free (panel->cwd_vpath);
3259 vfs_setup_cwd ();
3260 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
3262 vfs_release_path (olddir_vpath);
3264 subshell_chdir (panel->cwd_vpath);
3266 /* Reload current panel */
3267 panel_clean_dir (panel);
3269 dir_list_load (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
3270 &panel->sort_info, panel->filter);
3271 try_to_select (panel, get_parent_dir_name (panel->cwd_vpath, olddir_vpath));
3273 load_hint (0);
3274 panel->dirty = 1;
3275 update_xterm_title_path ();
3277 vfs_path_free (olddir_vpath);
3279 return TRUE;
3282 /* --------------------------------------------------------------------------------------------- */
3284 static void
3285 directory_history_next (WPanel * panel)
3287 gboolean ok;
3291 GList *next;
3293 ok = TRUE;
3294 next = g_list_next (panel->dir_history_current);
3295 if (next != NULL)
3297 vfs_path_t *data_vpath;
3299 data_vpath = vfs_path_from_str ((char *) next->data);
3300 ok = _do_panel_cd (panel, data_vpath, cd_exact);
3301 vfs_path_free (data_vpath);
3302 panel->dir_history_current = next;
3304 /* skip directories that present in history but absent in file system */
3306 while (!ok);
3309 /* --------------------------------------------------------------------------------------------- */
3311 static void
3312 directory_history_prev (WPanel * panel)
3314 gboolean ok;
3318 GList *prev;
3320 ok = TRUE;
3321 prev = g_list_previous (panel->dir_history_current);
3322 if (prev != NULL)
3324 vfs_path_t *data_vpath;
3326 data_vpath = vfs_path_from_str ((char *) prev->data);
3327 ok = _do_panel_cd (panel, data_vpath, cd_exact);
3328 vfs_path_free (data_vpath);
3329 panel->dir_history_current = prev;
3331 /* skip directories that present in history but absent in file system */
3333 while (!ok);
3336 /* --------------------------------------------------------------------------------------------- */
3338 static void
3339 directory_history_list (WPanel * panel)
3341 char *s;
3342 gboolean ok = FALSE;
3343 size_t pos;
3345 pos = g_list_position (panel->dir_history_current, panel->dir_history);
3347 s = history_show (&panel->dir_history, WIDGET (panel), pos);
3348 if (s != NULL)
3350 vfs_path_t *s_vpath;
3352 s_vpath = vfs_path_from_str (s);
3353 ok = _do_panel_cd (panel, s_vpath, cd_exact);
3354 if (ok)
3355 directory_history_add (panel, panel->cwd_vpath);
3356 else
3357 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
3358 vfs_path_free (s_vpath);
3359 g_free (s);
3362 if (!ok)
3364 /* Since history is fully modified in history_show(), panel->dir_history actually
3365 * points to the invalid place. Try restore current postition here. */
3367 size_t i;
3369 panel->dir_history_current = panel->dir_history;
3371 for (i = 0; i <= pos; i++)
3373 GList *prev;
3375 prev = g_list_previous (panel->dir_history_current);
3376 if (prev == NULL)
3377 break;
3379 panel->dir_history_current = prev;
3384 /* --------------------------------------------------------------------------------------------- */
3386 static cb_ret_t
3387 panel_execute_cmd (WPanel * panel, unsigned long command)
3389 int res = MSG_HANDLED;
3391 if (command != CK_Search)
3392 stop_search (panel);
3394 switch (command)
3396 case CK_Up:
3397 case CK_Down:
3398 case CK_Left:
3399 case CK_Right:
3400 case CK_Bottom:
3401 case CK_Top:
3402 case CK_PageDown:
3403 case CK_PageUp:
3404 /* reset state of marks flag */
3405 state_mark = -1;
3406 break;
3407 default:
3408 break;
3411 switch (command)
3413 case CK_PanelOtherCd:
3414 chdir_other_panel (panel);
3415 break;
3416 case CK_PanelOtherCdLink:
3417 chdir_to_readlink (panel);
3418 break;
3419 case CK_CopySingle:
3420 copy_cmd_local ();
3421 break;
3422 case CK_DeleteSingle:
3423 delete_cmd_local ();
3424 break;
3425 case CK_Enter:
3426 do_enter (panel);
3427 break;
3428 case CK_ViewRaw:
3429 view_raw_cmd ();
3430 break;
3431 case CK_EditNew:
3432 edit_cmd_new ();
3433 break;
3434 case CK_MoveSingle:
3435 rename_cmd_local ();
3436 break;
3437 case CK_SelectInvert:
3438 panel_select_invert_files (panel);
3439 break;
3440 case CK_Select:
3441 panel_select_files (panel);
3442 break;
3443 case CK_SelectExt:
3444 panel_select_ext_cmd ();
3445 break;
3446 case CK_Unselect:
3447 panel_unselect_files (panel);
3448 break;
3449 case CK_PageDown:
3450 next_page (panel);
3451 break;
3452 case CK_PageUp:
3453 prev_page (panel);
3454 break;
3455 case CK_CdChild:
3456 goto_child_dir (panel);
3457 break;
3458 case CK_CdParent:
3459 goto_parent_dir (panel);
3460 break;
3461 case CK_History:
3462 directory_history_list (panel);
3463 break;
3464 case CK_HistoryNext:
3465 directory_history_next (panel);
3466 break;
3467 case CK_HistoryPrev:
3468 directory_history_prev (panel);
3469 break;
3470 case CK_BottomOnScreen:
3471 goto_bottom_file (panel);
3472 break;
3473 case CK_MiddleOnScreen:
3474 goto_middle_file (panel);
3475 break;
3476 case CK_TopOnScreen:
3477 goto_top_file (panel);
3478 break;
3479 case CK_Mark:
3480 mark_file (panel);
3481 break;
3482 case CK_MarkUp:
3483 mark_file_up (panel);
3484 break;
3485 case CK_MarkDown:
3486 mark_file_down (panel);
3487 break;
3488 case CK_MarkLeft:
3489 mark_file_left (panel);
3490 break;
3491 case CK_MarkRight:
3492 mark_file_right (panel);
3493 break;
3494 case CK_CdParentSmart:
3495 res = force_maybe_cd ();
3496 break;
3497 case CK_Up:
3498 move_up (panel);
3499 break;
3500 case CK_Down:
3501 move_down (panel);
3502 break;
3503 case CK_Left:
3504 res = move_left (panel);
3505 break;
3506 case CK_Right:
3507 res = move_right (panel);
3508 break;
3509 case CK_Bottom:
3510 move_end (panel);
3511 break;
3512 case CK_Top:
3513 move_home (panel);
3514 break;
3515 #ifdef HAVE_CHARSET
3516 case CK_SelectCodepage:
3517 panel_change_encoding (panel);
3518 break;
3519 #endif
3520 case CK_ScrollLeft:
3521 panel_content_scroll_left (panel);
3522 break;
3523 case CK_ScrollRight:
3524 panel_content_scroll_right (panel);
3525 break;
3526 case CK_Search:
3527 start_search (panel);
3528 break;
3529 case CK_SearchStop:
3530 break;
3531 case CK_PanelOtherSync:
3532 panel_sync_other (panel);
3533 break;
3534 case CK_Sort:
3535 panel_select_sort_order (panel);
3536 break;
3537 case CK_SortPrev:
3538 panel_toggle_sort_order_prev (panel);
3539 break;
3540 case CK_SortNext:
3541 panel_toggle_sort_order_next (panel);
3542 break;
3543 case CK_SortReverse:
3544 panel->sort_info.reverse = !panel->sort_info.reverse;
3545 panel_set_sort_order (panel, panel->sort_field);
3546 break;
3547 case CK_SortByName:
3548 panel_set_sort_type_by_id (panel, "name");
3549 break;
3550 case CK_SortByExt:
3551 panel_set_sort_type_by_id (panel, "extension");
3552 break;
3553 case CK_SortBySize:
3554 panel_set_sort_type_by_id (panel, "size");
3555 break;
3556 case CK_SortByMTime:
3557 panel_set_sort_type_by_id (panel, "mtime");
3558 break;
3559 default:
3560 break;
3563 return res;
3566 /* --------------------------------------------------------------------------------------------- */
3568 static cb_ret_t
3569 panel_key (WPanel * panel, int key)
3571 size_t i;
3573 if (is_abort_char (key))
3575 stop_search (panel);
3576 return MSG_HANDLED;
3579 if (panel->searching && ((key >= ' ' && key <= 255) || key == KEY_BACKSPACE))
3581 do_search (panel, key);
3582 return MSG_HANDLED;
3585 for (i = 0; panel_map[i].key != 0; i++)
3586 if (key == panel_map[i].key)
3587 return panel_execute_cmd (panel, panel_map[i].command);
3589 if (panels_options.torben_fj_mode && key == ALT ('h'))
3591 goto_middle_file (panel);
3592 return MSG_HANDLED;
3595 if (!command_prompt && ((key >= ' ' && key <= 255) || key == KEY_BACKSPACE))
3597 start_search (panel);
3598 do_search (panel, key);
3599 return MSG_HANDLED;
3602 return MSG_NOT_HANDLED;
3605 /* --------------------------------------------------------------------------------------------- */
3607 static cb_ret_t
3608 panel_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *data)
3610 WPanel *panel = PANEL (w);
3611 WButtonBar *bb;
3613 switch (msg)
3615 case MSG_INIT:
3616 /* subscribe to "history_load" event */
3617 mc_event_add (w->owner->event_group, MCEVENT_HISTORY_LOAD, panel_load_history, w, NULL);
3618 /* subscribe to "history_save" event */
3619 mc_event_add (w->owner->event_group, MCEVENT_HISTORY_SAVE, panel_save_history, w, NULL);
3620 return MSG_HANDLED;
3622 case MSG_DRAW:
3623 /* Repaint everything, including frame and separator */
3624 widget_erase (w);
3625 show_dir (panel);
3626 panel_print_header (panel);
3627 adjust_top_file (panel);
3628 paint_dir (panel);
3629 mini_info_separator (panel);
3630 display_mini_info (panel);
3631 panel->dirty = 0;
3632 return MSG_HANDLED;
3634 case MSG_FOCUS:
3635 state_mark = -1;
3636 current_panel = panel;
3637 panel->active = 1;
3639 if (mc_chdir (panel->cwd_vpath) != 0)
3641 char *cwd;
3643 cwd = vfs_path_to_str_flags (panel->cwd_vpath, 0, VPF_STRIP_PASSWORD);
3644 message (D_ERROR, MSG_ERROR, _("Cannot chdir to \"%s\"\n%s"),
3645 cwd, unix_error_string (errno));
3646 g_free (cwd);
3648 else
3649 subshell_chdir (panel->cwd_vpath);
3651 update_xterm_title_path ();
3652 select_item (panel);
3653 show_dir (panel);
3654 paint_dir (panel);
3655 panel->dirty = 0;
3657 bb = find_buttonbar (w->owner);
3658 midnight_set_buttonbar (bb);
3659 widget_redraw (WIDGET (bb));
3660 return MSG_HANDLED;
3662 case MSG_UNFOCUS:
3663 /* Janne: look at this for the multiple panel options */
3664 stop_search (panel);
3665 panel->active = 0;
3666 show_dir (panel);
3667 unselect_item (panel);
3668 return MSG_HANDLED;
3670 case MSG_KEY:
3671 return panel_key (panel, parm);
3673 case MSG_ACTION:
3674 return panel_execute_cmd (panel, parm);
3676 case MSG_DESTROY:
3677 /* unsubscribe from "history_load" event */
3678 mc_event_del (w->owner->event_group, MCEVENT_HISTORY_LOAD, panel_load_history, w);
3679 /* unsubscribe from "history_save" event */
3680 mc_event_del (w->owner->event_group, MCEVENT_HISTORY_SAVE, panel_save_history, w);
3681 panel_destroy (panel);
3682 free_my_statfs ();
3683 return MSG_HANDLED;
3685 default:
3686 return widget_default_callback (w, sender, msg, parm, data);
3690 /* --------------------------------------------------------------------------------------------- */
3691 /* */
3692 /* Panel mouse events support routines */
3693 /* */
3695 static void
3696 mouse_toggle_mark (WPanel * panel)
3698 do_mark_file (panel, MARK_DONT_MOVE);
3699 mouse_marking = selection (panel)->f.marked;
3700 mouse_mark_panel = current_panel;
3703 /* --------------------------------------------------------------------------------------------- */
3705 static void
3706 mouse_set_mark (WPanel * panel)
3708 if (mouse_mark_panel == panel)
3710 if (mouse_marking && !(selection (panel)->f.marked))
3711 do_mark_file (panel, MARK_DONT_MOVE);
3712 else if (!mouse_marking && (selection (panel)->f.marked))
3713 do_mark_file (panel, MARK_DONT_MOVE);
3717 /* --------------------------------------------------------------------------------------------- */
3719 static gboolean
3720 mark_if_marking (WPanel * panel, Gpm_Event * event)
3722 if ((event->buttons & GPM_B_RIGHT) != 0)
3724 if ((event->type & GPM_DOWN) != 0)
3725 mouse_toggle_mark (panel);
3726 else
3727 mouse_set_mark (panel);
3728 return TRUE;
3731 return FALSE;
3734 /* --------------------------------------------------------------------------------------------- */
3735 /** Determine which column was clicked, and sort the panel on
3736 * that column, or reverse sort on that column if already
3737 * sorted on that column.
3740 static void
3741 mouse_sort_col (WPanel * panel, int x)
3743 int i;
3744 const char *lc_sort_name = NULL;
3745 panel_field_t *col_sort_format = NULL;
3746 format_e *format;
3748 for (i = 0, format = panel->format; format != NULL; format = format->next)
3750 i += format->field_len;
3751 if (x < i + 1)
3753 /* found column */
3754 lc_sort_name = format->title;
3755 break;
3759 if (lc_sort_name == NULL)
3760 return;
3762 for (i = 0; panel_fields[i].id != NULL; i++)
3764 const char *title;
3766 title = panel_get_title_without_hotkey (panel_fields[i].title_hotkey);
3767 if (strcmp (title, lc_sort_name) == 0 && panel_fields[i].sort_routine != NULL)
3769 col_sort_format = &panel_fields[i];
3770 break;
3774 if (col_sort_format == NULL)
3775 return;
3777 if (panel->sort_field == col_sort_format)
3779 /* reverse the sort if clicked column is already the sorted column */
3780 panel->sort_info.reverse = !panel->sort_info.reverse;
3782 else
3784 /* new sort is forced to be ascending */
3785 panel->sort_info.reverse = FALSE;
3787 panel_set_sort_order (panel, col_sort_format);
3791 /* --------------------------------------------------------------------------------------------- */
3793 * Mouse callback of the panel minus repainting.
3795 static int
3796 panel_event (Gpm_Event * event, void *data)
3798 WPanel *panel = PANEL (data);
3799 Widget *w = WIDGET (data);
3801 int lines;
3802 const gboolean is_active = widget_is_active (panel);
3803 const gboolean mouse_down = (event->type & GPM_DOWN) != 0;
3804 Gpm_Event local;
3806 if (!mouse_global_in_widget (event, WIDGET (data)))
3807 return MOU_UNHANDLED;
3809 local = mouse_get_local (event, w);
3811 /* 1st line */
3812 if (local.y == 1)
3814 /* "<" button */
3815 if (mouse_down && local.x == 2)
3817 directory_history_prev (panel);
3818 goto finish;
3821 /* ">" button */
3822 if (mouse_down && local.x == w->cols - 1)
3824 directory_history_next (panel);
3825 goto finish;
3828 /* "^" button */
3829 if (mouse_down && local.x >= w->cols - 4 && local.x <= w->cols - 2)
3831 directory_history_list (panel);
3832 goto finish;
3835 /* "." button show/hide hidden files */
3836 if (mouse_down && local.x == w->cols - 5)
3838 send_message (midnight_dlg, NULL, MSG_ACTION, CK_ShowHidden, NULL);
3839 goto finish;
3842 /* no other events on 1st line */
3843 return MOU_UNHANDLED;
3846 /* sort on clicked column; don't handle wheel events */
3847 if (mouse_down && (local.buttons & (GPM_B_UP | GPM_B_DOWN)) == 0 && local.y == 2)
3849 mouse_sort_col (panel, local.x);
3850 goto finish;
3853 /* Mouse wheel events */
3854 if (mouse_down && (local.buttons & GPM_B_UP) != 0)
3856 if (is_active)
3858 if (panels_options.mouse_move_pages && (panel->top_file > 0))
3859 prev_page (panel);
3860 else /* We are in first page */
3861 move_up (panel);
3863 goto finish;
3866 if (mouse_down && (local.buttons & GPM_B_DOWN) != 0)
3868 if (is_active)
3870 if (panels_options.mouse_move_pages
3871 && (panel->top_file + panel_items (panel) < panel->dir.len))
3872 next_page (panel);
3873 else /* We are in last page */
3874 move_down (panel);
3876 goto finish;
3879 lines = panel_lines (panel);
3881 local.y -= 2;
3882 if ((local.type & (GPM_DOWN | GPM_DRAG)) != 0)
3884 int my_index;
3886 if (!is_active)
3887 change_panel ();
3889 if (panel->top_file + local.y > panel->dir.len)
3890 my_index = panel->dir.len - 1;
3891 else
3893 my_index = panel->top_file + local.y - 1;
3895 if (panel->list_type == list_brief && panel->list_cols > 1)
3897 int width;
3899 width = (w->cols - 2) / panel->list_cols;
3900 my_index += lines * ((local.x - 1) / width);
3903 if (my_index >= panel->dir.len)
3904 my_index = panel->dir.len - 1;
3907 if (my_index != panel->selected)
3909 unselect_item (panel);
3910 panel->selected = my_index;
3911 select_item (panel);
3914 /* This one is new */
3915 mark_if_marking (panel, &local);
3917 else if ((local.type & (GPM_UP | GPM_DOUBLE)) == (GPM_UP | GPM_DOUBLE) &&
3918 local.y > 0 && local.y <= lines)
3919 do_enter (panel);
3921 finish:
3922 if (panel->dirty)
3923 widget_redraw (w);
3925 return MOU_NORMAL;
3928 /* --------------------------------------------------------------------------------------------- */
3930 static void
3931 reload_panelized (WPanel * panel)
3933 int i, j;
3934 dir_list *list = &panel->dir;
3936 /* refresh current VFS directory required for vfs_path_from_str() */
3937 (void) mc_chdir (panel->cwd_vpath);
3939 for (i = 0, j = 0; i < list->len; i++)
3941 vfs_path_t *vpath;
3943 if (list->list[i].f.marked)
3945 /* Unmark the file in advance. In case the following mc_lstat
3946 * fails we are done, else we have to mark the file again
3947 * (Note: do_file_mark depends on a valid "list->list [i].buf").
3948 * IMO that's the best way to update the panel's summary status
3949 * -- Norbert
3951 do_file_mark (panel, i, 0);
3953 vpath = vfs_path_from_str (list->list[i].fname);
3954 if (mc_lstat (vpath, &list->list[i].st) != 0)
3955 g_free (list->list[i].fname);
3956 else
3958 if (list->list[i].f.marked)
3959 do_file_mark (panel, i, 1);
3960 if (j != i)
3961 list->list[j] = list->list[i];
3962 j++;
3964 vfs_path_free (vpath);
3966 if (j == 0)
3967 dir_list_init (list);
3968 else
3969 list->len = j;
3971 if (panel != current_panel)
3972 (void) mc_chdir (current_panel->cwd_vpath);
3975 /* --------------------------------------------------------------------------------------------- */
3977 static void
3978 update_one_panel_widget (WPanel * panel, panel_update_flags_t flags, const char *current_file)
3980 gboolean free_pointer;
3981 char *my_current_file = NULL;
3983 if ((flags & UP_RELOAD) != 0)
3985 panel->is_panelized = FALSE;
3986 mc_setctl (panel->cwd_vpath, VFS_SETCTL_FLUSH, 0);
3987 memset (&(panel->dir_stat), 0, sizeof (panel->dir_stat));
3990 /* If current_file == -1 (an invalid pointer) then preserve selection */
3991 free_pointer = current_file == UP_KEEPSEL;
3993 if (free_pointer)
3995 my_current_file = g_strdup (panel->dir.list[panel->selected].fname);
3996 current_file = my_current_file;
3999 if (panel->is_panelized)
4000 reload_panelized (panel);
4001 else
4002 panel_reload (panel);
4004 try_to_select (panel, current_file);
4005 panel->dirty = 1;
4007 if (free_pointer)
4008 g_free (my_current_file);
4011 /* --------------------------------------------------------------------------------------------- */
4013 static void
4014 update_one_panel (int which, panel_update_flags_t flags, const char *current_file)
4016 if (get_display_type (which) == view_listing)
4018 WPanel *panel;
4020 panel = PANEL (get_panel_widget (which));
4021 if (panel->is_panelized)
4022 flags &= ~UP_RELOAD;
4023 update_one_panel_widget (panel, flags, current_file);
4027 /* --------------------------------------------------------------------------------------------- */
4029 static void
4030 do_select (WPanel * panel, int i)
4032 if (i != panel->selected)
4034 panel->dirty = 1;
4035 panel->selected = i;
4036 panel->top_file = panel->selected - (WIDGET (panel)->lines - 2) / 2;
4037 if (panel->top_file < 0)
4038 panel->top_file = 0;
4042 /* --------------------------------------------------------------------------------------------- */
4044 static void
4045 do_try_to_select (WPanel * panel, const char *name)
4047 int i;
4048 char *subdir;
4050 if (!name)
4052 do_select (panel, 0);
4053 return;
4056 /* We only want the last component of the directory,
4057 * and from this only the name without suffix.
4058 * Cut prefix if the panel is not panelized */
4060 if (panel->is_panelized)
4061 subdir = vfs_strip_suffix_from_filename (name);
4062 else
4063 subdir = vfs_strip_suffix_from_filename (x_basename (name));
4065 /* Search that subdir or filename without prefix (if not panelized panel), select it if found */
4066 for (i = 0; i < panel->dir.len; i++)
4068 if (strcmp (subdir, panel->dir.list[i].fname) == 0)
4070 do_select (panel, i);
4071 g_free (subdir);
4072 return;
4076 /* Try to select a file near the file that is missing */
4077 if (panel->selected >= panel->dir.len)
4078 do_select (panel, panel->dir.len - 1);
4079 g_free (subdir);
4082 /* --------------------------------------------------------------------------------------------- */
4084 /* event callback */
4085 static gboolean
4086 event_update_panels (const gchar * event_group_name, const gchar * event_name,
4087 gpointer init_data, gpointer data)
4089 (void) event_group_name;
4090 (void) event_name;
4091 (void) init_data;
4092 (void) data;
4094 update_panels (UP_RELOAD, UP_KEEPSEL);
4096 return TRUE;
4099 /* --------------------------------------------------------------------------------------------- */
4101 /* event callback */
4102 static gboolean
4103 panel_save_current_file_to_clip_file (const gchar * event_group_name, const gchar * event_name,
4104 gpointer init_data, gpointer data)
4106 (void) event_group_name;
4107 (void) event_name;
4108 (void) init_data;
4109 (void) data;
4111 if (current_panel->marked == 0)
4112 mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_text_to_file",
4113 (gpointer) selection (current_panel)->fname);
4114 else
4116 int i;
4117 gboolean first = TRUE;
4118 char *flist = NULL;
4120 for (i = 0; i < current_panel->dir.len; i++)
4121 if (current_panel->dir.list[i].f.marked != 0)
4122 { /* Skip the unmarked ones */
4123 if (first)
4125 flist = g_strdup (current_panel->dir.list[i].fname);
4126 first = FALSE;
4128 else
4130 /* Add empty lines after the file */
4131 char *tmp;
4133 tmp =
4134 g_strconcat (flist, "\n", current_panel->dir.list[i].fname, (char *) NULL);
4135 g_free (flist);
4136 flist = tmp;
4140 mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_text_to_file", (gpointer) flist);
4141 g_free (flist);
4143 return TRUE;
4146 /* --------------------------------------------------------------------------------------------- */
4148 static vfs_path_t *
4149 panel_recursive_cd_to_parent (const vfs_path_t * vpath)
4151 vfs_path_t *cwd_vpath;
4153 cwd_vpath = vfs_path_clone (vpath);
4155 while (mc_chdir (cwd_vpath) < 0)
4157 const char *panel_cwd_path;
4158 vfs_path_t *tmp_vpath;
4160 /* check if path contains only '/' */
4161 panel_cwd_path = vfs_path_as_str (cwd_vpath);
4162 if (IS_PATH_SEP (panel_cwd_path[0]) && panel_cwd_path[1] == '\0')
4163 return NULL;
4165 tmp_vpath = vfs_path_vtokens_get (cwd_vpath, 0, -1);
4166 vfs_path_free (cwd_vpath);
4167 cwd_vpath = vfs_path_build_filename (PATH_SEP_STR, vfs_path_as_str (tmp_vpath), NULL);
4168 vfs_path_free (tmp_vpath);
4171 return cwd_vpath;
4174 /* --------------------------------------------------------------------------------------------- */
4175 /*** public functions ****************************************************************************/
4176 /* --------------------------------------------------------------------------------------------- */
4178 void
4179 try_to_select (WPanel * panel, const char *name)
4181 do_try_to_select (panel, name);
4182 select_item (panel);
4185 /* --------------------------------------------------------------------------------------------- */
4187 void
4188 panel_clean_dir (WPanel * panel)
4190 panel->top_file = 0;
4191 panel->selected = 0;
4192 panel->marked = 0;
4193 panel->dirs_marked = 0;
4194 panel->total = 0;
4195 panel->searching = FALSE;
4196 panel->is_panelized = FALSE;
4197 panel->dirty = 1;
4198 panel->content_shift = -1;
4199 panel->max_shift = -1;
4201 dir_list_clean (&panel->dir);
4204 /* --------------------------------------------------------------------------------------------- */
4206 * Set Up panel's current dir object
4208 * @param panel panel object
4209 * @param path_str string contain path
4212 void
4213 panel_set_cwd (WPanel * panel, const vfs_path_t * vpath)
4215 if (vpath != panel->cwd_vpath) /* check if new vpath is not the panel->cwd_vpath object */
4217 vfs_path_free (panel->cwd_vpath);
4218 panel->cwd_vpath = vfs_path_clone (vpath);
4222 /* --------------------------------------------------------------------------------------------- */
4224 * Set Up panel's last working dir object
4226 * @param panel panel object
4227 * @param path_str string contain path
4230 void
4231 panel_set_lwd (WPanel * panel, const vfs_path_t * vpath)
4233 if (vpath != panel->lwd_vpath) /* check if new vpath is not the panel->lwd_vpath object */
4235 vfs_path_free (panel->lwd_vpath);
4236 panel->lwd_vpath = vfs_path_clone (vpath);
4240 /* --------------------------------------------------------------------------------------------- */
4242 * Panel creation for specified directory.
4244 * @param panel_name specifies the name of the panel for setup retieving
4245 * @param wpath the path of working panel directory. If path is NULL then panel will be created
4246 * for current directory
4248 * @return new instance of WPanel
4251 WPanel *
4252 panel_new_with_dir (const char *panel_name, const vfs_path_t * vpath)
4254 WPanel *panel;
4255 Widget *w;
4256 char *section;
4257 int i, err;
4258 char *curdir = NULL;
4260 panel = g_new0 (WPanel, 1);
4261 w = WIDGET (panel);
4262 /* No know sizes of the panel at startup */
4263 widget_init (w, 0, 0, 0, 0, panel_callback, panel_event);
4264 /* We do not want the cursor */
4265 widget_want_cursor (w, FALSE);
4267 if (vpath != NULL)
4269 curdir = _vfs_get_cwd ();
4270 panel_set_cwd (panel, vpath);
4272 else
4274 vfs_setup_cwd ();
4275 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
4278 panel_set_lwd (panel, vfs_get_raw_current_dir ());
4280 panel->hist_name = g_strconcat ("Dir Hist ", panel_name, (char *) NULL);
4281 /* directories history will be get later */
4283 panel->dir.size = DIR_LIST_MIN_SIZE;
4284 panel->dir.list = g_new (file_entry_t, panel->dir.size);
4285 panel->dir.len = 0;
4286 panel->active = 0;
4287 panel->filter = NULL;
4288 panel->list_cols = 1;
4289 panel->brief_cols = 2;
4290 panel->top_file = 0;
4291 panel->selected = 0;
4292 panel->marked = 0;
4293 panel->total = 0;
4294 panel->dirty = 1;
4295 panel->searching = FALSE;
4296 panel->dirs_marked = 0;
4297 panel->is_panelized = FALSE;
4298 panel->format = NULL;
4299 panel->status_format = NULL;
4300 panel->format_modified = 1;
4301 panel->content_shift = -1;
4302 panel->max_shift = -1;
4304 panel->panel_name = g_strdup (panel_name);
4305 panel->user_format = g_strdup (DEFAULT_USER_FORMAT);
4307 #ifdef HAVE_CHARSET
4308 panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
4309 #endif
4311 for (i = 0; i < LIST_TYPES; i++)
4312 panel->user_status_format[i] = g_strdup (DEFAULT_USER_FORMAT);
4314 panel->search_buffer[0] = '\0';
4315 panel->prev_search_buffer[0] = '\0';
4316 panel->frame_size = frame_half;
4318 section = g_strconcat ("Temporal:", panel->panel_name, (char *) NULL);
4319 if (!mc_config_has_group (mc_main_config, section))
4321 g_free (section);
4322 section = g_strdup (panel->panel_name);
4324 panel_load_setup (panel, section);
4325 g_free (section);
4327 /* Load format strings */
4328 err = set_panel_formats (panel);
4329 if (err != 0)
4330 set_panel_formats (panel);
4332 #ifdef HAVE_CHARSET
4334 const vfs_path_element_t *path_element;
4336 path_element = vfs_path_get_by_index (panel->cwd_vpath, -1);
4337 if (path_element->encoding != NULL)
4338 panel->codepage = get_codepage_index (path_element->encoding);
4340 #endif
4342 if (mc_chdir (panel->cwd_vpath) != 0)
4344 #ifdef HAVE_CHARSET
4345 panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
4346 #endif
4347 vfs_setup_cwd ();
4348 vfs_path_free (panel->cwd_vpath);
4349 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
4352 /* Load the default format */
4353 dir_list_load (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
4354 &panel->sort_info, panel->filter);
4356 /* Restore old right path */
4357 if (curdir != NULL)
4359 vfs_path_t *tmp_vpath;
4361 tmp_vpath = vfs_path_from_str (curdir);
4362 err = mc_chdir (tmp_vpath);
4363 vfs_path_free (tmp_vpath);
4365 g_free (curdir);
4367 return panel;
4370 /* --------------------------------------------------------------------------------------------- */
4372 void
4373 panel_reload (WPanel * panel)
4375 struct stat current_stat;
4376 vfs_path_t *cwd_vpath;
4378 if (panels_options.fast_reload && stat (vfs_path_as_str (panel->cwd_vpath), &current_stat) == 0
4379 && current_stat.st_ctime == panel->dir_stat.st_ctime
4380 && current_stat.st_mtime == panel->dir_stat.st_mtime)
4381 return;
4383 cwd_vpath = panel_recursive_cd_to_parent (panel->cwd_vpath);
4384 vfs_path_free (panel->cwd_vpath);
4386 if (cwd_vpath == NULL)
4388 panel->cwd_vpath = vfs_path_from_str (PATH_SEP_STR);
4389 panel_clean_dir (panel);
4390 dir_list_init (&panel->dir);
4391 return;
4394 panel->cwd_vpath = cwd_vpath;
4395 memset (&(panel->dir_stat), 0, sizeof (panel->dir_stat));
4396 show_dir (panel);
4398 dir_list_reload (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
4399 &panel->sort_info, panel->filter);
4401 panel->dirty = 1;
4402 if (panel->selected >= panel->dir.len)
4403 do_select (panel, panel->dir.len - 1);
4405 recalculate_panel_summary (panel);
4408 /* --------------------------------------------------------------------------------------------- */
4409 /* Switches the panel to the mode specified in the format */
4410 /* Seting up both format and status string. Return: 0 - on success; */
4411 /* 1 - format error; 2 - status error; 3 - errors in both formats. */
4414 set_panel_formats (WPanel * p)
4416 format_e *form;
4417 char *err = NULL;
4418 int retcode = 0;
4420 form = use_display_format (p, panel_format (p), &err, FALSE);
4422 if (err != NULL)
4424 g_free (err);
4425 retcode = 1;
4427 else
4429 delete_format (p->format);
4430 p->format = form;
4433 if (panels_options.show_mini_info)
4435 form = use_display_format (p, mini_status_format (p), &err, TRUE);
4437 if (err != NULL)
4439 g_free (err);
4440 retcode += 2;
4442 else
4444 delete_format (p->status_format);
4445 p->status_format = form;
4449 panel_format_modified (p);
4450 panel_update_cols (WIDGET (p), p->frame_size);
4452 if (retcode)
4453 message (D_ERROR, _("Warning"),
4454 _("User supplied format looks invalid, reverting to default."));
4455 if (retcode & 0x01)
4457 g_free (p->user_format);
4458 p->user_format = g_strdup (DEFAULT_USER_FORMAT);
4460 if (retcode & 0x02)
4462 g_free (p->user_status_format[p->list_type]);
4463 p->user_status_format[p->list_type] = g_strdup (DEFAULT_USER_FORMAT);
4466 return retcode;
4469 /* --------------------------------------------------------------------------------------------- */
4471 void
4472 panel_update_cols (Widget * widget, panel_display_t frame_size)
4474 int cols, origin;
4476 /* don't touch panel if it is not in dialog yet */
4477 /* if panel is not in dialog it is not in widgets list
4478 and cannot be compared with get_panel_widget() result */
4479 if (widget->owner == NULL)
4480 return;
4482 if (panels_layout.horizontal_split)
4484 widget->cols = COLS;
4485 return;
4488 if (frame_size == frame_full)
4490 cols = COLS;
4491 origin = 0;
4493 else if (widget == get_panel_widget (0))
4495 cols = panels_layout.left_panel_size;
4496 origin = 0;
4498 else
4500 cols = COLS - panels_layout.left_panel_size;
4501 origin = panels_layout.left_panel_size;
4504 widget->cols = cols;
4505 widget->x = origin;
4508 /* --------------------------------------------------------------------------------------------- */
4510 /* Select current item and readjust the panel */
4511 void
4512 select_item (WPanel * panel)
4514 /* Although currently all over the code we set the selection and
4515 top file to decent values before calling select_item, I could
4516 forget it someday, so it's better to do the actual fitting here */
4518 if (panel->selected < 0)
4519 panel->selected = 0;
4521 if (panel->selected > panel->dir.len - 1)
4522 panel->selected = panel->dir.len - 1;
4524 adjust_top_file (panel);
4526 panel->dirty = 1;
4528 execute_hooks (select_file_hook);
4531 /* --------------------------------------------------------------------------------------------- */
4532 /** Clears all files in the panel, used only when one file was marked */
4533 void
4534 unmark_files (WPanel * panel)
4536 int i;
4538 if (!panel->marked)
4539 return;
4541 for (i = 0; i < panel->dir.len; i++)
4542 file_mark (panel, i, 0);
4544 panel->dirs_marked = 0;
4545 panel->marked = 0;
4546 panel->total = 0;
4549 /* --------------------------------------------------------------------------------------------- */
4550 /** Recalculate the panels summary information, used e.g. when marked
4551 files might have been removed by an external command */
4553 void
4554 recalculate_panel_summary (WPanel * panel)
4556 int i;
4558 panel->marked = 0;
4559 panel->dirs_marked = 0;
4560 panel->total = 0;
4562 for (i = 0; i < panel->dir.len; i++)
4563 if (panel->dir.list[i].f.marked)
4565 /* do_file_mark will return immediately if newmark == oldmark.
4566 So we have to first unmark it to get panel's summary information
4567 updated. (Norbert) */
4568 panel->dir.list[i].f.marked = 0;
4569 do_file_mark (panel, i, 1);
4573 /* --------------------------------------------------------------------------------------------- */
4574 /** This routine marks a file or a directory */
4576 void
4577 do_file_mark (WPanel * panel, int idx, int mark)
4579 if (panel->dir.list[idx].f.marked == mark)
4580 return;
4582 /* Only '..' can't be marked, '.' isn't visible */
4583 if (DIR_IS_DOTDOT (panel->dir.list[idx].fname))
4584 return;
4586 file_mark (panel, idx, mark);
4587 if (panel->dir.list[idx].f.marked)
4589 panel->marked++;
4591 if (S_ISDIR (panel->dir.list[idx].st.st_mode))
4593 if (panel->dir.list[idx].f.dir_size_computed)
4594 panel->total += (uintmax_t) panel->dir.list[idx].st.st_size;
4595 panel->dirs_marked++;
4597 else
4598 panel->total += (uintmax_t) panel->dir.list[idx].st.st_size;
4600 set_colors (panel);
4602 else
4604 if (S_ISDIR (panel->dir.list[idx].st.st_mode))
4606 if (panel->dir.list[idx].f.dir_size_computed)
4607 panel->total -= (uintmax_t) panel->dir.list[idx].st.st_size;
4608 panel->dirs_marked--;
4610 else
4611 panel->total -= (uintmax_t) panel->dir.list[idx].st.st_size;
4613 panel->marked--;
4617 /* --------------------------------------------------------------------------------------------- */
4619 * Changes the current directory of the panel.
4620 * Record change in the directory history.
4622 gboolean
4623 do_panel_cd (WPanel * panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type)
4625 gboolean r;
4627 r = _do_panel_cd (panel, new_dir_vpath, cd_type);
4628 if (r)
4629 directory_history_add (panel, panel->cwd_vpath);
4630 return r;
4633 /* --------------------------------------------------------------------------------------------- */
4635 void
4636 file_mark (WPanel * panel, int lc_index, int val)
4638 if (panel->dir.list[lc_index].f.marked != val)
4640 panel->dir.list[lc_index].f.marked = val;
4641 panel->dirty = 1;
4645 /* --------------------------------------------------------------------------------------------- */
4647 void
4648 panel_re_sort (WPanel * panel)
4650 char *filename;
4651 int i;
4653 if (panel == NULL)
4654 return;
4656 filename = g_strdup (selection (panel)->fname);
4657 unselect_item (panel);
4658 dir_list_sort (&panel->dir, panel->sort_field->sort_routine, &panel->sort_info);
4659 panel->selected = -1;
4661 for (i = panel->dir.len; i != 0; i--)
4662 if (strcmp (panel->dir.list[i - 1].fname, filename) == 0)
4664 panel->selected = i - 1;
4665 break;
4668 g_free (filename);
4669 panel->top_file = panel->selected - panel_items (panel) / 2;
4670 select_item (panel);
4671 panel->dirty = 1;
4674 /* --------------------------------------------------------------------------------------------- */
4676 void
4677 panel_set_sort_order (WPanel * panel, const panel_field_t * sort_order)
4679 if (sort_order == NULL)
4680 return;
4682 panel->sort_field = sort_order;
4684 /* The directory is already sorted, we have to load the unsorted stuff */
4685 if (sort_order->sort_routine == (GCompareFunc) unsorted)
4687 char *current_file;
4689 current_file = g_strdup (panel->dir.list[panel->selected].fname);
4690 panel_reload (panel);
4691 try_to_select (panel, current_file);
4692 g_free (current_file);
4694 panel_re_sort (panel);
4697 /* --------------------------------------------------------------------------------------------- */
4699 #ifdef HAVE_CHARSET
4702 * Change panel encoding.
4703 * @param panel WPanel object
4706 void
4707 panel_change_encoding (WPanel * panel)
4709 const char *encoding = NULL;
4710 char *errmsg;
4711 int r;
4713 r = select_charset (-1, -1, panel->codepage, FALSE);
4715 if (r == SELECT_CHARSET_CANCEL)
4716 return; /* Cancel */
4718 panel->codepage = r;
4720 if (panel->codepage == SELECT_CHARSET_NO_TRANSLATE)
4722 /* No translation */
4723 vfs_path_t *cd_path_vpath;
4725 g_free (init_translation_table (mc_global.display_codepage, mc_global.display_codepage));
4726 cd_path_vpath = remove_encoding_from_path (panel->cwd_vpath);
4727 do_panel_cd (panel, cd_path_vpath, cd_parse_command);
4728 show_dir (panel);
4729 vfs_path_free (cd_path_vpath);
4730 return;
4733 errmsg = init_translation_table (panel->codepage, mc_global.display_codepage);
4734 if (errmsg != NULL)
4736 message (D_ERROR, MSG_ERROR, "%s", errmsg);
4737 g_free (errmsg);
4738 return;
4741 encoding = get_codepage_id (panel->codepage);
4742 if (encoding != NULL)
4744 vfs_path_change_encoding (panel->cwd_vpath, encoding);
4746 if (!do_panel_cd (panel, panel->cwd_vpath, cd_parse_command))
4747 message (D_ERROR, MSG_ERROR, _("Cannot chdir to \"%s\""),
4748 vfs_path_as_str (panel->cwd_vpath));
4752 /* --------------------------------------------------------------------------------------------- */
4755 * Remove encode info from last path element.
4758 vfs_path_t *
4759 remove_encoding_from_path (const vfs_path_t * vpath)
4761 vfs_path_t *ret_vpath;
4762 GString *tmp_conv;
4763 int indx;
4765 ret_vpath = vfs_path_new ();
4767 tmp_conv = g_string_new ("");
4769 for (indx = 0; indx < vfs_path_elements_count (vpath); indx++)
4771 GIConv converter;
4772 vfs_path_element_t *path_element;
4774 path_element = vfs_path_element_clone (vfs_path_get_by_index (vpath, indx));
4776 if (path_element->encoding == NULL)
4778 vfs_path_add_element (ret_vpath, path_element);
4779 continue;
4782 converter = str_crt_conv_to (path_element->encoding);
4783 if (converter == INVALID_CONV)
4785 vfs_path_add_element (ret_vpath, path_element);
4786 continue;
4789 MC_PTR_FREE (path_element->encoding);
4791 str_vfs_convert_from (converter, path_element->path, tmp_conv);
4793 g_free (path_element->path);
4794 path_element->path = g_strndup (tmp_conv->str, tmp_conv->len);
4796 g_string_set_size (tmp_conv, 0);
4798 str_close_conv (converter);
4799 str_close_conv (path_element->dir.converter);
4800 path_element->dir.converter = INVALID_CONV;
4801 vfs_path_add_element (ret_vpath, path_element);
4803 g_string_free (tmp_conv, TRUE);
4804 return ret_vpath;
4806 #endif /* HAVE_CHARSET */
4808 /* --------------------------------------------------------------------------------------------- */
4811 * This routine reloads the directory in both panels. It tries to
4812 * select current_file in current_panel and other_file in other_panel.
4813 * If current_file == -1 then it automatically sets current_file and
4814 * other_file to the currently selected files in the panels.
4816 * If flags has the UP_ONLY_CURRENT bit toggled on, then it
4817 * will not reload the other panel.
4819 * @param flags for reload panel
4820 * @param current_file name of the current file
4823 void
4824 update_panels (panel_update_flags_t flags, const char *current_file)
4826 WPanel *panel;
4828 /* first, update other panel... */
4829 if ((flags & UP_ONLY_CURRENT) == 0)
4830 update_one_panel (get_other_index (), flags, UP_KEEPSEL);
4831 /* ...then current one */
4832 update_one_panel (get_current_index (), flags, current_file);
4834 if (get_current_type () == view_listing)
4835 panel = PANEL (get_panel_widget (get_current_index ()));
4836 else
4837 panel = PANEL (get_panel_widget (get_other_index ()));
4839 if (!panel->is_panelized)
4840 (void) mc_chdir (panel->cwd_vpath);
4843 /* --------------------------------------------------------------------------------------------- */
4845 gsize
4846 panel_get_num_of_sortable_fields (void)
4848 gsize ret = 0, lc_index;
4850 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4851 if (panel_fields[lc_index].is_user_choice)
4852 ret++;
4853 return ret;
4856 /* --------------------------------------------------------------------------------------------- */
4858 const char **
4859 panel_get_sortable_fields (gsize * array_size)
4861 char **ret;
4862 gsize lc_index, i;
4864 lc_index = panel_get_num_of_sortable_fields ();
4866 ret = g_try_new0 (char *, lc_index + 1);
4867 if (ret == NULL)
4868 return NULL;
4870 if (array_size != NULL)
4871 *array_size = lc_index;
4873 lc_index = 0;
4875 for (i = 0; panel_fields[i].id != NULL; i++)
4876 if (panel_fields[i].is_user_choice)
4877 ret[lc_index++] = g_strdup (_(panel_fields[i].title_hotkey));
4879 return (const char **) ret;
4882 /* --------------------------------------------------------------------------------------------- */
4884 const panel_field_t *
4885 panel_get_field_by_id (const char *name)
4887 gsize lc_index;
4889 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4890 if (panel_fields[lc_index].id != NULL && strcmp (name, panel_fields[lc_index].id) == 0)
4891 return &panel_fields[lc_index];
4893 return NULL;
4896 /* --------------------------------------------------------------------------------------------- */
4898 const panel_field_t *
4899 panel_get_field_by_title_hotkey (const char *name)
4901 gsize lc_index;
4903 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4904 if (panel_fields[lc_index].title_hotkey != NULL &&
4905 strcmp (name, _(panel_fields[lc_index].title_hotkey)) == 0)
4906 return &panel_fields[lc_index];
4908 return NULL;
4911 /* --------------------------------------------------------------------------------------------- */
4913 const panel_field_t *
4914 panel_get_field_by_title (const char *name)
4916 gsize lc_index;
4918 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4920 const char *title;
4922 title = panel_get_title_without_hotkey (panel_fields[lc_index].title_hotkey);
4923 if (strcmp (title, name) == 0)
4924 return &panel_fields[lc_index];
4927 return NULL;
4930 /* --------------------------------------------------------------------------------------------- */
4932 gsize
4933 panel_get_num_of_user_possible_fields (void)
4935 gsize ret = 0, lc_index;
4937 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4938 if (panel_fields[lc_index].use_in_user_format)
4939 ret++;
4941 return ret;
4944 /* --------------------------------------------------------------------------------------------- */
4946 const char **
4947 panel_get_user_possible_fields (gsize * array_size)
4949 char **ret;
4950 gsize lc_index, i;
4952 lc_index = panel_get_num_of_user_possible_fields ();
4954 ret = g_try_new0 (char *, lc_index + 1);
4955 if (ret == NULL)
4956 return NULL;
4958 if (array_size != NULL)
4959 *array_size = lc_index;
4961 lc_index = 0;
4963 for (i = 0; panel_fields[i].id != NULL; i++)
4964 if (panel_fields[i].use_in_user_format)
4965 ret[lc_index++] = g_strdup (_(panel_fields[i].title_hotkey));
4967 return (const char **) ret;
4970 /* --------------------------------------------------------------------------------------------- */
4972 void
4973 panel_init (void)
4975 panel_sort_up_sign = mc_skin_get ("widget-common", "sort-sign-up", "'");
4976 panel_sort_down_sign = mc_skin_get ("widget-common", "sort-sign-down", ".");
4978 panel_hiddenfiles_sign_show = mc_skin_get ("widget-panel", "hiddenfiles-sign-show", ".");
4979 panel_hiddenfiles_sign_hide = mc_skin_get ("widget-panel", "hiddenfiles-sign-hide", ".");
4980 panel_history_prev_item_sign = mc_skin_get ("widget-panel", "history-prev-item-sign", "<");
4981 panel_history_next_item_sign = mc_skin_get ("widget-panel", "history-next-item-sign", ">");
4982 panel_history_show_list_sign = mc_skin_get ("widget-panel", "history-show-list-sign", "^");
4983 panel_filename_scroll_left_char =
4984 mc_skin_get ("widget-panel", "filename-scroll-left-char", "{");
4985 panel_filename_scroll_right_char =
4986 mc_skin_get ("widget-panel", "filename-scroll-right-char", "}");
4988 mc_event_add (MCEVENT_GROUP_FILEMANAGER, "update_panels", event_update_panels, NULL, NULL);
4989 mc_event_add (MCEVENT_GROUP_FILEMANAGER, "panel_save_current_file_to_clip_file",
4990 panel_save_current_file_to_clip_file, NULL, NULL);
4993 /* --------------------------------------------------------------------------------------------- */
4995 void
4996 panel_deinit (void)
4998 g_free (panel_sort_up_sign);
4999 g_free (panel_sort_down_sign);
5001 g_free (panel_hiddenfiles_sign_show);
5002 g_free (panel_hiddenfiles_sign_hide);
5003 g_free (panel_history_prev_item_sign);
5004 g_free (panel_history_next_item_sign);
5005 g_free (panel_history_show_list_sign);
5006 g_free (panel_filename_scroll_left_char);
5007 g_free (panel_filename_scroll_right_char);
5010 /* --------------------------------------------------------------------------------------------- */
5012 gboolean
5013 do_cd (const vfs_path_t * new_dir_vpath, enum cd_enum exact)
5015 gboolean res;
5016 const vfs_path_t *_new_dir_vpath = new_dir_vpath;
5018 if (current_panel->is_panelized)
5020 size_t new_vpath_len;
5022 new_vpath_len = vfs_path_len (new_dir_vpath);
5023 if (vfs_path_equal_len (new_dir_vpath, panelized_panel.root_vpath, new_vpath_len))
5024 _new_dir_vpath = panelized_panel.root_vpath;
5027 res = do_panel_cd (current_panel, _new_dir_vpath, exact);
5029 #ifdef HAVE_CHARSET
5030 if (res)
5032 const vfs_path_element_t *path_element;
5034 path_element = vfs_path_get_by_index (current_panel->cwd_vpath, -1);
5035 if (path_element->encoding != NULL)
5036 current_panel->codepage = get_codepage_index (path_element->encoding);
5037 else
5038 current_panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
5040 #endif /* HAVE_CHARSET */
5042 return res;
5045 /* --------------------------------------------------------------------------------------------- */