Ticket #3913: implement safe file overwrite.
[midnight-commander.git] / src / filemanager / panel.c
blobc653b821d18cfacadb1f34cc8dce7862d85635ce
1 /*
2 Panel managing.
4 Copyright (C) 1994-2018
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-2016
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/key.h" /* XCTRL and ALT macros */
44 #include "lib/skin.h"
45 #include "lib/strescape.h"
46 #include "lib/mcconfig.h"
47 #include "lib/vfs/vfs.h"
48 #include "lib/unixcompat.h"
49 #include "lib/search.h"
50 #include "lib/timefmt.h" /* file_date() */
51 #include "lib/util.h"
52 #include "lib/widget.h"
53 #ifdef HAVE_CHARSET
54 #include "lib/charsets.h" /* get_codepage_id () */
55 #endif
56 #include "lib/event.h"
58 #include "src/setup.h" /* For loading/saving panel options */
59 #include "src/execute.h"
60 #ifdef HAVE_CHARSET
61 #include "src/selcodepage.h" /* select_charset (), SELECT_CHARSET_NO_TRANSLATE */
62 #endif
63 #include "src/keybind-defaults.h" /* global_keymap_t */
64 #ifdef ENABLE_SUBSHELL
65 #include "src/subshell/subshell.h" /* do_subshell_chdir() */
66 #endif
68 #include "src/usermenu.h"
70 #include "dir.h"
71 #include "boxes.h"
72 #include "tree.h"
73 #include "ext.h" /* regexp_command */
74 #include "layout.h" /* Most layout variables are here */
75 #include "cmd.h"
76 #include "command.h" /* cmdline */
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 (CONST_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++;
478 n /= 10;
480 while (n != 0);
482 return digits;
485 /* --------------------------------------------------------------------------------------------- */
487 static void
488 format_device_number (char *buf, size_t bufsize, dev_t dev)
490 dev_t major_dev = major (dev);
491 dev_t minor_dev = minor (dev);
492 unsigned int major_digits = ilog10 (major_dev);
493 unsigned int minor_digits = ilog10 (minor_dev);
495 g_assert (bufsize >= 1);
497 if (major_digits + 1 + minor_digits + 1 <= bufsize)
498 g_snprintf (buf, bufsize, "%lu,%lu", (unsigned long) major_dev, (unsigned long) minor_dev);
499 else
500 g_strlcpy (buf, _("[dev]"), bufsize);
503 /* --------------------------------------------------------------------------------------------- */
504 /** size */
506 static const char *
507 string_file_size (file_entry_t * fe, int len)
509 static char buffer[BUF_TINY];
511 /* Don't ever show size of ".." since we don't calculate it */
512 if (DIR_IS_DOTDOT (fe->fname))
513 return _("UP--DIR");
515 #ifdef HAVE_STRUCT_STAT_ST_RDEV
516 if (S_ISBLK (fe->st.st_mode) || S_ISCHR (fe->st.st_mode))
517 format_device_number (buffer, len + 1, fe->st.st_rdev);
518 else
519 #endif
520 size_trunc_len (buffer, (unsigned int) len, fe->st.st_size, 0, panels_options.kilobyte_si);
522 return buffer;
525 /* --------------------------------------------------------------------------------------------- */
526 /** bsize */
528 static const char *
529 string_file_size_brief (file_entry_t * fe, int len)
531 if (S_ISLNK (fe->st.st_mode) && !link_isdir (fe))
532 return _("SYMLINK");
534 if ((S_ISDIR (fe->st.st_mode) || link_isdir (fe)) && !DIR_IS_DOTDOT (fe->fname))
535 return _("SUB-DIR");
537 return string_file_size (fe, len);
540 /* --------------------------------------------------------------------------------------------- */
541 /** This functions return a string representation of a file entry type */
543 static const char *
544 string_file_type (file_entry_t * fe, int len)
546 static char buffer[2];
548 (void) len;
550 if (S_ISDIR (fe->st.st_mode))
551 buffer[0] = PATH_SEP;
552 else if (S_ISLNK (fe->st.st_mode))
554 if (link_isdir (fe))
555 buffer[0] = '~';
556 else if (fe->f.stale_link)
557 buffer[0] = '!';
558 else
559 buffer[0] = '@';
561 else if (S_ISCHR (fe->st.st_mode))
562 buffer[0] = '-';
563 else if (S_ISSOCK (fe->st.st_mode))
564 buffer[0] = '=';
565 else if (S_ISDOOR (fe->st.st_mode))
566 buffer[0] = '>';
567 else if (S_ISBLK (fe->st.st_mode))
568 buffer[0] = '+';
569 else if (S_ISFIFO (fe->st.st_mode))
570 buffer[0] = '|';
571 else if (S_ISNAM (fe->st.st_mode))
572 buffer[0] = '#';
573 else if (!S_ISREG (fe->st.st_mode))
574 buffer[0] = '?'; /* non-regular of unknown kind */
575 else if (is_exe (fe->st.st_mode))
576 buffer[0] = '*';
577 else
578 buffer[0] = ' ';
579 buffer[1] = '\0';
580 return buffer;
583 /* --------------------------------------------------------------------------------------------- */
584 /** mtime */
586 static const char *
587 string_file_mtime (file_entry_t * fe, int len)
589 (void) len;
591 return file_date (fe->st.st_mtime);
594 /* --------------------------------------------------------------------------------------------- */
595 /** atime */
597 static const char *
598 string_file_atime (file_entry_t * fe, int len)
600 (void) len;
602 return file_date (fe->st.st_atime);
605 /* --------------------------------------------------------------------------------------------- */
606 /** ctime */
608 static const char *
609 string_file_ctime (file_entry_t * fe, int len)
611 (void) len;
613 return file_date (fe->st.st_ctime);
616 /* --------------------------------------------------------------------------------------------- */
617 /** perm */
619 static const char *
620 string_file_permission (file_entry_t * fe, int len)
622 (void) len;
624 return string_perm (fe->st.st_mode);
627 /* --------------------------------------------------------------------------------------------- */
628 /** mode */
630 static const char *
631 string_file_perm_octal (file_entry_t * fe, int len)
633 static char buffer[10];
635 (void) len;
637 g_snprintf (buffer, sizeof (buffer), "0%06lo", (unsigned long) fe->st.st_mode);
638 return buffer;
641 /* --------------------------------------------------------------------------------------------- */
642 /** nlink */
644 static const char *
645 string_file_nlinks (file_entry_t * fe, int len)
647 static char buffer[BUF_TINY];
649 (void) len;
651 g_snprintf (buffer, sizeof (buffer), "%16d", (int) fe->st.st_nlink);
652 return buffer;
655 /* --------------------------------------------------------------------------------------------- */
656 /** inode */
658 static const char *
659 string_inode (file_entry_t * fe, int len)
661 static char buffer[10];
663 (void) len;
665 g_snprintf (buffer, sizeof (buffer), "%lu", (unsigned long) fe->st.st_ino);
666 return buffer;
669 /* --------------------------------------------------------------------------------------------- */
670 /** nuid */
672 static const char *
673 string_file_nuid (file_entry_t * fe, int len)
675 static char buffer[10];
677 (void) len;
679 g_snprintf (buffer, sizeof (buffer), "%lu", (unsigned long) fe->st.st_uid);
680 return buffer;
683 /* --------------------------------------------------------------------------------------------- */
684 /** ngid */
686 static const char *
687 string_file_ngid (file_entry_t * fe, int len)
689 static char buffer[10];
691 (void) len;
693 g_snprintf (buffer, sizeof (buffer), "%lu", (unsigned long) fe->st.st_gid);
694 return buffer;
697 /* --------------------------------------------------------------------------------------------- */
698 /** owner */
700 static const char *
701 string_file_owner (file_entry_t * fe, int len)
703 (void) len;
705 return get_owner (fe->st.st_uid);
708 /* --------------------------------------------------------------------------------------------- */
709 /** group */
711 static const char *
712 string_file_group (file_entry_t * fe, int len)
714 (void) len;
716 return get_group (fe->st.st_gid);
719 /* --------------------------------------------------------------------------------------------- */
720 /** mark */
722 static const char *
723 string_marked (file_entry_t * fe, int len)
725 (void) len;
727 return fe->f.marked ? "*" : " ";
730 /* --------------------------------------------------------------------------------------------- */
731 /** space */
733 static const char *
734 string_space (file_entry_t * fe, int len)
736 (void) fe;
737 (void) len;
739 return " ";
742 /* --------------------------------------------------------------------------------------------- */
743 /** dot */
745 static const char *
746 string_dot (file_entry_t * fe, int len)
748 (void) fe;
749 (void) len;
751 return ".";
754 /* --------------------------------------------------------------------------------------------- */
756 static int
757 file_compute_color (int attr, file_entry_t * fe)
759 switch (attr)
761 case SELECTED:
762 return (SELECTED_COLOR);
763 case MARKED:
764 return (MARKED_COLOR);
765 case MARKED_SELECTED:
766 return (MARKED_SELECTED_COLOR);
767 case STATUS:
768 return (NORMAL_COLOR);
769 case NORMAL:
770 default:
771 if (!panels_options.filetype_mode)
772 return (NORMAL_COLOR);
775 return mc_fhl_get_color (mc_filehighlight, fe);
778 /* --------------------------------------------------------------------------------------------- */
779 /** Returns the number of items in the given panel */
781 static int
782 panel_items (const WPanel * p)
784 return panel_lines (p) * p->list_cols;
787 /* --------------------------------------------------------------------------------------------- */
788 /** Formats the file number file_index of panel in the buffer dest */
790 static filename_scroll_flag_t
791 format_file (WPanel * panel, int file_index, int width, int attr, gboolean isstatus,
792 int *field_length)
794 int color = NORMAL_COLOR;
795 int length = 0;
796 format_e *format, *home;
797 file_entry_t *fe = NULL;
798 filename_scroll_flag_t res = FILENAME_NOSCROLL;
800 *field_length = 0;
802 if (file_index < panel->dir.len)
804 fe = &panel->dir.list[file_index];
805 color = file_compute_color (attr, fe);
808 home = isstatus ? panel->status_format : panel->format;
810 for (format = home; format != NULL && length != width; format = format->next)
812 if (format->string_fn != NULL)
814 const char *txt = " ";
815 int len, perm = 0;
816 const char *prepared_text;
817 int name_offset = 0;
819 if (fe != NULL)
820 txt = format->string_fn (fe, format->field_len);
822 len = format->field_len;
823 if (len + length > width)
824 len = width - length;
825 if (len <= 0)
826 break;
828 if (!isstatus && panel->content_shift > -1 && strcmp (format->id, "name") == 0)
830 int str_len;
831 int i;
833 *field_length = len + 1;
835 str_len = str_length (txt);
836 i = MAX (0, str_len - len);
837 panel->max_shift = MAX (panel->max_shift, i);
838 i = MIN (panel->content_shift, i);
840 if (i > -1)
842 name_offset = str_offset_to_pos (txt, i);
843 if (str_len > len)
845 res = FILENAME_SCROLL_LEFT;
846 if (str_length (txt + name_offset) > len)
847 res |= FILENAME_SCROLL_RIGHT;
852 if (panels_options.permission_mode)
854 if (strcmp (format->id, "perm") == 0)
855 perm = 1;
856 else if (strcmp (format->id, "mode") == 0)
857 perm = 2;
860 if (color >= 0)
861 tty_setcolor (color);
862 else
863 tty_lowlevel_setcolor (-color);
865 if (!isstatus && panel->content_shift > -1)
866 prepared_text =
867 str_fit_to_term (txt + name_offset, len, HIDE_FIT (format->just_mode));
868 else
869 prepared_text = str_fit_to_term (txt, len, format->just_mode);
871 if (perm != 0 && fe != NULL)
872 add_permission_string (prepared_text, format->field_len, fe, attr, color,
873 perm != 1);
874 else
875 tty_print_string (prepared_text);
877 length += len;
879 else
881 if (attr == SELECTED || attr == MARKED_SELECTED)
882 tty_setcolor (SELECTED_COLOR);
883 else
884 tty_setcolor (NORMAL_COLOR);
885 tty_print_one_vline (TRUE);
886 length++;
890 if (length < width)
892 int y, x;
894 tty_getyx (&y, &x);
895 tty_draw_hline (y, x, ' ', width - length);
898 return res;
901 /* --------------------------------------------------------------------------------------------- */
903 static void
904 repaint_file (WPanel * panel, int file_index, gboolean mv, int attr, gboolean isstatus)
906 Widget *w = WIDGET (panel);
908 int nth_column = 0;
909 int width;
910 int offset = 0;
911 filename_scroll_flag_t ret_frm;
912 int ypos = 0;
913 gboolean panel_is_split;
914 int fln = 0;
916 panel_is_split = !isstatus && panel->list_cols > 1;
917 width = w->cols - 2;
919 if (panel_is_split)
921 nth_column = (file_index - panel->top_file) / panel_lines (panel);
922 width /= panel->list_cols;
924 offset = width * nth_column;
926 if (nth_column + 1 >= panel->list_cols)
927 width = w->cols - offset - 2;
930 /* Nothing to paint */
931 if (width <= 0)
932 return;
934 if (mv)
936 ypos = file_index - panel->top_file;
938 if (panel_is_split)
939 ypos %= panel_lines (panel);
941 ypos += 2; /* top frame and header */
942 widget_move (w, ypos, offset + 1);
945 ret_frm = format_file (panel, file_index, width, attr, isstatus, &fln);
947 if (panel_is_split && nth_column + 1 < panel->list_cols)
949 tty_setcolor (NORMAL_COLOR);
950 tty_print_one_vline (TRUE);
953 if (ret_frm != FILENAME_NOSCROLL && mv)
955 if (!panel_is_split && fln > 0)
957 if (panel->list_format != list_long)
958 width = fln;
959 else
961 offset = width - fln + 1;
962 width = fln - 1;
966 widget_move (w, ypos, offset);
967 tty_setcolor (NORMAL_COLOR);
968 tty_print_string (panel_filename_scroll_left_char);
970 if ((ret_frm & FILENAME_SCROLL_RIGHT) != 0)
972 offset += width;
973 if (nth_column + 1 >= panel->list_cols)
974 offset++;
976 widget_move (w, ypos, offset);
977 tty_setcolor (NORMAL_COLOR);
978 tty_print_string (panel_filename_scroll_right_char);
983 /* --------------------------------------------------------------------------------------------- */
985 static void
986 display_mini_info (WPanel * panel)
988 Widget *w = WIDGET (panel);
990 if (!panels_options.show_mini_info)
991 return;
993 widget_move (w, panel_lines (panel) + 3, 1);
995 if (panel->searching)
997 tty_setcolor (INPUT_COLOR);
998 tty_print_char ('/');
999 tty_print_string (str_fit_to_term (panel->search_buffer, w->cols - 3, J_LEFT));
1000 return;
1003 /* Status resolves links and show them */
1004 set_colors (panel);
1006 if (S_ISLNK (panel->dir.list[panel->selected].st.st_mode))
1008 char link_target[MC_MAXPATHLEN];
1009 vfs_path_t *lc_link_vpath;
1010 int len;
1012 lc_link_vpath =
1013 vfs_path_append_new (panel->cwd_vpath, panel->dir.list[panel->selected].fname,
1014 (char *) NULL);
1015 len = mc_readlink (lc_link_vpath, link_target, MC_MAXPATHLEN - 1);
1016 vfs_path_free (lc_link_vpath);
1017 if (len > 0)
1019 link_target[len] = 0;
1020 tty_print_string ("-> ");
1021 tty_print_string (str_fit_to_term (link_target, w->cols - 5, J_LEFT_FIT));
1023 else
1024 tty_print_string (str_fit_to_term (_("<readlink failed>"), w->cols - 2, J_LEFT));
1026 else if (DIR_IS_DOTDOT (panel->dir.list[panel->selected].fname))
1028 /* FIXME:
1029 * while loading directory (dir_list_load() and dir_list_reload()),
1030 * the actual stat info about ".." directory isn't got;
1031 * so just don't display incorrect info about ".." directory */
1032 tty_print_string (str_fit_to_term (_("UP--DIR"), w->cols - 2, J_LEFT));
1034 else
1035 /* Default behavior */
1036 repaint_file (panel, panel->selected, FALSE, STATUS, TRUE);
1039 /* --------------------------------------------------------------------------------------------- */
1041 static void
1042 paint_dir (WPanel * panel)
1044 int i;
1045 int items; /* Number of items */
1047 items = panel_items (panel);
1048 /* reset max len of filename because we have the new max length for the new file list */
1049 panel->max_shift = -1;
1051 for (i = 0; i < items; i++)
1053 int color = 0; /* Color value of the line */
1055 if (i + panel->top_file < panel->dir.len)
1057 color = 2 * (panel->dir.list[i + panel->top_file].f.marked);
1058 color += (panel->selected == i + panel->top_file && panel->active);
1061 repaint_file (panel, i + panel->top_file, TRUE, color, FALSE);
1064 tty_set_normal_attrs ();
1067 /* --------------------------------------------------------------------------------------------- */
1069 static void
1070 display_total_marked_size (const WPanel * panel, int y, int x, gboolean size_only)
1072 const Widget *w = CONST_WIDGET (panel);
1074 char buffer[BUF_SMALL], b_bytes[BUF_SMALL];
1075 const char *buf;
1076 int cols;
1078 if (panel->marked <= 0)
1079 return;
1081 buf = size_only ? b_bytes : buffer;
1082 cols = w->cols - 2;
1084 g_strlcpy (b_bytes, size_trunc_sep (panel->total, panels_options.kilobyte_si),
1085 sizeof (b_bytes));
1087 if (!size_only)
1088 g_snprintf (buffer, sizeof (buffer),
1089 ngettext ("%s in %d file", "%s in %d files", panel->marked),
1090 b_bytes, panel->marked);
1092 /* don't forget spaces around buffer content */
1093 buf = str_trunc (buf, cols - 4);
1095 if (x < 0)
1096 /* center in panel */
1097 x = (w->cols - str_term_width1 (buf)) / 2 - 1;
1100 * y == panel_lines (panel) + 2 for mini_info_separator
1101 * y == w->lines - 1 for panel bottom frame
1103 widget_move (w, y, x);
1104 tty_setcolor (MARKED_COLOR);
1105 tty_printf (" %s ", buf);
1108 /* --------------------------------------------------------------------------------------------- */
1110 static void
1111 mini_info_separator (const WPanel * panel)
1113 if (panels_options.show_mini_info)
1115 const Widget *w = CONST_WIDGET (panel);
1116 int y;
1118 y = panel_lines (panel) + 2;
1120 tty_setcolor (NORMAL_COLOR);
1121 tty_draw_hline (w->y + y, w->x + 1, ACS_HLINE, w->cols - 2);
1122 /* Status displays total marked size.
1123 * Centered in panel, full format. */
1124 display_total_marked_size (panel, y, -1, FALSE);
1128 /* --------------------------------------------------------------------------------------------- */
1130 static void
1131 show_free_space (const WPanel * panel)
1133 /* Used to figure out how many free space we have */
1134 static struct my_statfs myfs_stats;
1135 /* Old current working directory for displaying free space */
1136 static char *old_cwd = NULL;
1138 /* Don't try to stat non-local fs */
1139 if (!vfs_file_is_local (panel->cwd_vpath) || !free_space)
1140 return;
1142 if (old_cwd == NULL || strcmp (old_cwd, vfs_path_as_str (panel->cwd_vpath)) != 0)
1144 char rpath[PATH_MAX];
1146 init_my_statfs ();
1147 g_free (old_cwd);
1148 old_cwd = g_strdup (vfs_path_as_str (panel->cwd_vpath));
1150 if (mc_realpath (old_cwd, rpath) == NULL)
1151 return;
1153 my_statfs (&myfs_stats, rpath);
1156 if (myfs_stats.avail != 0 || myfs_stats.total != 0)
1158 const Widget *w = CONST_WIDGET (panel);
1159 char buffer1[6], buffer2[6], tmp[BUF_SMALL];
1161 size_trunc_len (buffer1, sizeof (buffer1) - 1, myfs_stats.avail, 1,
1162 panels_options.kilobyte_si);
1163 size_trunc_len (buffer2, sizeof (buffer2) - 1, myfs_stats.total, 1,
1164 panels_options.kilobyte_si);
1165 g_snprintf (tmp, sizeof (tmp), " %s/%s (%d%%) ", buffer1, buffer2,
1166 myfs_stats.total == 0 ? 0 :
1167 (int) (100 * (long double) myfs_stats.avail / myfs_stats.total));
1168 widget_move (w, w->lines - 1, w->cols - 2 - (int) strlen (tmp));
1169 tty_setcolor (NORMAL_COLOR);
1170 tty_print_string (tmp);
1174 /* --------------------------------------------------------------------------------------------- */
1176 * Prepare path string for showing in panel's header.
1177 * Passwords will removed, also home dir will replaced by ~
1179 * @param panel WPanel object
1181 * @return newly allocated string.
1184 static char *
1185 panel_correct_path_to_show (const WPanel * panel)
1187 vfs_path_t *last_vpath;
1188 const vfs_path_element_t *path_element;
1189 char *return_path;
1190 int elements_count;
1192 elements_count = vfs_path_elements_count (panel->cwd_vpath);
1194 /* get last path element */
1195 path_element = vfs_path_element_clone (vfs_path_get_by_index (panel->cwd_vpath, -1));
1197 if (elements_count > 1 && (strcmp (path_element->class->name, "cpiofs") == 0 ||
1198 strcmp (path_element->class->name, "extfs") == 0 ||
1199 strcmp (path_element->class->name, "tarfs") == 0))
1201 const char *archive_name;
1202 const vfs_path_element_t *prev_path_element;
1204 /* get previous path element for catching archive name */
1205 prev_path_element = vfs_path_get_by_index (panel->cwd_vpath, -2);
1206 archive_name = strrchr (prev_path_element->path, PATH_SEP);
1207 if (archive_name != NULL)
1208 last_vpath = vfs_path_from_str_flags (archive_name + 1, VPF_NO_CANON);
1209 else
1211 last_vpath = vfs_path_from_str_flags (prev_path_element->path, VPF_NO_CANON);
1212 last_vpath->relative = TRUE;
1215 else
1217 last_vpath = vfs_path_new ();
1218 last_vpath->relative = TRUE;
1221 vfs_path_add_element (last_vpath, path_element);
1222 return_path =
1223 vfs_path_to_str_flags (last_vpath, 0,
1224 VPF_STRIP_HOME | VPF_STRIP_PASSWORD | VPF_HIDE_CHARSET);
1225 vfs_path_free (last_vpath);
1227 return return_path;
1230 /* --------------------------------------------------------------------------------------------- */
1232 * Get Current path element encoding
1234 * @param panel WPanel object
1236 * @return newly allocated string or NULL if path charset is same as system charset
1239 #ifdef HAVE_CHARSET
1240 static char *
1241 panel_get_encoding_info_str (const WPanel * panel)
1243 char *ret_str = NULL;
1244 const vfs_path_element_t *path_element;
1246 path_element = vfs_path_get_by_index (panel->cwd_vpath, -1);
1247 if (path_element->encoding != NULL)
1248 ret_str = g_strdup_printf ("[%s]", path_element->encoding);
1250 return ret_str;
1252 #endif
1254 /* --------------------------------------------------------------------------------------------- */
1256 static void
1257 show_dir (const WPanel * panel)
1259 const Widget *w = CONST_WIDGET (panel);
1261 gchar *tmp;
1263 set_colors (panel);
1264 tty_draw_box (w->y, w->x, w->lines, w->cols, FALSE);
1266 if (panels_options.show_mini_info)
1268 int y;
1270 y = panel_lines (panel) + 2;
1272 widget_move (w, y, 0);
1273 tty_print_alt_char (ACS_LTEE, FALSE);
1274 widget_move (w, y, w->cols - 1);
1275 tty_print_alt_char (ACS_RTEE, FALSE);
1278 widget_move (w, 0, 1);
1279 tty_print_string (panel_history_prev_item_sign);
1281 tmp = panels_options.show_dot_files ? panel_hiddenfiles_sign_show : panel_hiddenfiles_sign_hide;
1282 tmp = g_strdup_printf ("%s[%s]%s", tmp, panel_history_show_list_sign,
1283 panel_history_next_item_sign);
1285 widget_move (w, 0, w->cols - 6);
1286 tty_print_string (tmp);
1288 g_free (tmp);
1290 widget_move (w, 0, 3);
1292 if (panel->is_panelized)
1293 tty_printf (" %s ", _("Panelize"));
1294 #ifdef HAVE_CHARSET
1295 else
1297 tmp = panel_get_encoding_info_str (panel);
1298 if (tmp != NULL)
1300 tty_printf ("%s", tmp);
1301 widget_move (w, 0, 3 + strlen (tmp));
1302 g_free (tmp);
1305 #endif
1307 if (panel->active)
1308 tty_setcolor (REVERSE_COLOR);
1310 tmp = panel_correct_path_to_show (panel);
1311 tty_printf (" %s ", str_term_trim (tmp, MIN (MAX (w->cols - 12, 0), w->cols)));
1312 g_free (tmp);
1314 if (!panels_options.show_mini_info)
1316 if (panel->marked == 0)
1318 /* Show size of curret file in the bottom of panel */
1319 if (S_ISREG (panel->dir.list[panel->selected].st.st_mode))
1321 char buffer[BUF_SMALL];
1323 g_snprintf (buffer, sizeof (buffer), " %s ",
1324 size_trunc_sep (panel->dir.list[panel->selected].st.st_size,
1325 panels_options.kilobyte_si));
1326 tty_setcolor (NORMAL_COLOR);
1327 widget_move (w, w->lines - 1, 4);
1328 tty_print_string (buffer);
1331 else
1333 /* Show total size of marked files
1334 * In the bottom of panel, display size only. */
1335 display_total_marked_size (panel, w->lines - 1, 2, TRUE);
1339 show_free_space (panel);
1341 if (panel->active)
1342 tty_set_normal_attrs ();
1345 /* --------------------------------------------------------------------------------------------- */
1347 static void
1348 adjust_top_file (WPanel * panel)
1350 int items;
1352 items = panel_items (panel);
1354 if (panel->dir.len <= items)
1356 /* If all files fit, show them all. */
1357 panel->top_file = 0;
1359 else
1361 int i;
1363 /* top_file has to be in the range [selected-items+1, selected] so that
1364 the selected file is visible.
1365 top_file should be in the range [0, count-items] so that there's
1366 no empty space wasted.
1367 Within these ranges, adjust it by as little as possible. */
1369 if (panel->top_file < 0)
1370 panel->top_file = 0;
1372 i = panel->selected - items + 1;
1373 if (panel->top_file < i)
1374 panel->top_file = i;
1376 i = panel->dir.len - items;
1377 if (panel->top_file > i)
1378 panel->top_file = i;
1380 if (panel->top_file > panel->selected)
1381 panel->top_file = panel->selected;
1385 /* --------------------------------------------------------------------------------------------- */
1386 /** add "#enc:encodning" to end of path */
1387 /* if path end width a previous #enc:, only encoding is changed no additional
1388 * #enc: is appended
1389 * retun new string
1392 static char *
1393 panel_save_name (WPanel * panel)
1395 /* If the program is shuting down */
1396 if ((mc_global.midnight_shutdown && auto_save_setup) || saving_setup)
1397 return g_strdup (panel->panel_name);
1399 return g_strconcat ("Temporal:", panel->panel_name, (char *) NULL);
1402 /* --------------------------------------------------------------------------------------------- */
1404 static void
1405 directory_history_add (WPanel * panel, const vfs_path_t * vpath)
1407 char *tmp;
1409 tmp = vfs_path_to_str_flags (vpath, 0, VPF_STRIP_PASSWORD);
1410 panel->dir_history = list_append_unique (panel->dir_history, tmp);
1411 panel->dir_history_current = panel->dir_history;
1414 /* --------------------------------------------------------------------------------------------- */
1416 /* "history_load" event handler */
1417 static gboolean
1418 panel_load_history (const gchar * event_group_name, const gchar * event_name,
1419 gpointer init_data, gpointer data)
1421 WPanel *p = PANEL (init_data);
1422 ev_history_load_save_t *ev = (ev_history_load_save_t *) data;
1424 (void) event_group_name;
1425 (void) event_name;
1427 if (ev->receiver == NULL || ev->receiver == WIDGET (p))
1429 if (ev->cfg != NULL)
1430 p->dir_history = history_load (ev->cfg, p->hist_name);
1431 else
1432 p->dir_history = history_get (p->hist_name);
1434 directory_history_add (p, p->cwd_vpath);
1437 return TRUE;
1440 /* --------------------------------------------------------------------------------------------- */
1442 /* "history_save" event handler */
1443 static gboolean
1444 panel_save_history (const gchar * event_group_name, const gchar * event_name,
1445 gpointer init_data, gpointer data)
1447 WPanel *p = PANEL (init_data);
1449 (void) event_group_name;
1450 (void) event_name;
1452 if (p->dir_history != NULL)
1454 ev_history_load_save_t *ev = (ev_history_load_save_t *) data;
1456 history_save (ev->cfg, p->hist_name, p->dir_history);
1459 return TRUE;
1462 /* --------------------------------------------------------------------------------------------- */
1464 static void
1465 panel_destroy (WPanel * p)
1467 size_t i;
1469 if (panels_options.auto_save_setup)
1471 char *name;
1473 name = panel_save_name (p);
1474 panel_save_setup (p, name);
1475 g_free (name);
1478 panel_clean_dir (p);
1480 /* clean history */
1481 if (p->dir_history != NULL)
1483 /* directory history is already saved before this moment */
1484 p->dir_history = g_list_first (p->dir_history);
1485 g_list_free_full (p->dir_history, g_free);
1487 g_free (p->hist_name);
1489 delete_format (p->format);
1490 delete_format (p->status_format);
1492 g_free (p->user_format);
1493 for (i = 0; i < LIST_FORMATS; i++)
1494 g_free (p->user_status_format[i]);
1496 g_free (p->dir.list);
1497 g_free (p->panel_name);
1499 vfs_path_free (p->lwd_vpath);
1500 vfs_path_free (p->cwd_vpath);
1503 /* --------------------------------------------------------------------------------------------- */
1505 static inline void
1506 panel_format_modified (WPanel * panel)
1508 panel->format_modified = 1;
1511 /* --------------------------------------------------------------------------------------------- */
1513 static void
1514 panel_paint_sort_info (const WPanel * panel)
1516 if (*panel->sort_field->hotkey != '\0')
1518 const char *sort_sign =
1519 panel->sort_info.reverse ? panel_sort_up_sign : panel_sort_down_sign;
1520 char *str;
1522 str = g_strdup_printf ("%s%s", sort_sign, Q_ (panel->sort_field->hotkey));
1523 widget_move (panel, 1, 1);
1524 tty_print_string (str);
1525 g_free (str);
1529 /* --------------------------------------------------------------------------------------------- */
1531 static const char *
1532 panel_get_title_without_hotkey (const char *title)
1534 static char translated_title[BUF_TINY];
1536 if (title == NULL || title[0] == '\0')
1537 translated_title[0] = '\0';
1538 else
1540 char *hkey;
1542 g_snprintf (translated_title, sizeof (translated_title), "%s", _(title));
1544 hkey = strchr (translated_title, '&');
1545 if (hkey != NULL && hkey[1] != '\0')
1546 memmove (hkey, hkey + 1, strlen (hkey));
1549 return translated_title;
1552 /* --------------------------------------------------------------------------------------------- */
1554 static void
1555 panel_print_header (const WPanel * panel)
1557 const Widget *w = CONST_WIDGET (panel);
1559 int y, x;
1560 int i;
1561 GString *format_txt;
1563 widget_move (w, 1, 1);
1564 tty_getyx (&y, &x);
1565 tty_setcolor (NORMAL_COLOR);
1566 tty_draw_hline (y, x, ' ', w->cols - 2);
1568 format_txt = g_string_new ("");
1570 for (i = 0; i < panel->list_cols; i++)
1572 format_e *format;
1574 for (format = panel->format; format != NULL; format = format->next)
1576 if (format->string_fn != NULL)
1578 g_string_set_size (format_txt, 0);
1580 if (panel->list_format == list_long
1581 && strcmp (format->id, panel->sort_field->id) == 0)
1582 g_string_append (format_txt,
1583 panel->sort_info.reverse
1584 ? panel_sort_up_sign : panel_sort_down_sign);
1586 g_string_append (format_txt, format->title);
1588 if (panel->filter != NULL && strcmp (format->id, "name") == 0)
1590 g_string_append (format_txt, " [");
1591 g_string_append (format_txt, panel->filter);
1592 g_string_append (format_txt, "]");
1595 tty_setcolor (HEADER_COLOR);
1596 tty_print_string (str_fit_to_term (format_txt->str, format->field_len,
1597 J_CENTER_LEFT));
1599 else
1601 tty_setcolor (NORMAL_COLOR);
1602 tty_print_one_vline (TRUE);
1606 if (i < panel->list_cols - 1)
1608 tty_setcolor (NORMAL_COLOR);
1609 tty_print_one_vline (TRUE);
1613 g_string_free (format_txt, TRUE);
1615 if (panel->list_format != list_long)
1616 panel_paint_sort_info (panel);
1619 /* --------------------------------------------------------------------------------------------- */
1621 static const char *
1622 parse_panel_size (WPanel * panel, const char *format, gboolean isstatus)
1624 panel_display_t frame = frame_half;
1625 format = skip_separators (format);
1627 if (strncmp (format, "full", 4) == 0)
1629 frame = frame_full;
1630 format += 4;
1632 else if (strncmp (format, "half", 4) == 0)
1634 frame = frame_half;
1635 format += 4;
1638 if (!isstatus)
1640 panel->frame_size = frame;
1641 panel->list_cols = 1;
1644 /* Now, the optional column specifier */
1645 format = skip_separators (format);
1647 if (g_ascii_isdigit (*format))
1649 if (!isstatus)
1651 panel->list_cols = g_ascii_digit_value (*format);
1652 if (panel->list_cols < 1)
1653 panel->list_cols = 1;
1656 format++;
1659 if (!isstatus)
1660 panel_update_cols (WIDGET (panel), panel->frame_size);
1662 return skip_separators (format);
1665 /* Format is:
1667 all := panel_format? format
1668 panel_format := [full|half] [1-9]
1669 format := one_format_e
1670 | format , one_format_e
1672 one_format_e := just format.id [opt_size]
1673 just := [<=>]
1674 opt_size := : size [opt_expand]
1675 size := [0-9]+
1676 opt_expand := +
1680 /* --------------------------------------------------------------------------------------------- */
1682 static format_e *
1683 parse_display_format (WPanel * panel, const char *format, char **error, gboolean isstatus,
1684 int *res_total_cols)
1686 format_e *darr, *old = NULL, *home = NULL; /* The formats we return */
1687 int total_cols = 0; /* Used columns by the format */
1688 size_t i;
1690 static size_t i18n_timelength = 0; /* flag: check ?Time length at startup */
1692 *error = NULL;
1694 if (i18n_timelength == 0)
1696 i18n_timelength = i18n_checktimelength (); /* Musn't be 0 */
1698 for (i = 0; panel_fields[i].id != NULL; i++)
1699 if (strcmp ("time", panel_fields[i].id + 1) == 0)
1700 panel_fields[i].min_size = i18n_timelength;
1704 * This makes sure that the panel and mini status full/half mode
1705 * setting is equal
1707 format = parse_panel_size (panel, format, isstatus);
1709 while (*format != '\0')
1710 { /* format can be an empty string */
1711 align_crt_t justify; /* Which mode. */
1712 gboolean set_justify = TRUE; /* flag: set justification mode? */
1713 gboolean found = FALSE;
1715 darr = g_new0 (format_e, 1);
1717 /* I'm so ugly, don't look at me :-) */
1718 if (home == NULL)
1719 home = old = darr;
1721 old->next = darr;
1722 darr->next = NULL;
1723 old = darr;
1725 format = skip_separators (format);
1727 switch (*format)
1729 case '<':
1730 justify = J_LEFT;
1731 format = skip_separators (format + 1);
1732 break;
1733 case '=':
1734 justify = J_CENTER;
1735 format = skip_separators (format + 1);
1736 break;
1737 case '>':
1738 justify = J_RIGHT;
1739 format = skip_separators (format + 1);
1740 break;
1741 default:
1742 justify = J_LEFT;
1743 set_justify = FALSE;
1744 break;
1747 for (i = 0; panel_fields[i].id != NULL; i++)
1749 size_t klen;
1751 klen = strlen (panel_fields[i].id);
1753 if (strncmp (format, panel_fields[i].id, klen) != 0)
1754 continue;
1756 format += klen;
1758 darr->requested_field_len = panel_fields[i].min_size;
1759 darr->string_fn = panel_fields[i].string_fn;
1760 darr->title = g_strdup (panel_get_title_without_hotkey (panel_fields[i].title_hotkey));
1762 darr->id = panel_fields[i].id;
1763 darr->expand = panel_fields[i].expands;
1764 darr->just_mode = panel_fields[i].default_just;
1766 if (set_justify)
1768 if (IS_FIT (darr->just_mode))
1769 darr->just_mode = MAKE_FIT (justify);
1770 else
1771 darr->just_mode = justify;
1773 found = TRUE;
1775 format = skip_separators (format);
1777 /* If we have a size specifier */
1778 if (*format == ':')
1780 int req_length;
1782 /* If the size was specified, we don't want
1783 * auto-expansion by default
1785 darr->expand = FALSE;
1786 format++;
1787 req_length = atoi (format);
1788 darr->requested_field_len = req_length;
1790 format = skip_numbers (format);
1792 /* Now, if they insist on expansion */
1793 if (*format == '+')
1795 darr->expand = TRUE;
1796 format++;
1801 break;
1804 if (!found)
1806 size_t pos;
1807 char *tmp_format;
1809 pos = strlen (format);
1810 if (pos > 8)
1811 pos = 8;
1813 tmp_format = g_strndup (format, pos);
1814 delete_format (home);
1815 *error =
1816 g_strconcat (_("Unknown tag on display format:"), " ", tmp_format, (char *) NULL);
1817 g_free (tmp_format);
1819 return NULL;
1822 total_cols += darr->requested_field_len;
1825 *res_total_cols = total_cols;
1826 return home;
1829 /* --------------------------------------------------------------------------------------------- */
1831 static format_e *
1832 use_display_format (WPanel * panel, const char *format, char **error, gboolean isstatus)
1834 #define MAX_EXPAND 4
1835 int expand_top = 0; /* Max used element in expand */
1836 int usable_columns; /* Usable columns in the panel */
1837 int total_cols = 0;
1838 format_e *darr, *home;
1840 if (format == NULL)
1841 format = DEFAULT_USER_FORMAT;
1843 home = parse_display_format (panel, format, error, isstatus, &total_cols);
1845 if (*error != NULL)
1846 return NULL;
1848 panel->dirty = 1;
1850 usable_columns = WIDGET (panel)->cols - 2;
1851 /* Status needn't to be split */
1852 if (!isstatus)
1854 usable_columns /= panel->list_cols;
1855 if (panel->list_cols > 1)
1856 usable_columns--;
1859 /* Look for the expandable fields and set field_len based on the requested field len */
1860 for (darr = home; darr != NULL && expand_top < MAX_EXPAND; darr = darr->next)
1862 darr->field_len = darr->requested_field_len;
1863 if (darr->expand)
1864 expand_top++;
1867 /* If we used more columns than the available columns, adjust that */
1868 if (total_cols > usable_columns)
1870 int dif;
1871 int pdif = 0;
1873 dif = total_cols - usable_columns;
1875 while (dif != 0 && pdif != dif)
1877 pdif = dif;
1879 for (darr = home; darr; darr = darr->next)
1880 if (dif != 0 && darr->field_len != 1)
1882 darr->field_len--;
1883 dif--;
1887 total_cols = usable_columns; /* give up, the rest should be truncated */
1890 /* Expand the available space */
1891 if (usable_columns > total_cols && expand_top != 0)
1893 int i;
1894 int spaces = (usable_columns - total_cols) / expand_top;
1896 for (i = 0, darr = home; darr && (i < expand_top); darr = darr->next)
1897 if (darr->expand)
1899 darr->field_len += spaces;
1900 if (i == 0)
1901 darr->field_len += (usable_columns - total_cols) % expand_top;
1902 i++;
1905 return home;
1908 /* --------------------------------------------------------------------------------------------- */
1909 /** Given the panel->view_type returns the format string to be parsed */
1911 static const char *
1912 panel_format (WPanel * panel)
1915 switch (panel->list_format)
1917 case list_long:
1918 return "full perm space nlink space owner space group space size space mtime space name";
1920 case list_brief:
1922 static char format[BUF_TINY];
1923 int brief_cols = panel->brief_cols;
1925 if (brief_cols < 1)
1926 brief_cols = 2;
1928 if (brief_cols > 9)
1929 brief_cols = 9;
1931 g_snprintf (format, sizeof (format), "half %d type name", brief_cols);
1932 return format;
1935 case list_user:
1936 return panel->user_format;
1938 default:
1939 case list_full:
1940 return "half type name | size | mtime";
1944 /* --------------------------------------------------------------------------------------------- */
1946 static const char *
1947 mini_status_format (WPanel * panel)
1949 if (panel->user_mini_status)
1950 return panel->user_status_format[panel->list_format];
1952 switch (panel->list_format)
1954 case list_long:
1955 return "full perm space nlink space owner space group space size space mtime space name";
1957 case list_brief:
1958 return "half type name space bsize space perm space";
1960 case list_full:
1961 return "half type name";
1963 default:
1964 case list_user:
1965 return panel->user_format;
1969 /* */
1970 /* Panel operation commands */
1971 /* */
1973 /* --------------------------------------------------------------------------------------------- */
1974 /** Used to emulate Lynx's entering leaving a directory with the arrow keys */
1976 static cb_ret_t
1977 maybe_cd (gboolean move_up_dir)
1979 if (panels_options.navigate_with_arrows && (cmdline->buffer[0] == '\0'))
1981 if (move_up_dir)
1983 vfs_path_t *up_dir;
1985 up_dir = vfs_path_from_str ("..");
1986 do_cd (up_dir, cd_exact);
1987 vfs_path_free (up_dir);
1988 return MSG_HANDLED;
1991 if (S_ISDIR (selection (current_panel)->st.st_mode)
1992 || link_isdir (selection (current_panel)))
1994 vfs_path_t *vpath;
1996 vpath = vfs_path_from_str (selection (current_panel)->fname);
1997 do_cd (vpath, cd_exact);
1998 vfs_path_free (vpath);
1999 return MSG_HANDLED;
2003 return MSG_NOT_HANDLED;
2006 /* --------------------------------------------------------------------------------------------- */
2008 /* if command line is empty then do 'cd ..' */
2009 static cb_ret_t
2010 force_maybe_cd (void)
2012 if (cmdline->buffer[0] == '\0')
2014 vfs_path_t *up_dir = vfs_path_from_str ("..");
2015 do_cd (up_dir, cd_exact);
2016 vfs_path_free (up_dir);
2017 return MSG_HANDLED;
2020 return MSG_NOT_HANDLED;
2023 /* --------------------------------------------------------------------------------------------- */
2025 static inline void
2026 unselect_item (WPanel * panel)
2028 repaint_file (panel, panel->selected, TRUE, 2 * selection (panel)->f.marked, FALSE);
2031 /* --------------------------------------------------------------------------------------------- */
2032 /** Select/unselect all the files like a current file by extension */
2034 static void
2035 panel_select_ext_cmd (void)
2037 gboolean do_select = !selection (current_panel)->f.marked;
2038 char *filename = selection (current_panel)->fname;
2039 char *reg_exp, *cur_file_ext;
2040 mc_search_t *search;
2041 int i;
2043 if (filename == NULL)
2044 return;
2046 cur_file_ext = strutils_regex_escape (extension (filename));
2048 if (cur_file_ext[0] != '\0')
2049 reg_exp = g_strconcat ("^.*\\.", cur_file_ext, "$", (char *) NULL);
2050 else
2051 reg_exp = g_strdup ("^[^\\.]+$");
2053 g_free (cur_file_ext);
2055 search = mc_search_new (reg_exp, NULL);
2056 search->search_type = MC_SEARCH_T_REGEX;
2057 search->is_case_sensitive = FALSE;
2059 for (i = 0; i < current_panel->dir.len; i++)
2061 file_entry_t *file_entry = &current_panel->dir.list[i];
2063 if (DIR_IS_DOTDOT (file_entry->fname) || S_ISDIR (file_entry->st.st_mode))
2064 continue;
2066 if (!mc_search_run (search, file_entry->fname, 0, file_entry->fnamelen, NULL))
2067 continue;
2069 do_file_mark (current_panel, i, do_select);
2072 mc_search_free (search);
2073 g_free (reg_exp);
2077 /* --------------------------------------------------------------------------------------------- */
2079 static int
2080 panel_selected_at_half (const WPanel * panel)
2082 int lines, top;
2084 lines = panel_lines (panel);
2086 /* define top file of column */
2087 top = panel->top_file;
2088 if (panel->list_cols > 1)
2089 top += lines * ((panel->selected - top) / lines);
2091 return (panel->selected - top - lines / 2);
2094 /* --------------------------------------------------------------------------------------------- */
2096 static void
2097 move_down (WPanel * panel)
2099 int items;
2101 if (panel->selected + 1 == panel->dir.len)
2102 return;
2104 unselect_item (panel);
2105 panel->selected++;
2107 items = panel_items (panel);
2109 if (panels_options.scroll_pages && panel->selected - panel->top_file == items)
2111 /* Scroll window half screen */
2112 panel->top_file += items / 2;
2113 if (panel->top_file > panel->dir.len - items)
2114 panel->top_file = panel->dir.len - items;
2115 paint_dir (panel);
2117 else if (panels_options.scroll_center && panel_selected_at_half (panel) > 0)
2119 /* Scroll window when cursor is halfway down */
2120 panel->top_file++;
2121 if (panel->top_file > panel->dir.len - items)
2122 panel->top_file = panel->dir.len - items;
2124 select_item (panel);
2127 /* --------------------------------------------------------------------------------------------- */
2129 static void
2130 move_up (WPanel * panel)
2132 if (panel->selected == 0)
2133 return;
2135 unselect_item (panel);
2136 panel->selected--;
2138 if (panels_options.scroll_pages && panel->selected < panel->top_file)
2140 /* Scroll window half screen */
2141 panel->top_file -= panel_items (panel) / 2;
2142 if (panel->top_file < 0)
2143 panel->top_file = 0;
2144 paint_dir (panel);
2146 else if (panels_options.scroll_center && panel_selected_at_half (panel) < 0)
2148 /* Scroll window when cursor is halfway up */
2149 panel->top_file--;
2150 if (panel->top_file < 0)
2151 panel->top_file = 0;
2153 select_item (panel);
2156 /* --------------------------------------------------------------------------------------------- */
2157 /** Changes the selection by lines (may be negative) */
2159 static void
2160 move_selection (WPanel * panel, int lines)
2162 int new_pos;
2163 gboolean adjust = FALSE;
2165 new_pos = panel->selected + lines;
2166 if (new_pos >= panel->dir.len)
2167 new_pos = panel->dir.len - 1;
2169 if (new_pos < 0)
2170 new_pos = 0;
2172 unselect_item (panel);
2173 panel->selected = new_pos;
2175 if (panel->selected - panel->top_file >= panel_items (panel))
2177 panel->top_file += lines;
2178 adjust = TRUE;
2181 if (panel->selected - panel->top_file < 0)
2183 panel->top_file += lines;
2184 adjust = TRUE;
2187 if (adjust)
2189 if (panel->top_file > panel->selected)
2190 panel->top_file = panel->selected;
2191 if (panel->top_file < 0)
2192 panel->top_file = 0;
2193 paint_dir (panel);
2195 select_item (panel);
2198 /* --------------------------------------------------------------------------------------------- */
2200 static cb_ret_t
2201 move_left (WPanel * panel)
2203 if (panel->list_cols > 1)
2205 move_selection (panel, -panel_lines (panel));
2206 return MSG_HANDLED;
2209 return maybe_cd (TRUE); /* cd .. */
2212 /* --------------------------------------------------------------------------------------------- */
2214 static cb_ret_t
2215 move_right (WPanel * panel)
2217 if (panel->list_cols > 1)
2219 move_selection (panel, panel_lines (panel));
2220 return MSG_HANDLED;
2223 return maybe_cd (FALSE); /* cd (selection) */
2226 /* --------------------------------------------------------------------------------------------- */
2228 static void
2229 prev_page (WPanel * panel)
2231 int items;
2233 if (!panel->selected && !panel->top_file)
2234 return;
2236 unselect_item (panel);
2237 items = panel_items (panel);
2238 if (panel->top_file < items)
2239 items = panel->top_file;
2240 if (items == 0)
2241 panel->selected = 0;
2242 else
2243 panel->selected -= items;
2244 panel->top_file -= items;
2246 select_item (panel);
2247 paint_dir (panel);
2250 /* --------------------------------------------------------------------------------------------- */
2252 static void
2253 goto_parent_dir (WPanel * panel)
2255 if (!panel->is_panelized)
2257 vfs_path_t *up_dir;
2259 up_dir = vfs_path_from_str ("..");
2260 do_cd (up_dir, cd_exact);
2261 vfs_path_free (up_dir);
2263 else
2265 char *fname = panel->dir.list[panel->selected].fname;
2266 const char *bname;
2267 vfs_path_t *dname_vpath;
2269 if (g_path_is_absolute (fname))
2270 fname = g_strdup (fname);
2271 else
2272 fname =
2273 mc_build_filename (vfs_path_as_str (panelized_panel.root_vpath), fname,
2274 (char *) NULL);
2276 bname = x_basename (fname);
2278 if (bname == fname)
2279 dname_vpath = vfs_path_from_str (".");
2280 else
2282 char *dname;
2284 dname = g_strndup (fname, bname - fname);
2285 dname_vpath = vfs_path_from_str (dname);
2286 g_free (dname);
2289 do_cd (dname_vpath, cd_exact);
2290 try_to_select (panel, bname);
2292 vfs_path_free (dname_vpath);
2293 g_free (fname);
2297 /* --------------------------------------------------------------------------------------------- */
2299 static void
2300 next_page (WPanel * panel)
2302 int items;
2304 if (panel->selected == panel->dir.len - 1)
2305 return;
2307 unselect_item (panel);
2308 items = panel_items (panel);
2309 if (panel->top_file > panel->dir.len - 2 * items)
2310 items = panel->dir.len - items - panel->top_file;
2311 if (panel->top_file + items < 0)
2312 items = -panel->top_file;
2313 if (items == 0)
2314 panel->selected = panel->dir.len - 1;
2315 else
2316 panel->selected += items;
2317 panel->top_file += items;
2319 select_item (panel);
2320 paint_dir (panel);
2323 /* --------------------------------------------------------------------------------------------- */
2325 static void
2326 goto_child_dir (WPanel * panel)
2328 if ((S_ISDIR (selection (panel)->st.st_mode) || link_isdir (selection (panel))))
2330 vfs_path_t *vpath;
2332 vpath = vfs_path_from_str (selection (panel)->fname);
2333 do_cd (vpath, cd_exact);
2334 vfs_path_free (vpath);
2338 /* --------------------------------------------------------------------------------------------- */
2340 static void
2341 goto_top_file (WPanel * panel)
2343 unselect_item (panel);
2344 panel->selected = panel->top_file;
2345 select_item (panel);
2348 /* --------------------------------------------------------------------------------------------- */
2350 static void
2351 goto_middle_file (WPanel * panel)
2353 unselect_item (panel);
2354 panel->selected = panel->top_file + panel_items (panel) / 2;
2355 select_item (panel);
2358 /* --------------------------------------------------------------------------------------------- */
2360 static void
2361 goto_bottom_file (WPanel * panel)
2363 unselect_item (panel);
2364 panel->selected = panel->top_file + panel_items (panel) - 1;
2365 select_item (panel);
2368 /* --------------------------------------------------------------------------------------------- */
2370 static void
2371 move_home (WPanel * panel)
2373 if (panel->selected == 0)
2374 return;
2376 unselect_item (panel);
2378 if (panels_options.torben_fj_mode)
2380 int middle_pos = panel->top_file + panel_items (panel) / 2;
2382 if (panel->selected > middle_pos)
2384 goto_middle_file (panel);
2385 return;
2387 if (panel->selected != panel->top_file)
2389 goto_top_file (panel);
2390 return;
2394 panel->top_file = 0;
2395 panel->selected = 0;
2397 paint_dir (panel);
2398 select_item (panel);
2401 /* --------------------------------------------------------------------------------------------- */
2403 static void
2404 move_end (WPanel * panel)
2406 if (panel->selected == panel->dir.len - 1)
2407 return;
2409 unselect_item (panel);
2411 if (panels_options.torben_fj_mode)
2413 int items, middle_pos;
2415 items = panel_items (panel);
2416 middle_pos = panel->top_file + items / 2;
2418 if (panel->selected < middle_pos)
2420 goto_middle_file (panel);
2421 return;
2423 if (panel->selected != panel->top_file + items - 1)
2425 goto_bottom_file (panel);
2426 return;
2430 panel->selected = panel->dir.len - 1;
2431 paint_dir (panel);
2432 select_item (panel);
2435 /* --------------------------------------------------------------------------------------------- */
2437 static void
2438 do_mark_file (WPanel * panel, mark_act_t do_move)
2440 do_file_mark (panel, panel->selected, selection (panel)->f.marked ? 0 : 1);
2441 if ((panels_options.mark_moves_down && do_move == MARK_DOWN) || do_move == MARK_FORCE_DOWN)
2442 move_down (panel);
2443 else if (do_move == MARK_FORCE_UP)
2444 move_up (panel);
2447 /* --------------------------------------------------------------------------------------------- */
2449 static inline void
2450 mark_file (WPanel * panel)
2452 do_mark_file (panel, MARK_DOWN);
2455 /* --------------------------------------------------------------------------------------------- */
2457 static inline void
2458 mark_file_up (WPanel * panel)
2460 do_mark_file (panel, MARK_FORCE_UP);
2463 /* --------------------------------------------------------------------------------------------- */
2465 static inline void
2466 mark_file_down (WPanel * panel)
2468 do_mark_file (panel, MARK_FORCE_DOWN);
2471 /* --------------------------------------------------------------------------------------------- */
2473 static void
2474 mark_file_right (WPanel * panel)
2476 int lines;
2478 if (state_mark < 0)
2479 state_mark = selection (panel)->f.marked ? 0 : 1;
2481 lines = panel_lines (panel);
2482 lines = MIN (lines, panel->dir.len - panel->selected - 1);
2483 for (; lines != 0; lines--)
2485 do_file_mark (panel, panel->selected, state_mark);
2486 move_down (panel);
2488 do_file_mark (panel, panel->selected, state_mark);
2491 /* --------------------------------------------------------------------------------------------- */
2493 static void
2494 mark_file_left (WPanel * panel)
2496 int lines;
2498 if (state_mark < 0)
2499 state_mark = selection (panel)->f.marked ? 0 : 1;
2501 lines = panel_lines (panel);
2502 lines = MIN (lines, panel->selected + 1);
2503 for (; lines != 0; lines--)
2505 do_file_mark (panel, panel->selected, state_mark);
2506 move_up (panel);
2508 do_file_mark (panel, panel->selected, state_mark);
2511 /* --------------------------------------------------------------------------------------------- */
2513 static void
2514 panel_select_unselect_files (WPanel * panel, const char *title, const char *history_name,
2515 gboolean do_select)
2517 gboolean files_only = (panels_options.select_flags & SELECT_FILES_ONLY) != 0;
2518 gboolean case_sens = (panels_options.select_flags & SELECT_MATCH_CASE) != 0;
2519 gboolean shell_patterns = (panels_options.select_flags & SELECT_SHELL_PATTERNS) != 0;
2521 char *reg_exp;
2522 mc_search_t *search;
2523 int i;
2525 quick_widget_t quick_widgets[] = {
2526 /* *INDENT-OFF* */
2527 QUICK_INPUT (INPUT_LAST_TEXT, history_name, &reg_exp, NULL,
2528 FALSE, FALSE, INPUT_COMPLETE_FILENAMES),
2529 QUICK_START_COLUMNS,
2530 QUICK_CHECKBOX (N_("&Files only"), &files_only, NULL),
2531 QUICK_CHECKBOX (N_("&Using shell patterns"), &shell_patterns, NULL),
2532 QUICK_NEXT_COLUMN,
2533 QUICK_CHECKBOX (N_("&Case sensitive"), &case_sens, NULL),
2534 QUICK_STOP_COLUMNS,
2535 QUICK_END
2536 /* *INDENT-ON* */
2539 quick_dialog_t qdlg = {
2540 -1, -1, 50,
2541 title, "[Select/Unselect Files]",
2542 quick_widgets, NULL, NULL
2545 if (quick_dialog (&qdlg) == B_CANCEL)
2546 return;
2548 if (reg_exp == NULL || *reg_exp == '\0')
2550 g_free (reg_exp);
2551 return;
2554 search = mc_search_new (reg_exp, NULL);
2555 search->search_type = shell_patterns ? MC_SEARCH_T_GLOB : MC_SEARCH_T_REGEX;
2556 search->is_entire_line = TRUE;
2557 search->is_case_sensitive = case_sens;
2559 for (i = 0; i < panel->dir.len; i++)
2561 if (DIR_IS_DOTDOT (panel->dir.list[i].fname))
2562 continue;
2563 if (S_ISDIR (panel->dir.list[i].st.st_mode) && files_only)
2564 continue;
2566 if (mc_search_run (search, panel->dir.list[i].fname, 0, panel->dir.list[i].fnamelen, NULL))
2567 do_file_mark (panel, i, do_select);
2570 mc_search_free (search);
2571 g_free (reg_exp);
2573 /* result flags */
2574 panels_options.select_flags = 0;
2575 if (case_sens)
2576 panels_options.select_flags |= SELECT_MATCH_CASE;
2577 if (files_only)
2578 panels_options.select_flags |= SELECT_FILES_ONLY;
2579 if (shell_patterns)
2580 panels_options.select_flags |= SELECT_SHELL_PATTERNS;
2583 /* --------------------------------------------------------------------------------------------- */
2585 static void
2586 panel_select_files (WPanel * panel)
2588 panel_select_unselect_files (panel, _("Select"), ":select_cmd: Select ", TRUE);
2591 /* --------------------------------------------------------------------------------------------- */
2593 static void
2594 panel_unselect_files (WPanel * panel)
2596 panel_select_unselect_files (panel, _("Unselect"), ":unselect_cmd: Unselect ", FALSE);
2599 /* --------------------------------------------------------------------------------------------- */
2601 static void
2602 panel_select_invert_files (WPanel * panel)
2604 int i;
2606 for (i = 0; i < panel->dir.len; i++)
2608 file_entry_t *file = &panel->dir.list[i];
2610 if (!panels_options.reverse_files_only || !S_ISDIR (file->st.st_mode))
2611 do_file_mark (panel, i, !file->f.marked);
2615 /* --------------------------------------------------------------------------------------------- */
2616 /** Incremental search of a file name in the panel.
2617 * @param panel instance of WPanel structure
2618 * @param c_code key code
2621 static void
2622 do_search (WPanel * panel, int c_code)
2624 size_t l;
2625 int i, sel;
2626 gboolean wrapped = FALSE;
2627 char *act;
2628 mc_search_t *search;
2629 char *reg_exp, *esc_str;
2630 gboolean is_found = FALSE;
2632 l = strlen (panel->search_buffer);
2633 if (c_code == KEY_BACKSPACE)
2635 if (l != 0)
2637 act = panel->search_buffer + l;
2638 str_prev_noncomb_char (&act, panel->search_buffer);
2639 act[0] = '\0';
2641 panel->search_chpoint = 0;
2643 else
2645 if (c_code != 0 && (gsize) panel->search_chpoint < sizeof (panel->search_char))
2647 panel->search_char[panel->search_chpoint] = c_code;
2648 panel->search_chpoint++;
2651 if (panel->search_chpoint > 0)
2653 switch (str_is_valid_char (panel->search_char, panel->search_chpoint))
2655 case -2:
2656 return;
2657 case -1:
2658 panel->search_chpoint = 0;
2659 return;
2660 default:
2661 if (l + panel->search_chpoint < sizeof (panel->search_buffer))
2663 memcpy (panel->search_buffer + l, panel->search_char, panel->search_chpoint);
2664 l += panel->search_chpoint;
2665 *(panel->search_buffer + l) = '\0';
2666 panel->search_chpoint = 0;
2672 reg_exp = g_strdup_printf ("%s*", panel->search_buffer);
2673 esc_str = strutils_escape (reg_exp, -1, ",|\\{}[]", TRUE);
2674 search = mc_search_new (esc_str, NULL);
2675 search->search_type = MC_SEARCH_T_GLOB;
2676 search->is_entire_line = TRUE;
2678 switch (panels_options.qsearch_mode)
2680 case QSEARCH_CASE_SENSITIVE:
2681 search->is_case_sensitive = TRUE;
2682 break;
2683 case QSEARCH_CASE_INSENSITIVE:
2684 search->is_case_sensitive = FALSE;
2685 break;
2686 default:
2687 search->is_case_sensitive = panel->sort_info.case_sensitive;
2688 break;
2691 sel = panel->selected;
2693 for (i = panel->selected; !wrapped || i != panel->selected; i++)
2695 if (i >= panel->dir.len)
2697 i = 0;
2698 if (wrapped)
2699 break;
2700 wrapped = TRUE;
2702 if (mc_search_run (search, panel->dir.list[i].fname, 0, panel->dir.list[i].fnamelen, NULL))
2704 sel = i;
2705 is_found = TRUE;
2706 break;
2709 if (is_found)
2711 unselect_item (panel);
2712 panel->selected = sel;
2713 select_item (panel);
2714 widget_redraw (WIDGET (panel));
2716 else if (c_code != KEY_BACKSPACE)
2718 act = panel->search_buffer + l;
2719 str_prev_noncomb_char (&act, panel->search_buffer);
2720 act[0] = '\0';
2722 mc_search_free (search);
2723 g_free (reg_exp);
2724 g_free (esc_str);
2727 /* --------------------------------------------------------------------------------------------- */
2728 /** Start new search.
2729 * @param panel instance of WPanel structure
2732 static void
2733 start_search (WPanel * panel)
2735 if (panel->searching)
2737 if (panel->selected + 1 == panel->dir.len)
2738 panel->selected = 0;
2739 else
2740 move_down (panel);
2742 /* in case if there was no search string we need to recall
2743 previous string, with which we ended previous searching */
2744 if (panel->search_buffer[0] == '\0')
2745 g_strlcpy (panel->search_buffer, panel->prev_search_buffer,
2746 sizeof (panel->search_buffer));
2748 do_search (panel, 0);
2750 else
2752 panel->searching = TRUE;
2753 panel->search_buffer[0] = '\0';
2754 panel->search_char[0] = '\0';
2755 panel->search_chpoint = 0;
2756 display_mini_info (panel);
2757 mc_refresh ();
2761 /* --------------------------------------------------------------------------------------------- */
2763 static void
2764 stop_search (WPanel * panel)
2766 panel->searching = FALSE;
2768 /* if user had overrdied search string, we need to store it
2769 to the previous_search_buffer */
2770 if (panel->search_buffer[0] != '\0')
2771 g_strlcpy (panel->prev_search_buffer, panel->search_buffer,
2772 sizeof (panel->prev_search_buffer));
2774 display_mini_info (panel);
2777 /* --------------------------------------------------------------------------------------------- */
2778 /** Return TRUE if the Enter key has been processed, FALSE otherwise */
2780 static gboolean
2781 do_enter_on_file_entry (file_entry_t * fe)
2783 vfs_path_t *full_name_vpath;
2784 gboolean ok;
2787 * Directory or link to directory - change directory.
2788 * Try the same for the entries on which mc_lstat() has failed.
2790 if (S_ISDIR (fe->st.st_mode) || link_isdir (fe) || (fe->st.st_mode == 0))
2792 vfs_path_t *fname_vpath;
2794 fname_vpath = vfs_path_from_str (fe->fname);
2795 if (!do_cd (fname_vpath, cd_exact))
2796 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
2797 vfs_path_free (fname_vpath);
2798 return TRUE;
2801 full_name_vpath = vfs_path_append_new (current_panel->cwd_vpath, fe->fname, (char *) NULL);
2803 /* Try associated command */
2804 ok = regex_command (full_name_vpath, "Open") != 0;
2805 vfs_path_free (full_name_vpath);
2806 if (ok)
2807 return TRUE;
2809 /* Check if the file is executable */
2810 full_name_vpath = vfs_path_append_new (current_panel->cwd_vpath, fe->fname, (char *) NULL);
2811 ok = (is_exe (fe->st.st_mode) && if_link_is_exe (full_name_vpath, fe));
2812 vfs_path_free (full_name_vpath);
2813 if (!ok)
2814 return FALSE;
2816 if (confirm_execute)
2818 if (query_dialog
2819 (_("The Midnight Commander"),
2820 _("Do you really want to execute?"), D_NORMAL, 2, _("&Yes"), _("&No")) != 0)
2821 return TRUE;
2824 if (!vfs_current_is_local ())
2826 int ret;
2827 vfs_path_t *tmp_vpath;
2829 tmp_vpath = vfs_path_append_new (vfs_get_raw_current_dir (), fe->fname, (char *) NULL);
2830 ret = mc_setctl (tmp_vpath, VFS_SETCTL_RUN, NULL);
2831 vfs_path_free (tmp_vpath);
2832 /* We took action only if the dialog was shown or the execution
2833 * was successful */
2834 return confirm_execute || (ret == 0);
2838 char *tmp, *cmd;
2840 tmp = name_quote (fe->fname, FALSE);
2841 cmd = g_strconcat (".", PATH_SEP_STR, tmp, (char *) NULL);
2842 g_free (tmp);
2843 shell_execute (cmd, 0);
2844 g_free (cmd);
2847 #ifdef HAVE_CHARSET
2848 mc_global.source_codepage = default_source_codepage;
2849 #endif
2851 return TRUE;
2854 /* --------------------------------------------------------------------------------------------- */
2856 static inline gboolean
2857 do_enter (WPanel * panel)
2859 return do_enter_on_file_entry (selection (panel));
2863 /* --------------------------------------------------------------------------------------------- */
2865 static void
2866 panel_cycle_listing_format (WPanel * panel)
2868 panel->list_format = (panel->list_format + 1) % LIST_FORMATS;
2870 if (set_panel_formats (panel) == 0)
2871 do_refresh ();
2874 /* --------------------------------------------------------------------------------------------- */
2876 static void
2877 chdir_other_panel (WPanel * panel)
2879 const file_entry_t *entry = &panel->dir.list[panel->selected];
2881 vfs_path_t *new_dir_vpath;
2882 char *sel_entry = NULL;
2884 if (get_other_type () != view_listing)
2885 set_display_type (get_other_index (), view_listing);
2887 if (S_ISDIR (entry->st.st_mode) || link_isdir (entry))
2888 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, entry->fname, (char *) NULL);
2889 else
2891 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, "..", (char *) NULL);
2892 sel_entry = strrchr (vfs_path_get_last_path_str (panel->cwd_vpath), PATH_SEP);
2895 change_panel ();
2896 do_cd (new_dir_vpath, cd_exact);
2897 vfs_path_free (new_dir_vpath);
2899 if (sel_entry)
2900 try_to_select (current_panel, sel_entry);
2901 change_panel ();
2903 move_down (panel);
2906 /* --------------------------------------------------------------------------------------------- */
2908 * Make the current directory of the current panel also the current
2909 * directory of the other panel. Put the other panel to the listing
2910 * mode if needed. If the current panel is panelized, the other panel
2911 * doesn't become panelized.
2914 static void
2915 panel_sync_other (const WPanel * panel)
2917 if (get_other_type () != view_listing)
2918 set_display_type (get_other_index (), view_listing);
2920 do_panel_cd (other_panel, current_panel->cwd_vpath, cd_exact);
2922 /* try to select current filename on the other panel */
2923 if (!panel->is_panelized)
2924 try_to_select (other_panel, selection (panel)->fname);
2927 /* --------------------------------------------------------------------------------------------- */
2929 static void
2930 chdir_to_readlink (WPanel * panel)
2932 vfs_path_t *new_dir_vpath;
2933 char buffer[MC_MAXPATHLEN];
2934 int i;
2935 struct stat st;
2936 vfs_path_t *panel_fname_vpath;
2937 gboolean ok;
2939 if (get_other_type () != view_listing)
2940 return;
2942 if (!S_ISLNK (panel->dir.list[panel->selected].st.st_mode))
2943 return;
2945 i = readlink (selection (panel)->fname, buffer, MC_MAXPATHLEN - 1);
2946 if (i < 0)
2947 return;
2949 panel_fname_vpath = vfs_path_from_str (selection (panel)->fname);
2950 ok = (mc_stat (panel_fname_vpath, &st) >= 0);
2951 vfs_path_free (panel_fname_vpath);
2952 if (!ok)
2953 return;
2955 buffer[i] = 0;
2956 if (!S_ISDIR (st.st_mode))
2958 char *p;
2960 p = strrchr (buffer, PATH_SEP);
2961 if (p && !p[1])
2963 *p = 0;
2964 p = strrchr (buffer, PATH_SEP);
2966 if (!p)
2967 return;
2968 p[1] = 0;
2970 if (IS_PATH_SEP (*buffer))
2971 new_dir_vpath = vfs_path_from_str (buffer);
2972 else
2973 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, buffer, (char *) NULL);
2975 change_panel ();
2976 do_cd (new_dir_vpath, cd_exact);
2977 vfs_path_free (new_dir_vpath);
2978 change_panel ();
2980 move_down (panel);
2983 /* --------------------------------------------------------------------------------------------- */
2985 static gsize
2986 panel_get_format_field_count (WPanel * panel)
2988 format_e *format;
2989 gsize lc_index;
2991 for (lc_index = 0, format = panel->format; format != NULL; format = format->next, lc_index++)
2994 return lc_index;
2997 /* --------------------------------------------------------------------------------------------- */
2999 function return 0 if not found and REAL_INDEX+1 if found
3002 static gsize
3003 panel_get_format_field_index_by_name (WPanel * panel, const char *name)
3005 format_e *format;
3006 gsize lc_index;
3008 for (lc_index = 1, format = panel->format;
3009 format != NULL && strcmp (format->title, name) != 0; format = format->next, lc_index++)
3012 if (format == NULL)
3013 lc_index = 0;
3015 return lc_index;
3018 /* --------------------------------------------------------------------------------------------- */
3020 static format_e *
3021 panel_get_format_field_by_index (WPanel * panel, gsize lc_index)
3023 format_e *format;
3025 for (format = panel->format; format != NULL && lc_index != 0; format = format->next, lc_index--)
3028 return format;
3031 /* --------------------------------------------------------------------------------------------- */
3033 static const panel_field_t *
3034 panel_get_sortable_field_by_format (WPanel * panel, gsize lc_index)
3036 const panel_field_t *pfield;
3037 format_e *format;
3039 format = panel_get_format_field_by_index (panel, lc_index);
3040 if (format == NULL)
3041 return NULL;
3043 pfield = panel_get_field_by_title (format->title);
3044 if (pfield == NULL)
3045 return NULL;
3046 if (pfield->sort_routine == NULL)
3047 return NULL;
3048 return pfield;
3051 /* --------------------------------------------------------------------------------------------- */
3053 static void
3054 panel_toggle_sort_order_prev (WPanel * panel)
3056 gsize lc_index, i;
3057 const char *title;
3058 const panel_field_t *pfield = NULL;
3060 title = panel_get_title_without_hotkey (panel->sort_field->title_hotkey);
3061 lc_index = panel_get_format_field_index_by_name (panel, title);
3063 if (lc_index > 1)
3065 /* search for prev sortable column in panel format */
3066 for (i = lc_index - 1;
3067 i != 0 && (pfield = panel_get_sortable_field_by_format (panel, i - 1)) == NULL; i--)
3071 if (pfield == NULL)
3073 /* Sortable field not found. Try to search in each array */
3074 for (i = panel_get_format_field_count (panel);
3075 i != 0 && (pfield = panel_get_sortable_field_by_format (panel, i - 1)) == NULL; i--)
3079 if (pfield != NULL)
3081 panel->sort_field = pfield;
3082 panel_set_sort_order (panel, pfield);
3086 /* --------------------------------------------------------------------------------------------- */
3088 static void
3089 panel_toggle_sort_order_next (WPanel * panel)
3091 gsize lc_index, i;
3092 const panel_field_t *pfield = NULL;
3093 gsize format_field_count;
3094 const char *title;
3096 format_field_count = panel_get_format_field_count (panel);
3097 title = panel_get_title_without_hotkey (panel->sort_field->title_hotkey);
3098 lc_index = panel_get_format_field_index_by_name (panel, title);
3100 if (lc_index != 0 && lc_index != format_field_count)
3102 /* search for prev sortable column in panel format */
3103 for (i = lc_index;
3104 i != format_field_count
3105 && (pfield = panel_get_sortable_field_by_format (panel, i)) == NULL; i++)
3109 if (pfield == NULL)
3111 /* Sortable field not found. Try to search in each array */
3112 for (i = 0;
3113 i != format_field_count
3114 && (pfield = panel_get_sortable_field_by_format (panel, i)) == NULL; i++)
3118 if (pfield != NULL)
3120 panel->sort_field = pfield;
3121 panel_set_sort_order (panel, pfield);
3125 /* --------------------------------------------------------------------------------------------- */
3127 static void
3128 panel_select_sort_order (WPanel * panel)
3130 const panel_field_t *sort_order;
3132 sort_order = sort_box (&panel->sort_info, panel->sort_field);
3133 if (sort_order != NULL)
3135 panel->sort_field = sort_order;
3136 panel_set_sort_order (panel, sort_order);
3140 /* --------------------------------------------------------------------------------------------- */
3143 * panel_content_scroll_left:
3144 * @param panel the pointer to the panel on which we operate
3146 * scroll long filename to the left (decrement scroll pointer)
3150 static void
3151 panel_content_scroll_left (WPanel * panel)
3153 if (panel->content_shift > -1)
3155 if (panel->content_shift > panel->max_shift)
3156 panel->content_shift = panel->max_shift;
3158 panel->content_shift--;
3159 show_dir (panel);
3160 paint_dir (panel);
3164 /* --------------------------------------------------------------------------------------------- */
3167 * panel_content_scroll_right:
3168 * @param panel the pointer to the panel on which we operate
3170 * scroll long filename to the right (increment scroll pointer)
3174 static void
3175 panel_content_scroll_right (WPanel * panel)
3177 if (panel->content_shift < 0 || panel->content_shift < panel->max_shift)
3179 panel->content_shift++;
3180 show_dir (panel);
3181 paint_dir (panel);
3185 /* --------------------------------------------------------------------------------------------- */
3187 static void
3188 panel_set_sort_type_by_id (WPanel * panel, const char *name)
3190 if (strcmp (panel->sort_field->id, name) != 0)
3192 const panel_field_t *sort_order;
3194 sort_order = panel_get_field_by_id (name);
3195 if (sort_order == NULL)
3196 return;
3198 panel->sort_field = sort_order;
3200 else
3201 panel->sort_info.reverse = !panel->sort_info.reverse;
3203 panel_set_sort_order (panel, panel->sort_field);
3206 /* --------------------------------------------------------------------------------------------- */
3208 * If we moved to the parent directory move the selection pointer to
3209 * the old directory name; If we leave VFS dir, remove FS specificator.
3211 * You do _NOT_ want to add any vfs aware code here. <pavel@ucw.cz>
3214 static const char *
3215 get_parent_dir_name (const vfs_path_t * cwd_vpath, const vfs_path_t * lwd_vpath)
3217 size_t llen, clen;
3218 const char *p, *cwd, *lwd;
3220 llen = vfs_path_len (lwd_vpath);
3221 clen = vfs_path_len (cwd_vpath);
3223 if (llen <= clen)
3224 return NULL;
3226 cwd = vfs_path_as_str (cwd_vpath);
3227 lwd = vfs_path_as_str (lwd_vpath);
3229 p = g_strrstr (lwd, VFS_PATH_URL_DELIMITER);
3231 if (p == NULL)
3233 p = strrchr (lwd, PATH_SEP);
3235 if ((p != NULL)
3236 && (strncmp (cwd, lwd, (size_t) (p - lwd)) == 0)
3237 && (clen == (size_t) (p - lwd) || (p == lwd && IS_PATH_SEP (cwd[0]) && cwd[1] == '\0')))
3238 return (p + 1);
3240 return NULL;
3243 /* skip VFS prefix */
3244 while (--p > lwd && !IS_PATH_SEP (*p))
3246 /* get last component */
3247 while (--p > lwd && !IS_PATH_SEP (*p))
3250 /* return last component */
3251 return (p != lwd || IS_PATH_SEP (*p)) ? p + 1 : p;
3254 /* --------------------------------------------------------------------------------------------- */
3255 /** Wrapper for do_subshell_chdir, check for availability of subshell */
3257 static void
3258 subshell_chdir (const vfs_path_t * vpath)
3260 #ifdef ENABLE_SUBSHELL
3261 if (mc_global.tty.use_subshell && vfs_current_is_local ())
3262 do_subshell_chdir (vpath, FALSE);
3263 #else /* ENABLE_SUBSHELL */
3264 (void) vpath;
3265 #endif /* ENABLE_SUBSHELL */
3268 /* --------------------------------------------------------------------------------------------- */
3270 * Changes the current directory of the panel.
3271 * Don't record change in the directory history.
3274 static gboolean
3275 _do_panel_cd (WPanel * panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type)
3277 vfs_path_t *olddir_vpath;
3279 /* Convert *new_path to a suitable pathname, handle ~user */
3280 if (cd_type == cd_parse_command)
3282 const vfs_path_element_t *element;
3284 element = vfs_path_get_by_index (new_dir_vpath, 0);
3285 if (strcmp (element->path, "-") == 0)
3286 new_dir_vpath = panel->lwd_vpath;
3289 if (mc_chdir (new_dir_vpath) == -1)
3290 return FALSE;
3292 /* Success: save previous directory, shutdown status of previous dir */
3293 olddir_vpath = vfs_path_clone (panel->cwd_vpath);
3294 panel_set_lwd (panel, panel->cwd_vpath);
3295 input_free_completions (cmdline);
3297 vfs_path_free (panel->cwd_vpath);
3298 vfs_setup_cwd ();
3299 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
3301 vfs_release_path (olddir_vpath);
3303 subshell_chdir (panel->cwd_vpath);
3305 /* Reload current panel */
3306 panel_clean_dir (panel);
3308 dir_list_load (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
3309 &panel->sort_info, panel->filter);
3310 try_to_select (panel, get_parent_dir_name (panel->cwd_vpath, olddir_vpath));
3312 load_hint (FALSE);
3313 panel->dirty = 1;
3314 update_xterm_title_path ();
3316 vfs_path_free (olddir_vpath);
3318 return TRUE;
3321 /* --------------------------------------------------------------------------------------------- */
3323 static void
3324 directory_history_next (WPanel * panel)
3326 gboolean ok;
3330 GList *next;
3332 ok = TRUE;
3333 next = g_list_next (panel->dir_history_current);
3334 if (next != NULL)
3336 vfs_path_t *data_vpath;
3338 data_vpath = vfs_path_from_str ((char *) next->data);
3339 ok = _do_panel_cd (panel, data_vpath, cd_exact);
3340 vfs_path_free (data_vpath);
3341 panel->dir_history_current = next;
3343 /* skip directories that present in history but absent in file system */
3345 while (!ok);
3348 /* --------------------------------------------------------------------------------------------- */
3350 static void
3351 directory_history_prev (WPanel * panel)
3353 gboolean ok;
3357 GList *prev;
3359 ok = TRUE;
3360 prev = g_list_previous (panel->dir_history_current);
3361 if (prev != NULL)
3363 vfs_path_t *data_vpath;
3365 data_vpath = vfs_path_from_str ((char *) prev->data);
3366 ok = _do_panel_cd (panel, data_vpath, cd_exact);
3367 vfs_path_free (data_vpath);
3368 panel->dir_history_current = prev;
3370 /* skip directories that present in history but absent in file system */
3372 while (!ok);
3375 /* --------------------------------------------------------------------------------------------- */
3377 static void
3378 directory_history_list (WPanel * panel)
3380 char *s;
3381 gboolean ok = FALSE;
3382 size_t pos;
3384 pos = g_list_position (panel->dir_history_current, panel->dir_history);
3386 s = history_show (&panel->dir_history, WIDGET (panel), pos);
3387 if (s != NULL)
3389 vfs_path_t *s_vpath;
3391 s_vpath = vfs_path_from_str (s);
3392 ok = _do_panel_cd (panel, s_vpath, cd_exact);
3393 if (ok)
3394 directory_history_add (panel, panel->cwd_vpath);
3395 else
3396 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
3397 vfs_path_free (s_vpath);
3398 g_free (s);
3401 if (!ok)
3403 /* Since history is fully modified in history_show(), panel->dir_history actually
3404 * points to the invalid place. Try restore current postition here. */
3406 size_t i;
3408 panel->dir_history_current = panel->dir_history;
3410 for (i = 0; i <= pos; i++)
3412 GList *prev;
3414 prev = g_list_previous (panel->dir_history_current);
3415 if (prev == NULL)
3416 break;
3418 panel->dir_history_current = prev;
3423 /* --------------------------------------------------------------------------------------------- */
3425 static cb_ret_t
3426 panel_execute_cmd (WPanel * panel, long command)
3428 int res = MSG_HANDLED;
3430 if (command != CK_Search)
3431 stop_search (panel);
3433 switch (command)
3435 case CK_Up:
3436 case CK_Down:
3437 case CK_Left:
3438 case CK_Right:
3439 case CK_Bottom:
3440 case CK_Top:
3441 case CK_PageDown:
3442 case CK_PageUp:
3443 /* reset state of marks flag */
3444 state_mark = -1;
3445 break;
3446 default:
3447 break;
3450 switch (command)
3452 case CK_CycleListingFormat:
3453 panel_cycle_listing_format (panel);
3454 break;
3455 case CK_PanelOtherCd:
3456 chdir_other_panel (panel);
3457 break;
3458 case CK_PanelOtherCdLink:
3459 chdir_to_readlink (panel);
3460 break;
3461 case CK_CopySingle:
3462 copy_cmd_local ();
3463 break;
3464 case CK_DeleteSingle:
3465 delete_cmd_local ();
3466 break;
3467 case CK_Enter:
3468 do_enter (panel);
3469 break;
3470 case CK_ViewRaw:
3471 view_raw_cmd ();
3472 break;
3473 case CK_EditNew:
3474 edit_cmd_new ();
3475 break;
3476 case CK_MoveSingle:
3477 rename_cmd_local ();
3478 break;
3479 case CK_SelectInvert:
3480 panel_select_invert_files (panel);
3481 break;
3482 case CK_Select:
3483 panel_select_files (panel);
3484 break;
3485 case CK_SelectExt:
3486 panel_select_ext_cmd ();
3487 break;
3488 case CK_Unselect:
3489 panel_unselect_files (panel);
3490 break;
3491 case CK_PageDown:
3492 next_page (panel);
3493 break;
3494 case CK_PageUp:
3495 prev_page (panel);
3496 break;
3497 case CK_CdChild:
3498 goto_child_dir (panel);
3499 break;
3500 case CK_CdParent:
3501 goto_parent_dir (panel);
3502 break;
3503 case CK_History:
3504 directory_history_list (panel);
3505 break;
3506 case CK_HistoryNext:
3507 directory_history_next (panel);
3508 break;
3509 case CK_HistoryPrev:
3510 directory_history_prev (panel);
3511 break;
3512 case CK_BottomOnScreen:
3513 goto_bottom_file (panel);
3514 break;
3515 case CK_MiddleOnScreen:
3516 goto_middle_file (panel);
3517 break;
3518 case CK_TopOnScreen:
3519 goto_top_file (panel);
3520 break;
3521 case CK_Mark:
3522 mark_file (panel);
3523 break;
3524 case CK_MarkUp:
3525 mark_file_up (panel);
3526 break;
3527 case CK_MarkDown:
3528 mark_file_down (panel);
3529 break;
3530 case CK_MarkLeft:
3531 mark_file_left (panel);
3532 break;
3533 case CK_MarkRight:
3534 mark_file_right (panel);
3535 break;
3536 case CK_CdParentSmart:
3537 res = force_maybe_cd ();
3538 break;
3539 case CK_Up:
3540 move_up (panel);
3541 break;
3542 case CK_Down:
3543 move_down (panel);
3544 break;
3545 case CK_Left:
3546 res = move_left (panel);
3547 break;
3548 case CK_Right:
3549 res = move_right (panel);
3550 break;
3551 case CK_Bottom:
3552 move_end (panel);
3553 break;
3554 case CK_Top:
3555 move_home (panel);
3556 break;
3557 #ifdef HAVE_CHARSET
3558 case CK_SelectCodepage:
3559 panel_change_encoding (panel);
3560 break;
3561 #endif
3562 case CK_ScrollLeft:
3563 panel_content_scroll_left (panel);
3564 break;
3565 case CK_ScrollRight:
3566 panel_content_scroll_right (panel);
3567 break;
3568 case CK_Search:
3569 start_search (panel);
3570 break;
3571 case CK_SearchStop:
3572 break;
3573 case CK_PanelOtherSync:
3574 panel_sync_other (panel);
3575 break;
3576 case CK_Sort:
3577 panel_select_sort_order (panel);
3578 break;
3579 case CK_SortPrev:
3580 panel_toggle_sort_order_prev (panel);
3581 break;
3582 case CK_SortNext:
3583 panel_toggle_sort_order_next (panel);
3584 break;
3585 case CK_SortReverse:
3586 panel->sort_info.reverse = !panel->sort_info.reverse;
3587 panel_set_sort_order (panel, panel->sort_field);
3588 break;
3589 case CK_SortByName:
3590 panel_set_sort_type_by_id (panel, "name");
3591 break;
3592 case CK_SortByExt:
3593 panel_set_sort_type_by_id (panel, "extension");
3594 break;
3595 case CK_SortBySize:
3596 panel_set_sort_type_by_id (panel, "size");
3597 break;
3598 case CK_SortByMTime:
3599 panel_set_sort_type_by_id (panel, "mtime");
3600 break;
3601 default:
3602 res = MSG_NOT_HANDLED;
3603 break;
3606 return res;
3609 /* --------------------------------------------------------------------------------------------- */
3611 static cb_ret_t
3612 panel_key (WPanel * panel, int key)
3614 size_t i;
3616 if (is_abort_char (key))
3618 stop_search (panel);
3619 return MSG_HANDLED;
3622 if (panel->searching && ((key >= ' ' && key <= 255) || key == KEY_BACKSPACE))
3624 do_search (panel, key);
3625 return MSG_HANDLED;
3628 for (i = 0; panel_map[i].key != 0; i++)
3629 if (key == panel_map[i].key)
3630 return panel_execute_cmd (panel, panel_map[i].command);
3632 if (panels_options.torben_fj_mode && key == ALT ('h'))
3634 goto_middle_file (panel);
3635 return MSG_HANDLED;
3638 if (!command_prompt && ((key >= ' ' && key <= 255) || key == KEY_BACKSPACE))
3640 start_search (panel);
3641 do_search (panel, key);
3642 return MSG_HANDLED;
3645 return MSG_NOT_HANDLED;
3648 /* --------------------------------------------------------------------------------------------- */
3650 static cb_ret_t
3651 panel_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *data)
3653 WPanel *panel = PANEL (w);
3654 WButtonBar *bb;
3656 switch (msg)
3658 case MSG_INIT:
3659 /* subscribe to "history_load" event */
3660 mc_event_add (w->owner->event_group, MCEVENT_HISTORY_LOAD, panel_load_history, w, NULL);
3661 /* subscribe to "history_save" event */
3662 mc_event_add (w->owner->event_group, MCEVENT_HISTORY_SAVE, panel_save_history, w, NULL);
3663 return MSG_HANDLED;
3665 case MSG_DRAW:
3666 /* Repaint everything, including frame and separator */
3667 widget_erase (w);
3668 show_dir (panel);
3669 panel_print_header (panel);
3670 adjust_top_file (panel);
3671 paint_dir (panel);
3672 mini_info_separator (panel);
3673 display_mini_info (panel);
3674 panel->dirty = 0;
3675 return MSG_HANDLED;
3677 case MSG_FOCUS:
3678 state_mark = -1;
3679 current_panel = panel;
3680 panel->active = 1;
3682 if (mc_chdir (panel->cwd_vpath) != 0)
3684 char *cwd;
3686 cwd = vfs_path_to_str_flags (panel->cwd_vpath, 0, VPF_STRIP_PASSWORD);
3687 message (D_ERROR, MSG_ERROR, _("Cannot chdir to \"%s\"\n%s"),
3688 cwd, unix_error_string (errno));
3689 g_free (cwd);
3691 else
3692 subshell_chdir (panel->cwd_vpath);
3694 update_xterm_title_path ();
3695 select_item (panel);
3697 bb = find_buttonbar (w->owner);
3698 midnight_set_buttonbar (bb);
3699 widget_redraw (WIDGET (bb));
3700 return MSG_HANDLED;
3702 case MSG_UNFOCUS:
3703 /* Janne: look at this for the multiple panel options */
3704 stop_search (panel);
3705 panel->active = 0;
3706 unselect_item (panel);
3707 return MSG_HANDLED;
3709 case MSG_KEY:
3710 return panel_key (panel, parm);
3712 case MSG_ACTION:
3713 return panel_execute_cmd (panel, parm);
3715 case MSG_DESTROY:
3716 /* unsubscribe from "history_load" event */
3717 mc_event_del (w->owner->event_group, MCEVENT_HISTORY_LOAD, panel_load_history, w);
3718 /* unsubscribe from "history_save" event */
3719 mc_event_del (w->owner->event_group, MCEVENT_HISTORY_SAVE, panel_save_history, w);
3720 panel_destroy (panel);
3721 free_my_statfs ();
3722 return MSG_HANDLED;
3724 default:
3725 return widget_default_callback (w, sender, msg, parm, data);
3729 /* --------------------------------------------------------------------------------------------- */
3730 /* */
3731 /* Panel mouse events support routines */
3732 /* */
3734 static void
3735 mouse_toggle_mark (WPanel * panel)
3737 do_mark_file (panel, MARK_DONT_MOVE);
3738 mouse_marking = selection (panel)->f.marked;
3739 mouse_mark_panel = current_panel;
3742 /* --------------------------------------------------------------------------------------------- */
3744 static void
3745 mouse_set_mark (WPanel * panel)
3747 if (mouse_mark_panel == panel)
3749 if (mouse_marking && !(selection (panel)->f.marked))
3750 do_mark_file (panel, MARK_DONT_MOVE);
3751 else if (!mouse_marking && (selection (panel)->f.marked))
3752 do_mark_file (panel, MARK_DONT_MOVE);
3756 /* --------------------------------------------------------------------------------------------- */
3758 static gboolean
3759 mark_if_marking (WPanel * panel, const mouse_event_t * event)
3761 if ((event->buttons & GPM_B_RIGHT) != 0)
3763 if (event->msg == MSG_MOUSE_DOWN)
3764 mouse_toggle_mark (panel);
3765 else
3766 mouse_set_mark (panel);
3767 return TRUE;
3770 return FALSE;
3773 /* --------------------------------------------------------------------------------------------- */
3774 /** Determine which column was clicked, and sort the panel on
3775 * that column, or reverse sort on that column if already
3776 * sorted on that column.
3779 static void
3780 mouse_sort_col (WPanel * panel, int x)
3782 int i;
3783 const char *lc_sort_name = NULL;
3784 panel_field_t *col_sort_format = NULL;
3785 format_e *format;
3787 for (i = 0, format = panel->format; format != NULL; format = format->next)
3789 i += format->field_len;
3790 if (x < i + 1)
3792 /* found column */
3793 lc_sort_name = format->title;
3794 break;
3798 if (lc_sort_name == NULL)
3799 return;
3801 for (i = 0; panel_fields[i].id != NULL; i++)
3803 const char *title;
3805 title = panel_get_title_without_hotkey (panel_fields[i].title_hotkey);
3806 if (strcmp (title, lc_sort_name) == 0 && panel_fields[i].sort_routine != NULL)
3808 col_sort_format = &panel_fields[i];
3809 break;
3813 if (col_sort_format == NULL)
3814 return;
3816 if (panel->sort_field == col_sort_format)
3818 /* reverse the sort if clicked column is already the sorted column */
3819 panel->sort_info.reverse = !panel->sort_info.reverse;
3821 else
3823 /* new sort is forced to be ascending */
3824 panel->sort_info.reverse = FALSE;
3826 panel_set_sort_order (panel, col_sort_format);
3829 /* --------------------------------------------------------------------------------------------- */
3831 static void
3832 panel_mouse_callback (Widget * w, mouse_msg_t msg, mouse_event_t * event)
3834 WPanel *panel = PANEL (w);
3835 gboolean is_active;
3837 is_active = widget_is_active (w);
3839 switch (msg)
3841 case MSG_MOUSE_DOWN:
3842 if (event->y == 0)
3844 /* top frame */
3845 if (event->x == 1)
3846 /* "<" button */
3847 directory_history_prev (panel);
3848 else if (event->x == w->cols - 2)
3849 /* ">" button */
3850 directory_history_next (panel);
3851 else if (event->x >= w->cols - 5 && event->x <= w->cols - 3)
3852 /* "^" button */
3853 directory_history_list (panel);
3854 else if (event->x == w->cols - 6)
3855 /* "." button show/hide hidden files */
3856 send_message (midnight_dlg, NULL, MSG_ACTION, CK_ShowHidden, NULL);
3857 else
3859 /* no other events on 1st line, return MOU_UNHANDLED */
3860 event->result.abort = TRUE;
3861 /* avoid extra panel redraw */
3862 panel->dirty = 0;
3864 break;
3867 if (event->y == 1)
3869 /* sort on clicked column */
3870 mouse_sort_col (panel, event->x + 1);
3871 break;
3874 if (!is_active)
3875 change_panel ();
3876 MC_FALLTHROUGH;
3878 case MSG_MOUSE_DRAG:
3880 int y, last, my_index;
3882 last = panel->dir.len - 1;
3883 y = event->y - 2;
3885 if (panel->top_file + y > last)
3886 my_index = last;
3887 else
3889 my_index = panel->top_file + y;
3891 if (panel->list_cols > 1)
3893 int width, lines;
3895 width = (w->cols - 2) / panel->list_cols;
3896 lines = panel_lines (panel);
3897 my_index += lines * (event->x / width);
3900 if (my_index > last)
3901 my_index = last;
3904 if (my_index != panel->selected)
3906 unselect_item (panel);
3907 panel->selected = my_index;
3908 select_item (panel);
3911 /* This one is new */
3912 mark_if_marking (panel, event);
3914 break;
3916 case MSG_MOUSE_UP:
3917 break;
3919 case MSG_MOUSE_CLICK:
3920 if ((event->count & GPM_DOUBLE) != 0)
3922 int y, lines;
3924 y = event->y - 2;
3925 lines = panel_lines (panel);
3927 if (y >= 0 && y < lines)
3928 do_enter (panel);
3930 break;
3932 case MSG_MOUSE_MOVE:
3933 break;
3935 case MSG_MOUSE_SCROLL_UP:
3936 if (is_active)
3938 if (panels_options.mouse_move_pages && panel->top_file > 0)
3939 prev_page (panel);
3940 else /* We are in first page */
3941 move_up (panel);
3943 break;
3945 case MSG_MOUSE_SCROLL_DOWN:
3946 if (is_active)
3948 if (panels_options.mouse_move_pages
3949 && panel->top_file + panel_items (panel) < panel->dir.len)
3950 next_page (panel);
3951 else /* We are in last page */
3952 move_down (panel);
3954 break;
3956 default:
3957 break;
3960 if (panel->dirty)
3961 widget_redraw (w);
3964 /* --------------------------------------------------------------------------------------------- */
3966 static void
3967 reload_panelized (WPanel * panel)
3969 int i, j;
3970 dir_list *list = &panel->dir;
3972 /* refresh current VFS directory required for vfs_path_from_str() */
3973 (void) mc_chdir (panel->cwd_vpath);
3975 for (i = 0, j = 0; i < list->len; i++)
3977 vfs_path_t *vpath;
3979 vpath = vfs_path_from_str (list->list[i].fname);
3980 if (mc_lstat (vpath, &list->list[i].st) != 0)
3981 g_free (list->list[i].fname);
3982 else
3984 if (j != i)
3985 list->list[j] = list->list[i];
3986 j++;
3988 vfs_path_free (vpath);
3990 if (j == 0)
3991 dir_list_init (list);
3992 else
3993 list->len = j;
3995 recalculate_panel_summary (panel);
3997 if (panel != current_panel)
3998 (void) mc_chdir (current_panel->cwd_vpath);
4001 /* --------------------------------------------------------------------------------------------- */
4003 static void
4004 update_one_panel_widget (WPanel * panel, panel_update_flags_t flags, const char *current_file)
4006 gboolean free_pointer;
4007 char *my_current_file = NULL;
4009 if ((flags & UP_RELOAD) != 0)
4011 panel->is_panelized = FALSE;
4012 mc_setctl (panel->cwd_vpath, VFS_SETCTL_FLUSH, 0);
4013 memset (&(panel->dir_stat), 0, sizeof (panel->dir_stat));
4016 /* If current_file == -1 (an invalid pointer) then preserve selection */
4017 free_pointer = current_file == UP_KEEPSEL;
4019 if (free_pointer)
4021 my_current_file = g_strdup (panel->dir.list[panel->selected].fname);
4022 current_file = my_current_file;
4025 if (panel->is_panelized)
4026 reload_panelized (panel);
4027 else
4028 panel_reload (panel);
4030 try_to_select (panel, current_file);
4031 panel->dirty = 1;
4033 if (free_pointer)
4034 g_free (my_current_file);
4037 /* --------------------------------------------------------------------------------------------- */
4039 static void
4040 update_one_panel (int which, panel_update_flags_t flags, const char *current_file)
4042 if (get_display_type (which) == view_listing)
4044 WPanel *panel;
4046 panel = PANEL (get_panel_widget (which));
4047 if (panel->is_panelized)
4048 flags &= ~UP_RELOAD;
4049 update_one_panel_widget (panel, flags, current_file);
4053 /* --------------------------------------------------------------------------------------------- */
4055 static void
4056 do_select (WPanel * panel, int i)
4058 if (i != panel->selected)
4060 panel->dirty = 1;
4061 panel->selected = i;
4062 panel->top_file = panel->selected - (WIDGET (panel)->lines - 2) / 2;
4063 if (panel->top_file < 0)
4064 panel->top_file = 0;
4068 /* --------------------------------------------------------------------------------------------- */
4070 static void
4071 do_try_to_select (WPanel * panel, const char *name)
4073 int i;
4074 char *subdir;
4076 if (!name)
4078 do_select (panel, 0);
4079 return;
4082 /* We only want the last component of the directory,
4083 * and from this only the name without suffix.
4084 * Cut prefix if the panel is not panelized */
4086 if (panel->is_panelized)
4087 subdir = vfs_strip_suffix_from_filename (name);
4088 else
4089 subdir = vfs_strip_suffix_from_filename (x_basename (name));
4091 /* Search that subdir or filename without prefix (if not panelized panel), select it if found */
4092 for (i = 0; i < panel->dir.len; i++)
4094 if (strcmp (subdir, panel->dir.list[i].fname) == 0)
4096 do_select (panel, i);
4097 g_free (subdir);
4098 return;
4102 /* Try to select a file near the file that is missing */
4103 if (panel->selected >= panel->dir.len)
4104 do_select (panel, panel->dir.len - 1);
4105 g_free (subdir);
4108 /* --------------------------------------------------------------------------------------------- */
4110 /* event callback */
4111 static gboolean
4112 event_update_panels (const gchar * event_group_name, const gchar * event_name,
4113 gpointer init_data, gpointer data)
4115 (void) event_group_name;
4116 (void) event_name;
4117 (void) init_data;
4118 (void) data;
4120 update_panels (UP_RELOAD, UP_KEEPSEL);
4122 return TRUE;
4125 /* --------------------------------------------------------------------------------------------- */
4127 /* event callback */
4128 static gboolean
4129 panel_save_current_file_to_clip_file (const gchar * event_group_name, const gchar * event_name,
4130 gpointer init_data, gpointer data)
4132 (void) event_group_name;
4133 (void) event_name;
4134 (void) init_data;
4135 (void) data;
4137 if (current_panel->marked == 0)
4138 mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_text_to_file",
4139 (gpointer) selection (current_panel)->fname);
4140 else
4142 int i;
4143 gboolean first = TRUE;
4144 char *flist = NULL;
4146 for (i = 0; i < current_panel->dir.len; i++)
4147 if (current_panel->dir.list[i].f.marked != 0)
4148 { /* Skip the unmarked ones */
4149 if (first)
4151 flist = g_strdup (current_panel->dir.list[i].fname);
4152 first = FALSE;
4154 else
4156 /* Add empty lines after the file */
4157 char *tmp;
4159 tmp =
4160 g_strconcat (flist, "\n", current_panel->dir.list[i].fname, (char *) NULL);
4161 g_free (flist);
4162 flist = tmp;
4166 mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_text_to_file", (gpointer) flist);
4167 g_free (flist);
4169 return TRUE;
4172 /* --------------------------------------------------------------------------------------------- */
4174 static vfs_path_t *
4175 panel_recursive_cd_to_parent (const vfs_path_t * vpath)
4177 vfs_path_t *cwd_vpath;
4179 cwd_vpath = vfs_path_clone (vpath);
4181 while (mc_chdir (cwd_vpath) < 0)
4183 const char *panel_cwd_path;
4184 vfs_path_t *tmp_vpath;
4186 /* check if path contains only '/' */
4187 panel_cwd_path = vfs_path_as_str (cwd_vpath);
4188 if (panel_cwd_path != NULL && IS_PATH_SEP (panel_cwd_path[0]) && panel_cwd_path[1] == '\0')
4189 return NULL;
4191 tmp_vpath = vfs_path_vtokens_get (cwd_vpath, 0, -1);
4192 vfs_path_free (cwd_vpath);
4193 cwd_vpath =
4194 vfs_path_build_filename (PATH_SEP_STR, vfs_path_as_str (tmp_vpath), (char *) NULL);
4195 vfs_path_free (tmp_vpath);
4198 return cwd_vpath;
4201 /* --------------------------------------------------------------------------------------------- */
4202 /*** public functions ****************************************************************************/
4203 /* --------------------------------------------------------------------------------------------- */
4205 void
4206 try_to_select (WPanel * panel, const char *name)
4208 do_try_to_select (panel, name);
4209 select_item (panel);
4212 /* --------------------------------------------------------------------------------------------- */
4214 void
4215 panel_clean_dir (WPanel * panel)
4217 panel->top_file = 0;
4218 panel->selected = 0;
4219 panel->marked = 0;
4220 panel->dirs_marked = 0;
4221 panel->total = 0;
4222 panel->searching = FALSE;
4223 panel->is_panelized = FALSE;
4224 panel->dirty = 1;
4225 panel->content_shift = -1;
4226 panel->max_shift = -1;
4228 dir_list_clean (&panel->dir);
4231 /* --------------------------------------------------------------------------------------------- */
4233 * Set Up panel's current dir object
4235 * @param panel panel object
4236 * @param path_str string contain path
4239 void
4240 panel_set_cwd (WPanel * panel, const vfs_path_t * vpath)
4242 if (vpath != panel->cwd_vpath) /* check if new vpath is not the panel->cwd_vpath object */
4244 vfs_path_free (panel->cwd_vpath);
4245 panel->cwd_vpath = vfs_path_clone (vpath);
4249 /* --------------------------------------------------------------------------------------------- */
4251 * Set Up panel's last working dir object
4253 * @param panel panel object
4254 * @param path_str string contain path
4257 void
4258 panel_set_lwd (WPanel * panel, const vfs_path_t * vpath)
4260 if (vpath != panel->lwd_vpath) /* check if new vpath is not the panel->lwd_vpath object */
4262 vfs_path_free (panel->lwd_vpath);
4263 panel->lwd_vpath = vfs_path_clone (vpath);
4267 /* --------------------------------------------------------------------------------------------- */
4269 * Panel creation for specified directory.
4271 * @param panel_name specifies the name of the panel for setup retieving
4272 * @param wpath the path of working panel directory. If path is NULL then panel will be created
4273 * for current directory
4275 * @return new instance of WPanel
4278 WPanel *
4279 panel_new_with_dir (const char *panel_name, const vfs_path_t * vpath)
4281 WPanel *panel;
4282 Widget *w;
4283 char *section;
4284 int i, err;
4285 char *curdir = NULL;
4287 panel = g_new0 (WPanel, 1);
4288 w = WIDGET (panel);
4289 /* No know sizes of the panel at startup */
4290 widget_init (w, 0, 0, 0, 0, panel_callback, panel_mouse_callback);
4291 w->options |= WOP_SELECTABLE | WOP_TOP_SELECT;
4293 if (vpath != NULL)
4295 curdir = _vfs_get_cwd ();
4296 panel_set_cwd (panel, vpath);
4298 else
4300 vfs_setup_cwd ();
4301 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
4304 panel_set_lwd (panel, vfs_get_raw_current_dir ());
4306 panel->hist_name = g_strconcat ("Dir Hist ", panel_name, (char *) NULL);
4307 /* directories history will be get later */
4309 panel->dir.size = DIR_LIST_MIN_SIZE;
4310 panel->dir.list = g_new (file_entry_t, panel->dir.size);
4311 panel->dir.len = 0;
4312 panel->active = 0;
4313 panel->filter = NULL;
4314 panel->list_cols = 1;
4315 panel->brief_cols = 2;
4316 panel->top_file = 0;
4317 panel->selected = 0;
4318 panel->marked = 0;
4319 panel->total = 0;
4320 panel->dirty = 1;
4321 panel->searching = FALSE;
4322 panel->dirs_marked = 0;
4323 panel->is_panelized = FALSE;
4324 panel->format = NULL;
4325 panel->status_format = NULL;
4326 panel->format_modified = 1;
4327 panel->content_shift = -1;
4328 panel->max_shift = -1;
4330 panel->panel_name = g_strdup (panel_name);
4331 panel->user_format = g_strdup (DEFAULT_USER_FORMAT);
4333 #ifdef HAVE_CHARSET
4334 panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
4335 #endif
4337 for (i = 0; i < LIST_FORMATS; i++)
4338 panel->user_status_format[i] = g_strdup (DEFAULT_USER_FORMAT);
4340 panel->search_buffer[0] = '\0';
4341 panel->prev_search_buffer[0] = '\0';
4342 panel->frame_size = frame_half;
4344 section = g_strconcat ("Temporal:", panel->panel_name, (char *) NULL);
4345 if (!mc_config_has_group (mc_global.main_config, section))
4347 g_free (section);
4348 section = g_strdup (panel->panel_name);
4350 panel_load_setup (panel, section);
4351 g_free (section);
4353 /* Load format strings */
4354 err = set_panel_formats (panel);
4355 if (err != 0)
4356 set_panel_formats (panel);
4358 #ifdef HAVE_CHARSET
4360 const vfs_path_element_t *path_element;
4362 path_element = vfs_path_get_by_index (panel->cwd_vpath, -1);
4363 if (path_element->encoding != NULL)
4364 panel->codepage = get_codepage_index (path_element->encoding);
4366 #endif
4368 if (mc_chdir (panel->cwd_vpath) != 0)
4370 #ifdef HAVE_CHARSET
4371 panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
4372 #endif
4373 vfs_setup_cwd ();
4374 vfs_path_free (panel->cwd_vpath);
4375 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
4378 /* Load the default format */
4379 dir_list_load (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
4380 &panel->sort_info, panel->filter);
4382 /* Restore old right path */
4383 if (curdir != NULL)
4385 vfs_path_t *tmp_vpath;
4387 tmp_vpath = vfs_path_from_str (curdir);
4388 err = mc_chdir (tmp_vpath);
4389 vfs_path_free (tmp_vpath);
4391 g_free (curdir);
4393 return panel;
4396 /* --------------------------------------------------------------------------------------------- */
4398 void
4399 panel_reload (WPanel * panel)
4401 struct stat current_stat;
4402 vfs_path_t *cwd_vpath;
4404 if (panels_options.fast_reload && stat (vfs_path_as_str (panel->cwd_vpath), &current_stat) == 0
4405 && current_stat.st_ctime == panel->dir_stat.st_ctime
4406 && current_stat.st_mtime == panel->dir_stat.st_mtime)
4407 return;
4409 cwd_vpath = panel_recursive_cd_to_parent (panel->cwd_vpath);
4410 vfs_path_free (panel->cwd_vpath);
4412 if (cwd_vpath == NULL)
4414 panel->cwd_vpath = vfs_path_from_str (PATH_SEP_STR);
4415 panel_clean_dir (panel);
4416 dir_list_init (&panel->dir);
4417 return;
4420 panel->cwd_vpath = cwd_vpath;
4421 memset (&(panel->dir_stat), 0, sizeof (panel->dir_stat));
4422 show_dir (panel);
4424 dir_list_reload (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
4425 &panel->sort_info, panel->filter);
4427 panel->dirty = 1;
4428 if (panel->selected >= panel->dir.len)
4429 do_select (panel, panel->dir.len - 1);
4431 recalculate_panel_summary (panel);
4434 /* --------------------------------------------------------------------------------------------- */
4435 /* Switches the panel to the mode specified in the format */
4436 /* Seting up both format and status string. Return: 0 - on success; */
4437 /* 1 - format error; 2 - status error; 3 - errors in both formats. */
4440 set_panel_formats (WPanel * p)
4442 format_e *form;
4443 char *err = NULL;
4444 int retcode = 0;
4446 form = use_display_format (p, panel_format (p), &err, FALSE);
4448 if (err != NULL)
4450 g_free (err);
4451 retcode = 1;
4453 else
4455 delete_format (p->format);
4456 p->format = form;
4459 if (panels_options.show_mini_info)
4461 form = use_display_format (p, mini_status_format (p), &err, TRUE);
4463 if (err != NULL)
4465 g_free (err);
4466 retcode += 2;
4468 else
4470 delete_format (p->status_format);
4471 p->status_format = form;
4475 panel_format_modified (p);
4476 panel_update_cols (WIDGET (p), p->frame_size);
4478 if (retcode)
4479 message (D_ERROR, _("Warning"),
4480 _("User supplied format looks invalid, reverting to default."));
4481 if (retcode & 0x01)
4483 g_free (p->user_format);
4484 p->user_format = g_strdup (DEFAULT_USER_FORMAT);
4486 if (retcode & 0x02)
4488 g_free (p->user_status_format[p->list_format]);
4489 p->user_status_format[p->list_format] = g_strdup (DEFAULT_USER_FORMAT);
4492 return retcode;
4495 /* --------------------------------------------------------------------------------------------- */
4497 /* Select current item and readjust the panel */
4498 void
4499 select_item (WPanel * panel)
4501 /* Although currently all over the code we set the selection and
4502 top file to decent values before calling select_item, I could
4503 forget it someday, so it's better to do the actual fitting here */
4505 if (panel->selected < 0)
4506 panel->selected = 0;
4508 if (panel->selected > panel->dir.len - 1)
4509 panel->selected = panel->dir.len - 1;
4511 adjust_top_file (panel);
4513 panel->dirty = 1;
4515 execute_hooks (select_file_hook);
4518 /* --------------------------------------------------------------------------------------------- */
4519 /** Clears all files in the panel, used only when one file was marked */
4520 void
4521 unmark_files (WPanel * panel)
4523 int i;
4525 if (!panel->marked)
4526 return;
4528 for (i = 0; i < panel->dir.len; i++)
4529 file_mark (panel, i, 0);
4531 panel->dirs_marked = 0;
4532 panel->marked = 0;
4533 panel->total = 0;
4536 /* --------------------------------------------------------------------------------------------- */
4537 /** Recalculate the panels summary information, used e.g. when marked
4538 files might have been removed by an external command */
4540 void
4541 recalculate_panel_summary (WPanel * panel)
4543 int i;
4545 panel->marked = 0;
4546 panel->dirs_marked = 0;
4547 panel->total = 0;
4549 for (i = 0; i < panel->dir.len; i++)
4550 if (panel->dir.list[i].f.marked)
4552 /* do_file_mark will return immediately if newmark == oldmark.
4553 So we have to first unmark it to get panel's summary information
4554 updated. (Norbert) */
4555 panel->dir.list[i].f.marked = 0;
4556 do_file_mark (panel, i, 1);
4560 /* --------------------------------------------------------------------------------------------- */
4561 /** This routine marks a file or a directory */
4563 void
4564 do_file_mark (WPanel * panel, int idx, int mark)
4566 if (panel->dir.list[idx].f.marked == mark)
4567 return;
4569 /* Only '..' can't be marked, '.' isn't visible */
4570 if (DIR_IS_DOTDOT (panel->dir.list[idx].fname))
4571 return;
4573 file_mark (panel, idx, mark);
4574 if (panel->dir.list[idx].f.marked)
4576 panel->marked++;
4578 if (S_ISDIR (panel->dir.list[idx].st.st_mode))
4580 if (panel->dir.list[idx].f.dir_size_computed)
4581 panel->total += (uintmax_t) panel->dir.list[idx].st.st_size;
4582 panel->dirs_marked++;
4584 else
4585 panel->total += (uintmax_t) panel->dir.list[idx].st.st_size;
4587 set_colors (panel);
4589 else
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 panel->marked--;
4604 /* --------------------------------------------------------------------------------------------- */
4606 * Changes the current directory of the panel.
4607 * Record change in the directory history.
4609 gboolean
4610 do_panel_cd (WPanel * panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type)
4612 gboolean r;
4614 r = _do_panel_cd (panel, new_dir_vpath, cd_type);
4615 if (r)
4616 directory_history_add (panel, panel->cwd_vpath);
4617 return r;
4620 /* --------------------------------------------------------------------------------------------- */
4622 void
4623 file_mark (WPanel * panel, int lc_index, int val)
4625 if (panel->dir.list[lc_index].f.marked != val)
4627 panel->dir.list[lc_index].f.marked = val;
4628 panel->dirty = 1;
4632 /* --------------------------------------------------------------------------------------------- */
4634 void
4635 panel_re_sort (WPanel * panel)
4637 char *filename;
4638 int i;
4640 if (panel == NULL)
4641 return;
4643 filename = g_strdup (selection (panel)->fname);
4644 unselect_item (panel);
4645 dir_list_sort (&panel->dir, panel->sort_field->sort_routine, &panel->sort_info);
4646 panel->selected = -1;
4648 for (i = panel->dir.len; i != 0; i--)
4649 if (strcmp (panel->dir.list[i - 1].fname, filename) == 0)
4651 panel->selected = i - 1;
4652 break;
4655 g_free (filename);
4656 panel->top_file = panel->selected - panel_items (panel) / 2;
4657 select_item (panel);
4658 panel->dirty = 1;
4661 /* --------------------------------------------------------------------------------------------- */
4663 void
4664 panel_set_sort_order (WPanel * panel, const panel_field_t * sort_order)
4666 if (sort_order == NULL)
4667 return;
4669 panel->sort_field = sort_order;
4671 /* The directory is already sorted, we have to load the unsorted stuff */
4672 if (sort_order->sort_routine == (GCompareFunc) unsorted)
4674 char *current_file;
4676 current_file = g_strdup (panel->dir.list[panel->selected].fname);
4677 panel_reload (panel);
4678 try_to_select (panel, current_file);
4679 g_free (current_file);
4681 panel_re_sort (panel);
4684 /* --------------------------------------------------------------------------------------------- */
4686 #ifdef HAVE_CHARSET
4689 * Change panel encoding.
4690 * @param panel WPanel object
4693 void
4694 panel_change_encoding (WPanel * panel)
4696 const char *encoding = NULL;
4697 char *errmsg;
4698 int r;
4700 r = select_charset (-1, -1, panel->codepage, FALSE);
4702 if (r == SELECT_CHARSET_CANCEL)
4703 return; /* Cancel */
4705 panel->codepage = r;
4707 if (panel->codepage == SELECT_CHARSET_NO_TRANSLATE)
4709 /* No translation */
4710 vfs_path_t *cd_path_vpath;
4712 g_free (init_translation_table (mc_global.display_codepage, mc_global.display_codepage));
4713 cd_path_vpath = remove_encoding_from_path (panel->cwd_vpath);
4714 do_panel_cd (panel, cd_path_vpath, cd_parse_command);
4715 show_dir (panel);
4716 vfs_path_free (cd_path_vpath);
4717 return;
4720 errmsg = init_translation_table (panel->codepage, mc_global.display_codepage);
4721 if (errmsg != NULL)
4723 message (D_ERROR, MSG_ERROR, "%s", errmsg);
4724 g_free (errmsg);
4725 return;
4728 encoding = get_codepage_id (panel->codepage);
4729 if (encoding != NULL)
4731 vfs_path_change_encoding (panel->cwd_vpath, encoding);
4733 if (!do_panel_cd (panel, panel->cwd_vpath, cd_parse_command))
4734 message (D_ERROR, MSG_ERROR, _("Cannot chdir to \"%s\""),
4735 vfs_path_as_str (panel->cwd_vpath));
4739 /* --------------------------------------------------------------------------------------------- */
4742 * Remove encode info from last path element.
4745 vfs_path_t *
4746 remove_encoding_from_path (const vfs_path_t * vpath)
4748 vfs_path_t *ret_vpath;
4749 GString *tmp_conv;
4750 int indx;
4752 ret_vpath = vfs_path_new ();
4754 tmp_conv = g_string_new ("");
4756 for (indx = 0; indx < vfs_path_elements_count (vpath); indx++)
4758 GIConv converter;
4759 vfs_path_element_t *path_element;
4761 path_element = vfs_path_element_clone (vfs_path_get_by_index (vpath, indx));
4763 if (path_element->encoding == NULL)
4765 vfs_path_add_element (ret_vpath, path_element);
4766 continue;
4769 converter = str_crt_conv_to (path_element->encoding);
4770 if (converter == INVALID_CONV)
4772 vfs_path_add_element (ret_vpath, path_element);
4773 continue;
4776 MC_PTR_FREE (path_element->encoding);
4778 str_vfs_convert_from (converter, path_element->path, tmp_conv);
4780 g_free (path_element->path);
4781 path_element->path = g_strndup (tmp_conv->str, tmp_conv->len);
4783 g_string_set_size (tmp_conv, 0);
4785 str_close_conv (converter);
4786 str_close_conv (path_element->dir.converter);
4787 path_element->dir.converter = INVALID_CONV;
4788 vfs_path_add_element (ret_vpath, path_element);
4790 g_string_free (tmp_conv, TRUE);
4791 return ret_vpath;
4793 #endif /* HAVE_CHARSET */
4795 /* --------------------------------------------------------------------------------------------- */
4798 * This routine reloads the directory in both panels. It tries to
4799 * select current_file in current_panel and other_file in other_panel.
4800 * If current_file == -1 then it automatically sets current_file and
4801 * other_file to the currently selected files in the panels.
4803 * If flags has the UP_ONLY_CURRENT bit toggled on, then it
4804 * will not reload the other panel.
4806 * @param flags for reload panel
4807 * @param current_file name of the current file
4810 void
4811 update_panels (panel_update_flags_t flags, const char *current_file)
4813 WPanel *panel;
4815 /* first, update other panel... */
4816 if ((flags & UP_ONLY_CURRENT) == 0)
4817 update_one_panel (get_other_index (), flags, UP_KEEPSEL);
4818 /* ...then current one */
4819 update_one_panel (get_current_index (), flags, current_file);
4821 if (get_current_type () == view_listing)
4822 panel = PANEL (get_panel_widget (get_current_index ()));
4823 else
4824 panel = PANEL (get_panel_widget (get_other_index ()));
4826 if (!panel->is_panelized)
4827 (void) mc_chdir (panel->cwd_vpath);
4830 /* --------------------------------------------------------------------------------------------- */
4832 gsize
4833 panel_get_num_of_sortable_fields (void)
4835 gsize ret = 0, lc_index;
4837 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4838 if (panel_fields[lc_index].is_user_choice)
4839 ret++;
4840 return ret;
4843 /* --------------------------------------------------------------------------------------------- */
4845 char **
4846 panel_get_sortable_fields (gsize * array_size)
4848 char **ret;
4849 gsize lc_index, i;
4851 lc_index = panel_get_num_of_sortable_fields ();
4853 ret = g_try_new0 (char *, lc_index + 1);
4854 if (ret == NULL)
4855 return NULL;
4857 if (array_size != NULL)
4858 *array_size = lc_index;
4860 lc_index = 0;
4862 for (i = 0; panel_fields[i].id != NULL; i++)
4863 if (panel_fields[i].is_user_choice)
4864 ret[lc_index++] = g_strdup (_(panel_fields[i].title_hotkey));
4866 return ret;
4869 /* --------------------------------------------------------------------------------------------- */
4871 const panel_field_t *
4872 panel_get_field_by_id (const char *name)
4874 gsize lc_index;
4876 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4877 if (panel_fields[lc_index].id != NULL && strcmp (name, panel_fields[lc_index].id) == 0)
4878 return &panel_fields[lc_index];
4880 return NULL;
4883 /* --------------------------------------------------------------------------------------------- */
4885 const panel_field_t *
4886 panel_get_field_by_title_hotkey (const char *name)
4888 gsize lc_index;
4890 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4891 if (panel_fields[lc_index].title_hotkey != NULL &&
4892 strcmp (name, _(panel_fields[lc_index].title_hotkey)) == 0)
4893 return &panel_fields[lc_index];
4895 return NULL;
4898 /* --------------------------------------------------------------------------------------------- */
4900 const panel_field_t *
4901 panel_get_field_by_title (const char *name)
4903 gsize lc_index;
4905 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4907 const char *title;
4909 title = panel_get_title_without_hotkey (panel_fields[lc_index].title_hotkey);
4910 if (strcmp (title, name) == 0)
4911 return &panel_fields[lc_index];
4914 return NULL;
4917 /* --------------------------------------------------------------------------------------------- */
4919 gsize
4920 panel_get_num_of_user_possible_fields (void)
4922 gsize ret = 0, lc_index;
4924 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4925 if (panel_fields[lc_index].use_in_user_format)
4926 ret++;
4928 return ret;
4931 /* --------------------------------------------------------------------------------------------- */
4933 char **
4934 panel_get_user_possible_fields (gsize * array_size)
4936 char **ret;
4937 gsize lc_index, i;
4939 lc_index = panel_get_num_of_user_possible_fields ();
4941 ret = g_try_new0 (char *, lc_index + 1);
4942 if (ret == NULL)
4943 return NULL;
4945 if (array_size != NULL)
4946 *array_size = lc_index;
4948 lc_index = 0;
4950 for (i = 0; panel_fields[i].id != NULL; i++)
4951 if (panel_fields[i].use_in_user_format)
4952 ret[lc_index++] = g_strdup (_(panel_fields[i].title_hotkey));
4954 return ret;
4957 /* --------------------------------------------------------------------------------------------- */
4959 void
4960 panel_init (void)
4962 panel_sort_up_sign = mc_skin_get ("widget-common", "sort-sign-up", "'");
4963 panel_sort_down_sign = mc_skin_get ("widget-common", "sort-sign-down", ".");
4965 panel_hiddenfiles_sign_show = mc_skin_get ("widget-panel", "hiddenfiles-sign-show", ".");
4966 panel_hiddenfiles_sign_hide = mc_skin_get ("widget-panel", "hiddenfiles-sign-hide", ".");
4967 panel_history_prev_item_sign = mc_skin_get ("widget-panel", "history-prev-item-sign", "<");
4968 panel_history_next_item_sign = mc_skin_get ("widget-panel", "history-next-item-sign", ">");
4969 panel_history_show_list_sign = mc_skin_get ("widget-panel", "history-show-list-sign", "^");
4970 panel_filename_scroll_left_char =
4971 mc_skin_get ("widget-panel", "filename-scroll-left-char", "{");
4972 panel_filename_scroll_right_char =
4973 mc_skin_get ("widget-panel", "filename-scroll-right-char", "}");
4975 mc_event_add (MCEVENT_GROUP_FILEMANAGER, "update_panels", event_update_panels, NULL, NULL);
4976 mc_event_add (MCEVENT_GROUP_FILEMANAGER, "panel_save_current_file_to_clip_file",
4977 panel_save_current_file_to_clip_file, NULL, NULL);
4980 /* --------------------------------------------------------------------------------------------- */
4982 void
4983 panel_deinit (void)
4985 g_free (panel_sort_up_sign);
4986 g_free (panel_sort_down_sign);
4988 g_free (panel_hiddenfiles_sign_show);
4989 g_free (panel_hiddenfiles_sign_hide);
4990 g_free (panel_history_prev_item_sign);
4991 g_free (panel_history_next_item_sign);
4992 g_free (panel_history_show_list_sign);
4993 g_free (panel_filename_scroll_left_char);
4994 g_free (panel_filename_scroll_right_char);
4997 /* --------------------------------------------------------------------------------------------- */
4999 gboolean
5000 do_cd (const vfs_path_t * new_dir_vpath, enum cd_enum exact)
5002 gboolean res;
5003 const vfs_path_t *_new_dir_vpath = new_dir_vpath;
5005 if (current_panel->is_panelized)
5007 size_t new_vpath_len;
5009 new_vpath_len = vfs_path_len (new_dir_vpath);
5010 if (vfs_path_equal_len (new_dir_vpath, panelized_panel.root_vpath, new_vpath_len))
5011 _new_dir_vpath = panelized_panel.root_vpath;
5014 res = do_panel_cd (current_panel, _new_dir_vpath, exact);
5016 #ifdef HAVE_CHARSET
5017 if (res)
5019 const vfs_path_element_t *path_element;
5021 path_element = vfs_path_get_by_index (current_panel->cwd_vpath, -1);
5022 if (path_element->encoding != NULL)
5023 current_panel->codepage = get_codepage_index (path_element->encoding);
5024 else
5025 current_panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
5027 #endif /* HAVE_CHARSET */
5029 return res;
5032 /* --------------------------------------------------------------------------------------------- */