Ticket #3130: implement center scrolling of panel.
[midnight-commander.git] / src / filemanager / panel.c
blob69f1df952bcea927367d34a80cfd9b966556da8c
1 /*
2 Panel managing.
4 Copyright (C) 1994-2016
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 "dir.h"
69 #include "boxes.h"
70 #include "tree.h"
71 #include "ext.h" /* regexp_command */
72 #include "layout.h" /* Most layout variables are here */
73 #include "cmd.h"
74 #include "command.h" /* cmdline */
75 #include "usermenu.h"
76 #include "midnight.h"
77 #include "mountlist.h" /* my_statfs */
79 #include "panel.h"
81 /*** global variables ****************************************************************************/
83 /* The hook list for the select file function */
84 hook_t *select_file_hook = NULL;
86 /* *INDENT-OFF* */
87 panelized_panel_t panelized_panel = { {NULL, 0, -1}, NULL };
88 /* *INDENT-ON* */
90 static const char *string_file_name (file_entry_t *, int);
91 static const char *string_file_size (file_entry_t *, int);
92 static const char *string_file_size_brief (file_entry_t *, int);
93 static const char *string_file_type (file_entry_t *, int);
94 static const char *string_file_mtime (file_entry_t *, int);
95 static const char *string_file_atime (file_entry_t *, int);
96 static const char *string_file_ctime (file_entry_t *, int);
97 static const char *string_file_permission (file_entry_t *, int);
98 static const char *string_file_perm_octal (file_entry_t *, int);
99 static const char *string_file_nlinks (file_entry_t *, int);
100 static const char *string_inode (file_entry_t *, int);
101 static const char *string_file_nuid (file_entry_t *, int);
102 static const char *string_file_ngid (file_entry_t *, int);
103 static const char *string_file_owner (file_entry_t *, int);
104 static const char *string_file_group (file_entry_t *, int);
105 static const char *string_marked (file_entry_t *, int);
106 static const char *string_space (file_entry_t *, int);
107 static const char *string_dot (file_entry_t *, int);
109 mc_fhl_t *mc_filehighlight = NULL;
111 /*** file scope macro definitions ****************************************************************/
113 #define NORMAL 0
114 #define SELECTED 1
115 #define MARKED 2
116 #define MARKED_SELECTED 3
117 #define STATUS 5
119 /*** file scope type declarations ****************************************************************/
121 typedef enum
123 MARK_DONT_MOVE = 0,
124 MARK_DOWN = 1,
125 MARK_FORCE_DOWN = 2,
126 MARK_FORCE_UP = 3
127 } mark_act_t;
130 * This describes a format item. The parse_display_format routine parses
131 * the user specified format and creates a linked list of format_e structures.
133 typedef struct format_e
135 struct format_e *next;
136 int requested_field_len;
137 int field_len;
138 align_crt_t just_mode;
139 gboolean expand;
140 const char *(*string_fn) (file_entry_t *, int len);
141 char *title;
142 const char *id;
143 } format_e;
145 /* File name scroll states */
146 typedef enum
148 FILENAME_NOSCROLL = 1,
149 FILENAME_SCROLL_LEFT = 2,
150 FILENAME_SCROLL_RIGHT = 4
151 } filename_scroll_flag_t;
153 /*** file scope variables ************************************************************************/
155 /* *INDENT-OFF* */
156 static panel_field_t panel_fields[] = {
158 "unsorted", 12, TRUE, J_LEFT_FIT,
159 /* TRANSLATORS: one single character to represent 'unsorted' sort mode */
160 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
161 N_("sort|u"),
162 N_("&Unsorted"), TRUE, FALSE,
163 string_file_name,
164 (GCompareFunc) unsorted
168 "name", 12, TRUE, J_LEFT_FIT,
169 /* TRANSLATORS: one single character to represent 'name' sort mode */
170 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
171 N_("sort|n"),
172 N_("&Name"), TRUE, TRUE,
173 string_file_name,
174 (GCompareFunc) sort_name
178 "version", 12, TRUE, J_LEFT_FIT,
179 /* TRANSLATORS: one single character to represent 'version' sort mode */
180 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
181 N_("sort|v"),
182 N_("&Version"), TRUE, FALSE,
183 string_file_name,
184 (GCompareFunc) sort_vers
188 "extension", 12, TRUE, J_LEFT_FIT,
189 /* TRANSLATORS: one single character to represent 'extension' sort mode */
190 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
191 N_("sort|e"),
192 N_("E&xtension"), TRUE, FALSE,
193 string_file_name, /* TODO: string_file_ext */
194 (GCompareFunc) sort_ext
198 "size", 7, FALSE, J_RIGHT,
199 /* TRANSLATORS: one single character to represent 'size' sort mode */
200 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
201 N_("sort|s"),
202 N_("&Size"), TRUE, TRUE,
203 string_file_size,
204 (GCompareFunc) sort_size
208 "bsize", 7, FALSE, J_RIGHT,
210 N_("Block Size"), FALSE, FALSE,
211 string_file_size_brief,
212 (GCompareFunc) sort_size
216 "type", 1, FALSE, J_LEFT,
218 "", FALSE, TRUE,
219 string_file_type,
220 NULL
224 "mtime", 12, FALSE, J_RIGHT,
225 /* TRANSLATORS: one single character to represent 'Modify time' sort mode */
226 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
227 N_("sort|m"),
228 N_("&Modify time"), TRUE, TRUE,
229 string_file_mtime,
230 (GCompareFunc) sort_time
234 "atime", 12, FALSE, J_RIGHT,
235 /* TRANSLATORS: one single character to represent 'Access time' sort mode */
236 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
237 N_("sort|a"),
238 N_("&Access time"), TRUE, TRUE,
239 string_file_atime,
240 (GCompareFunc) sort_atime
244 "ctime", 12, FALSE, J_RIGHT,
245 /* TRANSLATORS: one single character to represent 'Change time' sort mode */
246 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
247 N_("sort|h"),
248 N_("C&hange time"), TRUE, TRUE,
249 string_file_ctime,
250 (GCompareFunc) sort_ctime
254 "perm", 10, FALSE, J_LEFT,
256 N_("Permission"), FALSE, TRUE,
257 string_file_permission,
258 NULL
262 "mode", 6, FALSE, J_RIGHT,
264 N_("Perm"), FALSE, TRUE,
265 string_file_perm_octal,
266 NULL
270 "nlink", 2, FALSE, J_RIGHT,
272 N_("Nl"), FALSE, TRUE,
273 string_file_nlinks, NULL
277 "inode", 5, FALSE, J_RIGHT,
278 /* TRANSLATORS: one single character to represent 'inode' sort mode */
279 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
280 N_("sort|i"),
281 N_("&Inode"), TRUE, TRUE,
282 string_inode,
283 (GCompareFunc) sort_inode
287 "nuid", 5, FALSE, J_RIGHT,
289 N_("UID"), FALSE, FALSE,
290 string_file_nuid,
291 NULL
295 "ngid", 5, FALSE, J_RIGHT,
297 N_("GID"), FALSE, FALSE,
298 string_file_ngid,
299 NULL
303 "owner", 8, FALSE, J_LEFT_FIT,
305 N_("Owner"), FALSE, TRUE,
306 string_file_owner,
307 NULL
311 "group", 8, FALSE, J_LEFT_FIT,
313 N_("Group"), FALSE, TRUE,
314 string_file_group,
315 NULL
319 "mark", 1, FALSE, J_RIGHT,
321 " ", FALSE, TRUE,
322 string_marked,
323 NULL
327 "|", 1, FALSE, J_RIGHT,
329 " ", FALSE, TRUE,
330 NULL,
331 NULL
335 "space", 1, FALSE, J_RIGHT,
337 " ", FALSE, TRUE,
338 string_space,
339 NULL
343 "dot", 1, FALSE, J_RIGHT,
345 " ", FALSE, FALSE,
346 string_dot,
347 NULL
351 NULL, 0, FALSE, J_RIGHT, NULL, NULL, FALSE, FALSE, NULL, NULL
354 /* *INDENT-ON* */
356 static char *panel_sort_up_sign = NULL;
357 static char *panel_sort_down_sign = NULL;
359 static char *panel_hiddenfiles_sign_show = NULL;
360 static char *panel_hiddenfiles_sign_hide = NULL;
361 static char *panel_history_prev_item_sign = NULL;
362 static char *panel_history_next_item_sign = NULL;
363 static char *panel_history_show_list_sign = NULL;
364 static char *panel_filename_scroll_left_char = NULL;
365 static char *panel_filename_scroll_right_char = NULL;
367 /* Panel that selection started */
368 static WPanel *mouse_mark_panel = NULL;
370 static int mouse_marking = 0;
371 static int state_mark = 0;
373 /* --------------------------------------------------------------------------------------------- */
374 /*** file scope functions ************************************************************************/
375 /* --------------------------------------------------------------------------------------------- */
377 static void
378 set_colors (const WPanel * panel)
380 (void) panel;
382 tty_set_normal_attrs ();
383 tty_setcolor (NORMAL_COLOR);
386 /* --------------------------------------------------------------------------------------------- */
387 /** Delete format string, it is a linked list */
389 static void
390 delete_format (format_e * format)
392 while (format != NULL)
394 format_e *next = format->next;
395 g_free (format->title);
396 g_free (format);
397 format = next;
401 /* --------------------------------------------------------------------------------------------- */
402 /** Extract the number of available lines in a panel */
404 static int
405 panel_lines (const WPanel * p)
407 /* 3 lines are: top frame, column header, botton frame */
408 return (CONST_WIDGET (p)->lines - 3 - (panels_options.show_mini_info ? 2 : 0));
411 /* --------------------------------------------------------------------------------------------- */
412 /** This code relies on the default justification!!! */
414 static void
415 add_permission_string (const char *dest, int width, file_entry_t * fe, int attr, int color,
416 gboolean is_octal)
418 int i, r, l;
420 l = get_user_permissions (&fe->st);
422 if (is_octal)
424 /* Place of the access bit in octal mode */
425 l = width + l - 3;
426 r = l + 1;
428 else
430 /* The same to the triplet in string mode */
431 l = l * 3 + 1;
432 r = l + 3;
435 for (i = 0; i < width; i++)
437 if (i >= l && i < r)
439 if (attr == SELECTED || attr == MARKED_SELECTED)
440 tty_setcolor (MARKED_SELECTED_COLOR);
441 else
442 tty_setcolor (MARKED_COLOR);
444 else if (color >= 0)
445 tty_setcolor (color);
446 else
447 tty_lowlevel_setcolor (-color);
449 tty_print_char (dest[i]);
453 /* --------------------------------------------------------------------------------------------- */
454 /** String representations of various file attributes name */
456 static const char *
457 string_file_name (file_entry_t * fe, int len)
459 static char buffer[MC_MAXPATHLEN * MB_LEN_MAX + 1];
461 (void) len;
463 g_strlcpy (buffer, fe->fname, sizeof (buffer));
464 return buffer;
467 /* --------------------------------------------------------------------------------------------- */
469 static unsigned int
470 ilog10 (dev_t n)
472 unsigned int digits = 0;
476 digits++, n /= 10;
478 while (n != 0);
480 return digits;
483 /* --------------------------------------------------------------------------------------------- */
485 static void
486 format_device_number (char *buf, size_t bufsize, dev_t dev)
488 dev_t major_dev = major (dev);
489 dev_t minor_dev = minor (dev);
490 unsigned int major_digits = ilog10 (major_dev);
491 unsigned int minor_digits = ilog10 (minor_dev);
493 g_assert (bufsize >= 1);
495 if (major_digits + 1 + minor_digits + 1 <= bufsize)
496 g_snprintf (buf, bufsize, "%lu,%lu", (unsigned long) major_dev, (unsigned long) minor_dev);
497 else
498 g_strlcpy (buf, _("[dev]"), bufsize);
501 /* --------------------------------------------------------------------------------------------- */
502 /** size */
504 static const char *
505 string_file_size (file_entry_t * fe, int len)
507 static char buffer[BUF_TINY];
509 /* Don't ever show size of ".." since we don't calculate it */
510 if (DIR_IS_DOTDOT (fe->fname))
511 return _("UP--DIR");
513 #ifdef HAVE_STRUCT_STAT_ST_RDEV
514 if (S_ISBLK (fe->st.st_mode) || S_ISCHR (fe->st.st_mode))
515 format_device_number (buffer, len + 1, fe->st.st_rdev);
516 else
517 #endif
518 size_trunc_len (buffer, (unsigned int) len, fe->st.st_size, 0, panels_options.kilobyte_si);
520 return buffer;
523 /* --------------------------------------------------------------------------------------------- */
524 /** bsize */
526 static const char *
527 string_file_size_brief (file_entry_t * fe, int len)
529 if (S_ISLNK (fe->st.st_mode) && !fe->f.link_to_dir)
530 return _("SYMLINK");
532 if ((S_ISDIR (fe->st.st_mode) || fe->f.link_to_dir) && !DIR_IS_DOTDOT (fe->fname))
533 return _("SUB-DIR");
535 return string_file_size (fe, len);
538 /* --------------------------------------------------------------------------------------------- */
539 /** This functions return a string representation of a file entry type */
541 static const char *
542 string_file_type (file_entry_t * fe, int len)
544 static char buffer[2];
546 (void) len;
548 if (S_ISDIR (fe->st.st_mode))
549 buffer[0] = PATH_SEP;
550 else if (S_ISLNK (fe->st.st_mode))
552 if (fe->f.link_to_dir)
553 buffer[0] = '~';
554 else if (fe->f.stale_link)
555 buffer[0] = '!';
556 else
557 buffer[0] = '@';
559 else if (S_ISCHR (fe->st.st_mode))
560 buffer[0] = '-';
561 else if (S_ISSOCK (fe->st.st_mode))
562 buffer[0] = '=';
563 else if (S_ISDOOR (fe->st.st_mode))
564 buffer[0] = '>';
565 else if (S_ISBLK (fe->st.st_mode))
566 buffer[0] = '+';
567 else if (S_ISFIFO (fe->st.st_mode))
568 buffer[0] = '|';
569 else if (S_ISNAM (fe->st.st_mode))
570 buffer[0] = '#';
571 else if (!S_ISREG (fe->st.st_mode))
572 buffer[0] = '?'; /* non-regular of unknown kind */
573 else if (is_exe (fe->st.st_mode))
574 buffer[0] = '*';
575 else
576 buffer[0] = ' ';
577 buffer[1] = '\0';
578 return buffer;
581 /* --------------------------------------------------------------------------------------------- */
582 /** mtime */
584 static const char *
585 string_file_mtime (file_entry_t * fe, int len)
587 (void) len;
589 return file_date (fe->st.st_mtime);
592 /* --------------------------------------------------------------------------------------------- */
593 /** atime */
595 static const char *
596 string_file_atime (file_entry_t * fe, int len)
598 (void) len;
600 return file_date (fe->st.st_atime);
603 /* --------------------------------------------------------------------------------------------- */
604 /** ctime */
606 static const char *
607 string_file_ctime (file_entry_t * fe, int len)
609 (void) len;
611 return file_date (fe->st.st_ctime);
614 /* --------------------------------------------------------------------------------------------- */
615 /** perm */
617 static const char *
618 string_file_permission (file_entry_t * fe, int len)
620 (void) len;
622 return string_perm (fe->st.st_mode);
625 /* --------------------------------------------------------------------------------------------- */
626 /** mode */
628 static const char *
629 string_file_perm_octal (file_entry_t * fe, int len)
631 static char buffer[10];
633 (void) len;
635 g_snprintf (buffer, sizeof (buffer), "0%06lo", (unsigned long) fe->st.st_mode);
636 return buffer;
639 /* --------------------------------------------------------------------------------------------- */
640 /** nlink */
642 static const char *
643 string_file_nlinks (file_entry_t * fe, int len)
645 static char buffer[BUF_TINY];
647 (void) len;
649 g_snprintf (buffer, sizeof (buffer), "%16d", (int) fe->st.st_nlink);
650 return buffer;
653 /* --------------------------------------------------------------------------------------------- */
654 /** inode */
656 static const char *
657 string_inode (file_entry_t * fe, int len)
659 static char buffer[10];
661 (void) len;
663 g_snprintf (buffer, sizeof (buffer), "%lu", (unsigned long) fe->st.st_ino);
664 return buffer;
667 /* --------------------------------------------------------------------------------------------- */
668 /** nuid */
670 static const char *
671 string_file_nuid (file_entry_t * fe, int len)
673 static char buffer[10];
675 (void) len;
677 g_snprintf (buffer, sizeof (buffer), "%lu", (unsigned long) fe->st.st_uid);
678 return buffer;
681 /* --------------------------------------------------------------------------------------------- */
682 /** ngid */
684 static const char *
685 string_file_ngid (file_entry_t * fe, int len)
687 static char buffer[10];
689 (void) len;
691 g_snprintf (buffer, sizeof (buffer), "%lu", (unsigned long) fe->st.st_gid);
692 return buffer;
695 /* --------------------------------------------------------------------------------------------- */
696 /** owner */
698 static const char *
699 string_file_owner (file_entry_t * fe, int len)
701 (void) len;
703 return get_owner (fe->st.st_uid);
706 /* --------------------------------------------------------------------------------------------- */
707 /** group */
709 static const char *
710 string_file_group (file_entry_t * fe, int len)
712 (void) len;
714 return get_group (fe->st.st_gid);
717 /* --------------------------------------------------------------------------------------------- */
718 /** mark */
720 static const char *
721 string_marked (file_entry_t * fe, int len)
723 (void) len;
725 return fe->f.marked ? "*" : " ";
728 /* --------------------------------------------------------------------------------------------- */
729 /** space */
731 static const char *
732 string_space (file_entry_t * fe, int len)
734 (void) fe;
735 (void) len;
737 return " ";
740 /* --------------------------------------------------------------------------------------------- */
741 /** dot */
743 static const char *
744 string_dot (file_entry_t * fe, int len)
746 (void) fe;
747 (void) len;
749 return ".";
752 /* --------------------------------------------------------------------------------------------- */
754 static int
755 file_compute_color (int attr, file_entry_t * fe)
757 switch (attr)
759 case SELECTED:
760 return (SELECTED_COLOR);
761 case MARKED:
762 return (MARKED_COLOR);
763 case MARKED_SELECTED:
764 return (MARKED_SELECTED_COLOR);
765 case STATUS:
766 return (NORMAL_COLOR);
767 case NORMAL:
768 default:
769 if (!panels_options.filetype_mode)
770 return (NORMAL_COLOR);
773 return mc_fhl_get_color (mc_filehighlight, fe);
776 /* --------------------------------------------------------------------------------------------- */
777 /** Returns the number of items in the given panel */
779 static int
780 panel_items (const WPanel * p)
782 return panel_lines (p) * p->list_cols;
785 /* --------------------------------------------------------------------------------------------- */
786 /** Formats the file number file_index of panel in the buffer dest */
788 static filename_scroll_flag_t
789 format_file (WPanel * panel, int file_index, int width, int attr, gboolean isstatus,
790 int *field_length)
792 int color = NORMAL_COLOR;
793 int length = 0;
794 format_e *format, *home;
795 file_entry_t *fe = NULL;
796 filename_scroll_flag_t res = FILENAME_NOSCROLL;
798 *field_length = 0;
800 if (file_index < panel->dir.len)
802 fe = &panel->dir.list[file_index];
803 color = file_compute_color (attr, fe);
806 home = isstatus ? panel->status_format : panel->format;
808 for (format = home; format != NULL && length != width; format = format->next)
810 if (format->string_fn != NULL)
812 const char *txt = " ";
813 int len, perm = 0;
814 const char *prepared_text;
815 int name_offset = 0;
817 if (fe != NULL)
818 txt = format->string_fn (fe, format->field_len);
820 len = format->field_len;
821 if (len + length > width)
822 len = width - length;
823 if (len <= 0)
824 break;
826 if (!isstatus && panel->content_shift > -1 && strcmp (format->id, "name") == 0)
828 int str_len;
829 int i;
831 *field_length = len + 1;
833 str_len = str_length (txt);
834 i = MAX (0, str_len - len);
835 panel->max_shift = MAX (panel->max_shift, i);
836 i = MIN (panel->content_shift, i);
838 if (i > -1)
840 name_offset = str_offset_to_pos (txt, i);
841 if (str_len > len)
843 res = FILENAME_SCROLL_LEFT;
844 if (str_length (txt + name_offset) > len)
845 res |= FILENAME_SCROLL_RIGHT;
850 if (panels_options.permission_mode)
852 if (strcmp (format->id, "perm") == 0)
853 perm = 1;
854 else if (strcmp (format->id, "mode") == 0)
855 perm = 2;
858 if (color >= 0)
859 tty_setcolor (color);
860 else
861 tty_lowlevel_setcolor (-color);
863 if (!isstatus && panel->content_shift > -1)
864 prepared_text =
865 str_fit_to_term (txt + name_offset, len, HIDE_FIT (format->just_mode));
866 else
867 prepared_text = str_fit_to_term (txt, len, format->just_mode);
869 if (perm != 0 && fe != NULL)
870 add_permission_string (prepared_text, format->field_len, fe, attr, color,
871 perm != 1);
872 else
873 tty_print_string (prepared_text);
875 length += len;
877 else
879 if (attr == SELECTED || attr == MARKED_SELECTED)
880 tty_setcolor (SELECTED_COLOR);
881 else
882 tty_setcolor (NORMAL_COLOR);
883 tty_print_one_vline (TRUE);
884 length++;
888 if (length < width)
890 int y, x;
892 tty_getyx (&y, &x);
893 tty_draw_hline (y, x, ' ', width - length);
896 return res;
899 /* --------------------------------------------------------------------------------------------- */
901 static void
902 repaint_file (WPanel * panel, int file_index, gboolean mv, int attr, gboolean isstatus)
904 Widget *w = WIDGET (panel);
906 int nth_column = 0;
907 int width;
908 int offset = 0;
909 filename_scroll_flag_t ret_frm;
910 int ypos = 0;
911 gboolean panel_is_split;
912 int fln = 0;
914 panel_is_split = !isstatus && panel->list_cols > 1;
915 width = w->cols - 2;
917 if (panel_is_split)
919 nth_column = (file_index - panel->top_file) / panel_lines (panel);
920 width /= panel->list_cols;
922 offset = width * nth_column;
924 if (nth_column + 1 >= panel->list_cols)
925 width = w->cols - offset - 2;
928 /* Nothing to paint */
929 if (width <= 0)
930 return;
932 if (mv)
934 ypos = file_index - panel->top_file;
936 if (panel_is_split)
937 ypos %= panel_lines (panel);
939 ypos += 2; /* top frame and header */
940 widget_move (w, ypos, offset + 1);
943 ret_frm = format_file (panel, file_index, width, attr, isstatus, &fln);
945 if (panel_is_split && nth_column + 1 < panel->list_cols)
947 tty_setcolor (NORMAL_COLOR);
948 tty_print_one_vline (TRUE);
951 if (ret_frm != FILENAME_NOSCROLL && mv)
953 if (!panel_is_split && fln > 0)
955 if (panel->list_type != list_long)
956 width = fln;
957 else
959 offset = width - fln + 1;
960 width = fln - 1;
964 widget_move (w, ypos, offset);
965 tty_setcolor (NORMAL_COLOR);
966 tty_print_string (panel_filename_scroll_left_char);
968 if ((ret_frm & FILENAME_SCROLL_RIGHT) != 0)
970 offset += width;
971 if (nth_column + 1 >= panel->list_cols)
972 offset++;
974 widget_move (w, ypos, offset);
975 tty_setcolor (NORMAL_COLOR);
976 tty_print_string (panel_filename_scroll_right_char);
981 /* --------------------------------------------------------------------------------------------- */
983 static void
984 display_mini_info (WPanel * panel)
986 Widget *w = WIDGET (panel);
988 if (!panels_options.show_mini_info)
989 return;
991 widget_move (w, panel_lines (panel) + 3, 1);
993 if (panel->searching)
995 tty_setcolor (INPUT_COLOR);
996 tty_print_char ('/');
997 tty_print_string (str_fit_to_term (panel->search_buffer, w->cols - 3, J_LEFT));
998 return;
1001 /* Status resolves links and show them */
1002 set_colors (panel);
1004 if (S_ISLNK (panel->dir.list[panel->selected].st.st_mode))
1006 char link_target[MC_MAXPATHLEN];
1007 vfs_path_t *lc_link_vpath;
1008 int len;
1010 lc_link_vpath =
1011 vfs_path_append_new (panel->cwd_vpath, panel->dir.list[panel->selected].fname,
1012 (char *) NULL);
1013 len = mc_readlink (lc_link_vpath, link_target, MC_MAXPATHLEN - 1);
1014 vfs_path_free (lc_link_vpath);
1015 if (len > 0)
1017 link_target[len] = 0;
1018 tty_print_string ("-> ");
1019 tty_print_string (str_fit_to_term (link_target, w->cols - 5, J_LEFT_FIT));
1021 else
1022 tty_print_string (str_fit_to_term (_("<readlink failed>"), w->cols - 2, J_LEFT));
1024 else if (DIR_IS_DOTDOT (panel->dir.list[panel->selected].fname))
1026 /* FIXME:
1027 * while loading directory (dir_list_load() and dir_list_reload()),
1028 * the actual stat info about ".." directory isn't got;
1029 * so just don't display incorrect info about ".." directory */
1030 tty_print_string (str_fit_to_term (_("UP--DIR"), w->cols - 2, J_LEFT));
1032 else
1033 /* Default behavior */
1034 repaint_file (panel, panel->selected, FALSE, STATUS, TRUE);
1037 /* --------------------------------------------------------------------------------------------- */
1039 static void
1040 paint_dir (WPanel * panel)
1042 int i;
1043 int items; /* Number of items */
1045 items = panel_items (panel);
1046 /* reset max len of filename because we have the new max length for the new file list */
1047 panel->max_shift = -1;
1049 for (i = 0; i < items; i++)
1051 int color = 0; /* Color value of the line */
1053 if (i + panel->top_file < panel->dir.len)
1055 color = 2 * (panel->dir.list[i + panel->top_file].f.marked);
1056 color += (panel->selected == i + panel->top_file && panel->active);
1059 repaint_file (panel, i + panel->top_file, TRUE, color, FALSE);
1062 tty_set_normal_attrs ();
1065 /* --------------------------------------------------------------------------------------------- */
1067 static void
1068 display_total_marked_size (const WPanel * panel, int y, int x, gboolean size_only)
1070 const Widget *w = CONST_WIDGET (panel);
1072 char buffer[BUF_SMALL], b_bytes[BUF_SMALL];
1073 const char *buf;
1074 int cols;
1076 if (panel->marked <= 0)
1077 return;
1079 buf = size_only ? b_bytes : buffer;
1080 cols = w->cols - 2;
1083 * This is a trick to use two ngettext() calls in one sentence.
1084 * First make "N bytes", then insert it into "X in M files".
1086 g_snprintf (b_bytes, sizeof (b_bytes),
1087 ngettext ("%s byte", "%s bytes", panel->total),
1088 size_trunc_sep (panel->total, panels_options.kilobyte_si));
1089 if (!size_only)
1090 g_snprintf (buffer, sizeof (buffer),
1091 ngettext ("%s in %d file", "%s in %d files", panel->marked),
1092 b_bytes, panel->marked);
1094 /* don't forget spaces around buffer content */
1095 buf = str_trunc (buf, cols - 4);
1097 if (x < 0)
1098 /* center in panel */
1099 x = (w->cols - str_term_width1 (buf)) / 2 - 1;
1102 * y == panel_lines (panel) + 2 for mini_info_separator
1103 * y == w->lines - 1 for panel bottom frame
1105 widget_move (w, y, x);
1106 tty_setcolor (MARKED_COLOR);
1107 tty_printf (" %s ", buf);
1110 /* --------------------------------------------------------------------------------------------- */
1112 static void
1113 mini_info_separator (const WPanel * panel)
1115 if (panels_options.show_mini_info)
1117 const Widget *w = CONST_WIDGET (panel);
1118 int y;
1120 y = panel_lines (panel) + 2;
1122 tty_setcolor (NORMAL_COLOR);
1123 tty_draw_hline (w->y + y, w->x + 1, ACS_HLINE, w->cols - 2);
1124 /* Status displays total marked size.
1125 * Centered in panel, full format. */
1126 display_total_marked_size (panel, y, -1, FALSE);
1130 /* --------------------------------------------------------------------------------------------- */
1132 static void
1133 show_free_space (const WPanel * panel)
1135 /* Used to figure out how many free space we have */
1136 static struct my_statfs myfs_stats;
1137 /* Old current working directory for displaying free space */
1138 static char *old_cwd = NULL;
1140 /* Don't try to stat non-local fs */
1141 if (!vfs_file_is_local (panel->cwd_vpath) || !free_space)
1142 return;
1144 if (old_cwd == NULL || strcmp (old_cwd, vfs_path_as_str (panel->cwd_vpath)) != 0)
1146 char rpath[PATH_MAX];
1148 init_my_statfs ();
1149 g_free (old_cwd);
1150 old_cwd = g_strdup (vfs_path_as_str (panel->cwd_vpath));
1152 if (mc_realpath (old_cwd, rpath) == NULL)
1153 return;
1155 my_statfs (&myfs_stats, rpath);
1158 if (myfs_stats.avail != 0 || myfs_stats.total != 0)
1160 const Widget *w = CONST_WIDGET (panel);
1161 char buffer1[6], buffer2[6], tmp[BUF_SMALL];
1163 size_trunc_len (buffer1, sizeof (buffer1) - 1, myfs_stats.avail, 1,
1164 panels_options.kilobyte_si);
1165 size_trunc_len (buffer2, sizeof (buffer2) - 1, myfs_stats.total, 1,
1166 panels_options.kilobyte_si);
1167 g_snprintf (tmp, sizeof (tmp), " %s/%s (%d%%) ", buffer1, buffer2,
1168 myfs_stats.total == 0 ? 0 :
1169 (int) (100 * (long double) myfs_stats.avail / myfs_stats.total));
1170 widget_move (w, w->lines - 1, w->cols - 2 - (int) strlen (tmp));
1171 tty_setcolor (NORMAL_COLOR);
1172 tty_print_string (tmp);
1176 /* --------------------------------------------------------------------------------------------- */
1178 * Prepare path string for showing in panel's header.
1179 * Passwords will removed, also home dir will replaced by ~
1181 * @param panel WPanel object
1183 * @return newly allocated string.
1186 static char *
1187 panel_correct_path_to_show (const WPanel * panel)
1189 vfs_path_t *last_vpath;
1190 const vfs_path_element_t *path_element;
1191 char *return_path;
1192 int elements_count;
1194 elements_count = vfs_path_elements_count (panel->cwd_vpath);
1196 /* get last path element */
1197 path_element = vfs_path_element_clone (vfs_path_get_by_index (panel->cwd_vpath, -1));
1199 if (elements_count > 1 && (strcmp (path_element->class->name, "cpiofs") == 0 ||
1200 strcmp (path_element->class->name, "extfs") == 0 ||
1201 strcmp (path_element->class->name, "tarfs") == 0))
1203 const char *archive_name;
1204 const vfs_path_element_t *prev_path_element;
1206 /* get previous path element for catching archive name */
1207 prev_path_element = vfs_path_get_by_index (panel->cwd_vpath, -2);
1208 archive_name = strrchr (prev_path_element->path, PATH_SEP);
1209 if (archive_name != NULL)
1210 last_vpath = vfs_path_from_str_flags (archive_name + 1, VPF_NO_CANON);
1211 else
1213 last_vpath = vfs_path_from_str_flags (prev_path_element->path, VPF_NO_CANON);
1214 last_vpath->relative = TRUE;
1217 else
1219 last_vpath = vfs_path_new ();
1220 last_vpath->relative = TRUE;
1223 vfs_path_add_element (last_vpath, path_element);
1224 return_path =
1225 vfs_path_to_str_flags (last_vpath, 0,
1226 VPF_STRIP_HOME | VPF_STRIP_PASSWORD | VPF_HIDE_CHARSET);
1227 vfs_path_free (last_vpath);
1229 return return_path;
1232 /* --------------------------------------------------------------------------------------------- */
1234 * Get Current path element encoding
1236 * @param panel WPanel object
1238 * @return newly allocated string or NULL if path charset is same as system charset
1241 #ifdef HAVE_CHARSET
1242 static char *
1243 panel_get_encoding_info_str (const WPanel * panel)
1245 char *ret_str = NULL;
1246 const vfs_path_element_t *path_element;
1248 path_element = vfs_path_get_by_index (panel->cwd_vpath, -1);
1249 if (path_element->encoding != NULL)
1250 ret_str = g_strdup_printf ("[%s]", path_element->encoding);
1252 return ret_str;
1254 #endif
1256 /* --------------------------------------------------------------------------------------------- */
1258 static void
1259 show_dir (const WPanel * panel)
1261 const Widget *w = CONST_WIDGET (panel);
1263 gchar *tmp;
1265 set_colors (panel);
1266 tty_draw_box (w->y, w->x, w->lines, w->cols, FALSE);
1268 if (panels_options.show_mini_info)
1270 int y;
1272 y = panel_lines (panel) + 2;
1274 widget_move (w, y, 0);
1275 tty_print_alt_char (ACS_LTEE, FALSE);
1276 widget_move (w, y, w->cols - 1);
1277 tty_print_alt_char (ACS_RTEE, FALSE);
1280 widget_move (w, 0, 1);
1281 tty_print_string (panel_history_prev_item_sign);
1283 tmp = panels_options.show_dot_files ? panel_hiddenfiles_sign_show : panel_hiddenfiles_sign_hide;
1284 tmp = g_strdup_printf ("%s[%s]%s", tmp, panel_history_show_list_sign,
1285 panel_history_next_item_sign);
1287 widget_move (w, 0, w->cols - 6);
1288 tty_print_string (tmp);
1290 g_free (tmp);
1292 widget_move (w, 0, 3);
1294 if (panel->is_panelized)
1295 tty_printf (" %s ", _("Panelize"));
1296 #ifdef HAVE_CHARSET
1297 else
1299 tmp = panel_get_encoding_info_str (panel);
1300 if (tmp != NULL)
1302 tty_printf ("%s", tmp);
1303 widget_move (w, 0, 3 + strlen (tmp));
1304 g_free (tmp);
1307 #endif
1309 if (panel->active)
1310 tty_setcolor (REVERSE_COLOR);
1312 tmp = panel_correct_path_to_show (panel);
1313 tty_printf (" %s ", str_term_trim (tmp, MIN (MAX (w->cols - 12, 0), w->cols)));
1314 g_free (tmp);
1316 if (!panels_options.show_mini_info)
1318 if (panel->marked == 0)
1320 /* Show size of curret file in the bottom of panel */
1321 if (S_ISREG (panel->dir.list[panel->selected].st.st_mode))
1323 char buffer[BUF_SMALL];
1325 g_snprintf (buffer, sizeof (buffer), " %s ",
1326 size_trunc_sep (panel->dir.list[panel->selected].st.st_size,
1327 panels_options.kilobyte_si));
1328 tty_setcolor (NORMAL_COLOR);
1329 widget_move (w, w->lines - 1, 4);
1330 tty_print_string (buffer);
1333 else
1335 /* Show total size of marked files
1336 * In the bottom of panel, display size only. */
1337 display_total_marked_size (panel, w->lines - 1, 2, TRUE);
1341 show_free_space (panel);
1343 if (panel->active)
1344 tty_set_normal_attrs ();
1347 /* --------------------------------------------------------------------------------------------- */
1349 static void
1350 adjust_top_file (WPanel * panel)
1352 int items;
1354 items = panel_items (panel);
1356 if (panel->dir.len <= items)
1358 /* If all files fit, show them all. */
1359 panel->top_file = 0;
1361 else
1363 int i;
1365 /* top_file has to be in the range [selected-items+1, selected] so that
1366 the selected file is visible.
1367 top_file should be in the range [0, count-items] so that there's
1368 no empty space wasted.
1369 Within these ranges, adjust it by as little as possible. */
1371 if (panel->top_file < 0)
1372 panel->top_file = 0;
1374 i = panel->selected - items + 1;
1375 if (panel->top_file < i)
1376 panel->top_file = i;
1378 i = panel->dir.len - items;
1379 if (panel->top_file > i)
1380 panel->top_file = i;
1382 if (panel->top_file > panel->selected)
1383 panel->top_file = panel->selected;
1387 /* --------------------------------------------------------------------------------------------- */
1388 /** add "#enc:encodning" to end of path */
1389 /* if path end width a previous #enc:, only encoding is changed no additional
1390 * #enc: is appended
1391 * retun new string
1394 static char *
1395 panel_save_name (WPanel * panel)
1397 /* If the program is shuting down */
1398 if ((mc_global.midnight_shutdown && auto_save_setup) || saving_setup)
1399 return g_strdup (panel->panel_name);
1401 return g_strconcat ("Temporal:", panel->panel_name, (char *) NULL);
1404 /* --------------------------------------------------------------------------------------------- */
1406 static void
1407 directory_history_add (WPanel * panel, const vfs_path_t * vpath)
1409 char *tmp;
1411 tmp = vfs_path_to_str_flags (vpath, 0, VPF_STRIP_PASSWORD);
1412 panel->dir_history = list_append_unique (panel->dir_history, tmp);
1413 panel->dir_history_current = panel->dir_history;
1416 /* --------------------------------------------------------------------------------------------- */
1418 /* "history_load" event handler */
1419 static gboolean
1420 panel_load_history (const gchar * event_group_name, const gchar * event_name,
1421 gpointer init_data, gpointer data)
1423 WPanel *p = PANEL (init_data);
1424 ev_history_load_save_t *ev = (ev_history_load_save_t *) data;
1426 (void) event_group_name;
1427 (void) event_name;
1429 if (ev->receiver == NULL || ev->receiver == WIDGET (p))
1431 if (ev->cfg != NULL)
1432 p->dir_history = history_load (ev->cfg, p->hist_name);
1433 else
1434 p->dir_history = history_get (p->hist_name);
1436 directory_history_add (p, p->cwd_vpath);
1439 return TRUE;
1442 /* --------------------------------------------------------------------------------------------- */
1444 /* "history_save" event handler */
1445 static gboolean
1446 panel_save_history (const gchar * event_group_name, const gchar * event_name,
1447 gpointer init_data, gpointer data)
1449 WPanel *p = PANEL (init_data);
1451 (void) event_group_name;
1452 (void) event_name;
1454 if (p->dir_history != NULL)
1456 ev_history_load_save_t *ev = (ev_history_load_save_t *) data;
1458 history_save (ev->cfg, p->hist_name, p->dir_history);
1461 return TRUE;
1464 /* --------------------------------------------------------------------------------------------- */
1466 static void
1467 panel_destroy (WPanel * p)
1469 size_t i;
1471 if (panels_options.auto_save_setup)
1473 char *name;
1475 name = panel_save_name (p);
1476 panel_save_setup (p, name);
1477 g_free (name);
1480 panel_clean_dir (p);
1482 /* clean history */
1483 if (p->dir_history != NULL)
1485 /* directory history is already saved before this moment */
1486 p->dir_history = g_list_first (p->dir_history);
1487 g_list_free_full (p->dir_history, g_free);
1489 g_free (p->hist_name);
1491 delete_format (p->format);
1492 delete_format (p->status_format);
1494 g_free (p->user_format);
1495 for (i = 0; i < LIST_TYPES; i++)
1496 g_free (p->user_status_format[i]);
1498 g_free (p->dir.list);
1499 g_free (p->panel_name);
1501 vfs_path_free (p->lwd_vpath);
1502 vfs_path_free (p->cwd_vpath);
1505 /* --------------------------------------------------------------------------------------------- */
1507 static inline void
1508 panel_format_modified (WPanel * panel)
1510 panel->format_modified = 1;
1513 /* --------------------------------------------------------------------------------------------- */
1515 static void
1516 panel_paint_sort_info (const WPanel * panel)
1518 if (*panel->sort_field->hotkey != '\0')
1520 const char *sort_sign =
1521 panel->sort_info.reverse ? panel_sort_up_sign : panel_sort_down_sign;
1522 char *str;
1524 str = g_strdup_printf ("%s%s", sort_sign, Q_ (panel->sort_field->hotkey));
1525 widget_move (panel, 1, 1);
1526 tty_print_string (str);
1527 g_free (str);
1531 /* --------------------------------------------------------------------------------------------- */
1533 static const char *
1534 panel_get_title_without_hotkey (const char *title)
1536 static char translated_title[BUF_TINY];
1538 if (title == NULL || title[0] == '\0')
1539 translated_title[0] = '\0';
1540 else
1542 char *hkey;
1544 g_snprintf (translated_title, sizeof (translated_title), "%s", _(title));
1546 hkey = strchr (translated_title, '&');
1547 if (hkey != NULL && hkey[1] != '\0')
1548 memmove (hkey, hkey + 1, strlen (hkey));
1551 return translated_title;
1554 /* --------------------------------------------------------------------------------------------- */
1556 static void
1557 panel_print_header (const WPanel * panel)
1559 const Widget *w = CONST_WIDGET (panel);
1561 int y, x;
1562 int i;
1563 GString *format_txt;
1565 widget_move (w, 1, 1);
1566 tty_getyx (&y, &x);
1567 tty_setcolor (NORMAL_COLOR);
1568 tty_draw_hline (y, x, ' ', w->cols - 2);
1570 format_txt = g_string_new ("");
1572 for (i = 0; i < panel->list_cols; i++)
1574 format_e *format;
1576 for (format = panel->format; format != NULL; format = format->next)
1578 if (format->string_fn != NULL)
1580 g_string_set_size (format_txt, 0);
1582 if (panel->list_type == list_long
1583 && strcmp (format->id, panel->sort_field->id) == 0)
1584 g_string_append (format_txt,
1585 panel->sort_info.reverse
1586 ? panel_sort_up_sign : panel_sort_down_sign);
1588 g_string_append (format_txt, format->title);
1590 if (panel->filter != NULL && *panel->filter != '\0'
1591 && strcmp (format->id, "name") == 0)
1593 g_string_append (format_txt, " [");
1594 g_string_append (format_txt, panel->filter);
1595 g_string_append (format_txt, "]");
1598 tty_setcolor (HEADER_COLOR);
1599 tty_print_string (str_fit_to_term (format_txt->str, format->field_len,
1600 J_CENTER_LEFT));
1602 else
1604 tty_setcolor (NORMAL_COLOR);
1605 tty_print_one_vline (TRUE);
1609 if (i < panel->list_cols - 1)
1611 tty_setcolor (NORMAL_COLOR);
1612 tty_print_one_vline (TRUE);
1616 g_string_free (format_txt, TRUE);
1618 if (panel->list_type != list_long)
1619 panel_paint_sort_info (panel);
1622 /* --------------------------------------------------------------------------------------------- */
1624 static const char *
1625 parse_panel_size (WPanel * panel, const char *format, gboolean isstatus)
1627 panel_display_t frame = frame_half;
1628 format = skip_separators (format);
1630 if (strncmp (format, "full", 4) == 0)
1632 frame = frame_full;
1633 format += 4;
1635 else if (strncmp (format, "half", 4) == 0)
1637 frame = frame_half;
1638 format += 4;
1641 if (!isstatus)
1643 panel->frame_size = frame;
1644 panel->list_cols = 1;
1647 /* Now, the optional column specifier */
1648 format = skip_separators (format);
1650 if (g_ascii_isdigit (*format))
1652 if (!isstatus && panel->list_type == list_brief)
1654 panel->brief_cols = g_ascii_digit_value (*format);
1655 if (panel->brief_cols < 1)
1656 panel->brief_cols = 1;
1658 panel->list_cols = panel->brief_cols;
1661 format++;
1664 if (!isstatus)
1665 panel_update_cols (WIDGET (panel), panel->frame_size);
1667 return skip_separators (format);
1670 /* Format is:
1672 all := panel_format? format
1673 panel_format := [full|half] [1-9]
1674 format := one_format_e
1675 | format , one_format_e
1677 one_format_e := just format.id [opt_size]
1678 just := [<=>]
1679 opt_size := : size [opt_expand]
1680 size := [0-9]+
1681 opt_expand := +
1685 /* --------------------------------------------------------------------------------------------- */
1687 static format_e *
1688 parse_display_format (WPanel * panel, const char *format, char **error, gboolean isstatus,
1689 int *res_total_cols)
1691 format_e *darr, *old = NULL, *home = NULL; /* The formats we return */
1692 int total_cols = 0; /* Used columns by the format */
1693 size_t i;
1695 static size_t i18n_timelength = 0; /* flag: check ?Time length at startup */
1697 *error = NULL;
1699 if (i18n_timelength == 0)
1701 i18n_timelength = i18n_checktimelength (); /* Musn't be 0 */
1703 for (i = 0; panel_fields[i].id != NULL; i++)
1704 if (strcmp ("time", panel_fields[i].id + 1) == 0)
1705 panel_fields[i].min_size = i18n_timelength;
1709 * This makes sure that the panel and mini status full/half mode
1710 * setting is equal
1712 format = parse_panel_size (panel, format, isstatus);
1714 while (*format != '\0')
1715 { /* format can be an empty string */
1716 align_crt_t justify; /* Which mode. */
1717 gboolean set_justify = TRUE; /* flag: set justification mode? */
1718 gboolean found = FALSE;
1720 darr = g_new0 (format_e, 1);
1722 /* I'm so ugly, don't look at me :-) */
1723 if (home == NULL)
1724 home = old = darr;
1726 old->next = darr;
1727 darr->next = NULL;
1728 old = darr;
1730 format = skip_separators (format);
1732 switch (*format)
1734 case '<':
1735 justify = J_LEFT;
1736 format = skip_separators (format + 1);
1737 break;
1738 case '=':
1739 justify = J_CENTER;
1740 format = skip_separators (format + 1);
1741 break;
1742 case '>':
1743 justify = J_RIGHT;
1744 format = skip_separators (format + 1);
1745 break;
1746 default:
1747 justify = J_LEFT;
1748 set_justify = FALSE;
1749 break;
1752 for (i = 0; panel_fields[i].id != NULL; i++)
1754 size_t klen;
1756 klen = strlen (panel_fields[i].id);
1758 if (strncmp (format, panel_fields[i].id, klen) != 0)
1759 continue;
1761 format += klen;
1763 darr->requested_field_len = panel_fields[i].min_size;
1764 darr->string_fn = panel_fields[i].string_fn;
1765 darr->title = g_strdup (panel_get_title_without_hotkey (panel_fields[i].title_hotkey));
1767 darr->id = panel_fields[i].id;
1768 darr->expand = panel_fields[i].expands;
1769 darr->just_mode = panel_fields[i].default_just;
1771 if (set_justify)
1773 if (IS_FIT (darr->just_mode))
1774 darr->just_mode = MAKE_FIT (justify);
1775 else
1776 darr->just_mode = justify;
1778 found = TRUE;
1780 format = skip_separators (format);
1782 /* If we have a size specifier */
1783 if (*format == ':')
1785 int req_length;
1787 /* If the size was specified, we don't want
1788 * auto-expansion by default
1790 darr->expand = FALSE;
1791 format++;
1792 req_length = atoi (format);
1793 darr->requested_field_len = req_length;
1795 format = skip_numbers (format);
1797 /* Now, if they insist on expansion */
1798 if (*format == '+')
1800 darr->expand = TRUE;
1801 format++;
1806 break;
1809 if (!found)
1811 size_t pos;
1812 char *tmp_format;
1814 pos = strlen (format);
1815 if (pos > 8)
1816 pos = 8;
1818 tmp_format = g_strndup (format, pos);
1819 delete_format (home);
1820 *error =
1821 g_strconcat (_("Unknown tag on display format:"), " ", tmp_format, (char *) NULL);
1822 g_free (tmp_format);
1824 return NULL;
1827 total_cols += darr->requested_field_len;
1830 *res_total_cols = total_cols;
1831 return home;
1834 /* --------------------------------------------------------------------------------------------- */
1836 static format_e *
1837 use_display_format (WPanel * panel, const char *format, char **error, gboolean isstatus)
1839 #define MAX_EXPAND 4
1840 int expand_top = 0; /* Max used element in expand */
1841 int usable_columns; /* Usable columns in the panel */
1842 int total_cols = 0;
1843 format_e *darr, *home;
1845 if (format == NULL)
1846 format = DEFAULT_USER_FORMAT;
1848 home = parse_display_format (panel, format, error, isstatus, &total_cols);
1850 if (*error != NULL)
1851 return NULL;
1853 panel->dirty = 1;
1855 usable_columns = WIDGET (panel)->cols - 2;
1856 /* Status needn't to be split */
1857 if (!isstatus)
1859 usable_columns /= panel->list_cols;
1860 if (panel->list_cols > 1)
1861 usable_columns--;
1864 /* Look for the expandable fields and set field_len based on the requested field len */
1865 for (darr = home; darr != NULL && expand_top < MAX_EXPAND; darr = darr->next)
1867 darr->field_len = darr->requested_field_len;
1868 if (darr->expand)
1869 expand_top++;
1872 /* If we used more columns than the available columns, adjust that */
1873 if (total_cols > usable_columns)
1875 int dif;
1876 int pdif = 0;
1878 dif = total_cols - usable_columns;
1880 while (dif != 0 && pdif != dif)
1882 pdif = dif;
1884 for (darr = home; darr; darr = darr->next)
1885 if (dif != 0 && darr->field_len != 1)
1887 darr->field_len--;
1888 dif--;
1892 total_cols = usable_columns; /* give up, the rest should be truncated */
1895 /* Expand the available space */
1896 if (usable_columns > total_cols && expand_top != 0)
1898 int i;
1899 int spaces = (usable_columns - total_cols) / expand_top;
1901 for (i = 0, darr = home; darr && (i < expand_top); darr = darr->next)
1902 if (darr->expand)
1904 darr->field_len += spaces;
1905 if (i == 0)
1906 darr->field_len += (usable_columns - total_cols) % expand_top;
1907 i++;
1910 return home;
1913 /* --------------------------------------------------------------------------------------------- */
1914 /** Given the panel->view_type returns the format string to be parsed */
1916 static const char *
1917 panel_format (WPanel * panel)
1920 switch (panel->list_type)
1922 case list_long:
1923 return "full perm space nlink space owner space group space size space mtime space name";
1925 case list_brief:
1927 static char format[BUF_TINY];
1928 int brief_cols = panel->brief_cols;
1930 if (brief_cols < 1)
1931 brief_cols = 2;
1933 if (brief_cols > 9)
1934 brief_cols = 9;
1936 g_snprintf (format, sizeof (format), "half %d type name", brief_cols);
1937 return format;
1940 case list_user:
1941 return panel->user_format;
1943 default:
1944 case list_full:
1945 return "half type name | size | mtime";
1949 /* --------------------------------------------------------------------------------------------- */
1951 static const char *
1952 mini_status_format (WPanel * panel)
1954 if (panel->user_mini_status)
1955 return panel->user_status_format[panel->list_type];
1957 switch (panel->list_type)
1959 case list_long:
1960 return "full perm space nlink space owner space group space size space mtime space name";
1962 case list_brief:
1963 return "half type name space bsize space perm space";
1965 case list_full:
1966 return "half type name";
1968 default:
1969 case list_user:
1970 return panel->user_format;
1974 /* */
1975 /* Panel operation commands */
1976 /* */
1978 /* --------------------------------------------------------------------------------------------- */
1979 /** Used to emulate Lynx's entering leaving a directory with the arrow keys */
1981 static cb_ret_t
1982 maybe_cd (gboolean move_up_dir)
1984 if (panels_options.navigate_with_arrows && (cmdline->buffer[0] == '\0'))
1986 if (move_up_dir)
1988 vfs_path_t *up_dir;
1990 up_dir = vfs_path_from_str ("..");
1991 do_cd (up_dir, cd_exact);
1992 vfs_path_free (up_dir);
1993 return MSG_HANDLED;
1996 if (S_ISDIR (selection (current_panel)->st.st_mode)
1997 || link_isdir (selection (current_panel)))
1999 vfs_path_t *vpath;
2001 vpath = vfs_path_from_str (selection (current_panel)->fname);
2002 do_cd (vpath, cd_exact);
2003 vfs_path_free (vpath);
2004 return MSG_HANDLED;
2008 return MSG_NOT_HANDLED;
2011 /* --------------------------------------------------------------------------------------------- */
2013 /* if command line is empty then do 'cd ..' */
2014 static cb_ret_t
2015 force_maybe_cd (void)
2017 if (cmdline->buffer[0] == '\0')
2019 vfs_path_t *up_dir = vfs_path_from_str ("..");
2020 do_cd (up_dir, cd_exact);
2021 vfs_path_free (up_dir);
2022 return MSG_HANDLED;
2025 return MSG_NOT_HANDLED;
2028 /* --------------------------------------------------------------------------------------------- */
2030 static inline void
2031 unselect_item (WPanel * panel)
2033 repaint_file (panel, panel->selected, TRUE, 2 * selection (panel)->f.marked, FALSE);
2036 /* --------------------------------------------------------------------------------------------- */
2037 /** Select/unselect all the files like a current file by extension */
2039 static void
2040 panel_select_ext_cmd (void)
2042 gboolean do_select = !selection (current_panel)->f.marked;
2043 char *filename = selection (current_panel)->fname;
2044 char *reg_exp, *cur_file_ext;
2045 mc_search_t *search;
2046 int i;
2048 if (filename == NULL)
2049 return;
2051 cur_file_ext = strutils_regex_escape (extension (filename));
2053 if (cur_file_ext[0] != '\0')
2054 reg_exp = g_strconcat ("^.*\\.", cur_file_ext, "$", (char *) NULL);
2055 else
2056 reg_exp = g_strdup ("^[^\\.]+$");
2058 g_free (cur_file_ext);
2060 search = mc_search_new (reg_exp, NULL);
2061 search->search_type = MC_SEARCH_T_REGEX;
2062 search->is_case_sensitive = FALSE;
2064 for (i = 0; i < current_panel->dir.len; i++)
2066 file_entry_t *file_entry = &current_panel->dir.list[i];
2068 if (DIR_IS_DOTDOT (file_entry->fname) || S_ISDIR (file_entry->st.st_mode))
2069 continue;
2071 if (!mc_search_run (search, file_entry->fname, 0, file_entry->fnamelen, NULL))
2072 continue;
2074 do_file_mark (current_panel, i, do_select);
2077 mc_search_free (search);
2078 g_free (reg_exp);
2082 /* --------------------------------------------------------------------------------------------- */
2084 static void
2085 move_down (WPanel * panel)
2087 int items;
2089 if (panel->selected + 1 == panel->dir.len)
2090 return;
2092 unselect_item (panel);
2093 panel->selected++;
2095 items = panel_items (panel);
2097 if (panels_options.scroll_pages && panel->selected - panel->top_file == items)
2099 /* Scroll window half screen */
2100 panel->top_file += items / 2;
2101 if (panel->top_file > panel->dir.len - items)
2102 panel->top_file = panel->dir.len - items;
2103 paint_dir (panel);
2105 else if (panels_options.scroll_center && (panel->selected - panel->top_file) > (items / 2))
2107 /* Scroll window when cursor is halfway down */
2108 panel->top_file++;
2109 if (panel->top_file > panel->dir.len - items)
2110 panel->top_file = panel->dir.len - items;
2112 select_item (panel);
2115 /* --------------------------------------------------------------------------------------------- */
2117 static void
2118 move_up (WPanel * panel)
2120 if (panel->selected == 0)
2121 return;
2123 unselect_item (panel);
2124 panel->selected--;
2126 if (panels_options.scroll_pages && panel->selected < panel->top_file)
2128 /* Scroll window half screen */
2129 panel->top_file -= panel_items (panel) / 2;
2130 if (panel->top_file < 0)
2131 panel->top_file = 0;
2132 paint_dir (panel);
2134 else if (panels_options.scroll_center
2135 && (panel->selected - panel->top_file) < (panel_items (panel) / 2))
2137 /* Scroll window when cursor is halfway up */
2138 panel->top_file--;
2139 if (panel->top_file < 0)
2140 panel->top_file = 0;
2142 select_item (panel);
2145 /* --------------------------------------------------------------------------------------------- */
2146 /** Changes the selection by lines (may be negative) */
2148 static void
2149 move_selection (WPanel * panel, int lines)
2151 int new_pos;
2152 gboolean adjust = FALSE;
2154 new_pos = panel->selected + lines;
2155 if (new_pos >= panel->dir.len)
2156 new_pos = panel->dir.len - 1;
2158 if (new_pos < 0)
2159 new_pos = 0;
2161 unselect_item (panel);
2162 panel->selected = new_pos;
2164 if (panel->selected - panel->top_file >= panel_items (panel))
2166 panel->top_file += lines;
2167 adjust = TRUE;
2170 if (panel->selected - panel->top_file < 0)
2172 panel->top_file += lines;
2173 adjust = TRUE;
2176 if (adjust)
2178 if (panel->top_file > panel->selected)
2179 panel->top_file = panel->selected;
2180 if (panel->top_file < 0)
2181 panel->top_file = 0;
2182 paint_dir (panel);
2184 select_item (panel);
2187 /* --------------------------------------------------------------------------------------------- */
2189 static cb_ret_t
2190 move_left (WPanel * panel)
2192 if (panel->list_cols > 1)
2194 move_selection (panel, -panel_lines (panel));
2195 return MSG_HANDLED;
2198 return maybe_cd (TRUE); /* cd .. */
2201 /* --------------------------------------------------------------------------------------------- */
2203 static cb_ret_t
2204 move_right (WPanel * panel)
2206 if (panel->list_cols > 1)
2208 move_selection (panel, panel_lines (panel));
2209 return MSG_HANDLED;
2212 return maybe_cd (FALSE); /* cd (selection) */
2215 /* --------------------------------------------------------------------------------------------- */
2217 static void
2218 prev_page (WPanel * panel)
2220 int items;
2222 if (!panel->selected && !panel->top_file)
2223 return;
2225 unselect_item (panel);
2226 items = panel_items (panel);
2227 if (panel->top_file < items)
2228 items = panel->top_file;
2229 if (items == 0)
2230 panel->selected = 0;
2231 else
2232 panel->selected -= items;
2233 panel->top_file -= items;
2235 select_item (panel);
2236 paint_dir (panel);
2239 /* --------------------------------------------------------------------------------------------- */
2241 static void
2242 goto_parent_dir (WPanel * panel)
2244 if (!panel->is_panelized)
2246 vfs_path_t *up_dir;
2248 up_dir = vfs_path_from_str ("..");
2249 do_cd (up_dir, cd_exact);
2250 vfs_path_free (up_dir);
2252 else
2254 char *fname = panel->dir.list[panel->selected].fname;
2255 const char *bname;
2256 vfs_path_t *dname_vpath;
2258 if (g_path_is_absolute (fname))
2259 fname = g_strdup (fname);
2260 else
2261 fname =
2262 mc_build_filename (vfs_path_as_str (panelized_panel.root_vpath), fname,
2263 (char *) NULL);
2265 bname = x_basename (fname);
2267 if (bname == fname)
2268 dname_vpath = vfs_path_from_str (".");
2269 else
2271 char *dname;
2273 dname = g_strndup (fname, bname - fname);
2274 dname_vpath = vfs_path_from_str (dname);
2275 g_free (dname);
2278 do_cd (dname_vpath, cd_exact);
2279 try_to_select (panel, bname);
2281 vfs_path_free (dname_vpath);
2282 g_free (fname);
2286 /* --------------------------------------------------------------------------------------------- */
2288 static void
2289 next_page (WPanel * panel)
2291 int items;
2293 if (panel->selected == panel->dir.len - 1)
2294 return;
2296 unselect_item (panel);
2297 items = panel_items (panel);
2298 if (panel->top_file > panel->dir.len - 2 * items)
2299 items = panel->dir.len - items - panel->top_file;
2300 if (panel->top_file + items < 0)
2301 items = -panel->top_file;
2302 if (items == 0)
2303 panel->selected = panel->dir.len - 1;
2304 else
2305 panel->selected += items;
2306 panel->top_file += items;
2308 select_item (panel);
2309 paint_dir (panel);
2312 /* --------------------------------------------------------------------------------------------- */
2314 static void
2315 goto_child_dir (WPanel * panel)
2317 if ((S_ISDIR (selection (panel)->st.st_mode) || link_isdir (selection (panel))))
2319 vfs_path_t *vpath;
2321 vpath = vfs_path_from_str (selection (panel)->fname);
2322 do_cd (vpath, cd_exact);
2323 vfs_path_free (vpath);
2327 /* --------------------------------------------------------------------------------------------- */
2329 static void
2330 goto_top_file (WPanel * panel)
2332 unselect_item (panel);
2333 panel->selected = panel->top_file;
2334 select_item (panel);
2337 /* --------------------------------------------------------------------------------------------- */
2339 static void
2340 goto_middle_file (WPanel * panel)
2342 unselect_item (panel);
2343 panel->selected = panel->top_file + panel_items (panel) / 2;
2344 select_item (panel);
2347 /* --------------------------------------------------------------------------------------------- */
2349 static void
2350 goto_bottom_file (WPanel * panel)
2352 unselect_item (panel);
2353 panel->selected = panel->top_file + panel_items (panel) - 1;
2354 select_item (panel);
2357 /* --------------------------------------------------------------------------------------------- */
2359 static void
2360 move_home (WPanel * panel)
2362 if (panel->selected == 0)
2363 return;
2365 unselect_item (panel);
2367 if (panels_options.torben_fj_mode)
2369 int middle_pos = panel->top_file + panel_items (panel) / 2;
2371 if (panel->selected > middle_pos)
2373 goto_middle_file (panel);
2374 return;
2376 if (panel->selected != panel->top_file)
2378 goto_top_file (panel);
2379 return;
2383 panel->top_file = 0;
2384 panel->selected = 0;
2386 paint_dir (panel);
2387 select_item (panel);
2390 /* --------------------------------------------------------------------------------------------- */
2392 static void
2393 move_end (WPanel * panel)
2395 if (panel->selected == panel->dir.len - 1)
2396 return;
2398 unselect_item (panel);
2400 if (panels_options.torben_fj_mode)
2402 int items, middle_pos;
2404 items = panel_items (panel);
2405 middle_pos = panel->top_file + items / 2;
2407 if (panel->selected < middle_pos)
2409 goto_middle_file (panel);
2410 return;
2412 if (panel->selected != panel->top_file + items - 1)
2414 goto_bottom_file (panel);
2415 return;
2419 panel->selected = panel->dir.len - 1;
2420 paint_dir (panel);
2421 select_item (panel);
2424 /* --------------------------------------------------------------------------------------------- */
2426 static void
2427 do_mark_file (WPanel * panel, mark_act_t do_move)
2429 do_file_mark (panel, panel->selected, selection (panel)->f.marked ? 0 : 1);
2430 if ((panels_options.mark_moves_down && do_move == MARK_DOWN) || do_move == MARK_FORCE_DOWN)
2431 move_down (panel);
2432 else if (do_move == MARK_FORCE_UP)
2433 move_up (panel);
2436 /* --------------------------------------------------------------------------------------------- */
2438 static inline void
2439 mark_file (WPanel * panel)
2441 do_mark_file (panel, MARK_DOWN);
2444 /* --------------------------------------------------------------------------------------------- */
2446 static inline void
2447 mark_file_up (WPanel * panel)
2449 do_mark_file (panel, MARK_FORCE_UP);
2452 /* --------------------------------------------------------------------------------------------- */
2454 static inline void
2455 mark_file_down (WPanel * panel)
2457 do_mark_file (panel, MARK_FORCE_DOWN);
2460 /* --------------------------------------------------------------------------------------------- */
2462 static void
2463 mark_file_right (WPanel * panel)
2465 int lines;
2467 if (state_mark < 0)
2468 state_mark = selection (panel)->f.marked ? 0 : 1;
2470 lines = panel_lines (panel);
2471 lines = MIN (lines, panel->dir.len - panel->selected - 1);
2472 for (; lines != 0; lines--)
2474 do_file_mark (panel, panel->selected, state_mark);
2475 move_down (panel);
2477 do_file_mark (panel, panel->selected, state_mark);
2480 /* --------------------------------------------------------------------------------------------- */
2482 static void
2483 mark_file_left (WPanel * panel)
2485 int lines;
2487 if (state_mark < 0)
2488 state_mark = selection (panel)->f.marked ? 0 : 1;
2490 lines = panel_lines (panel);
2491 lines = MIN (lines, panel->selected + 1);
2492 for (; lines != 0; lines--)
2494 do_file_mark (panel, panel->selected, state_mark);
2495 move_up (panel);
2497 do_file_mark (panel, panel->selected, state_mark);
2500 /* --------------------------------------------------------------------------------------------- */
2502 static void
2503 panel_select_unselect_files (WPanel * panel, const char *title, const char *history_name,
2504 gboolean do_select)
2506 int files_only = (panels_options.select_flags & SELECT_FILES_ONLY) != 0;
2507 int case_sens = (panels_options.select_flags & SELECT_MATCH_CASE) != 0;
2508 int shell_patterns = (panels_options.select_flags & SELECT_SHELL_PATTERNS) != 0;
2510 char *reg_exp;
2511 mc_search_t *search;
2512 int i;
2514 quick_widget_t quick_widgets[] = {
2515 /* *INDENT-OFF* */
2516 QUICK_INPUT (INPUT_LAST_TEXT, history_name, &reg_exp, NULL,
2517 FALSE, FALSE, INPUT_COMPLETE_FILENAMES),
2518 QUICK_START_COLUMNS,
2519 QUICK_CHECKBOX (N_("&Files only"), &files_only, NULL),
2520 QUICK_CHECKBOX (N_("&Using shell patterns"), &shell_patterns, NULL),
2521 QUICK_NEXT_COLUMN,
2522 QUICK_CHECKBOX (N_("&Case sensitive"), &case_sens, NULL),
2523 QUICK_STOP_COLUMNS,
2524 QUICK_END
2525 /* *INDENT-ON* */
2528 quick_dialog_t qdlg = {
2529 -1, -1, 50,
2530 title, "[Select/Unselect Files]",
2531 quick_widgets, NULL, NULL
2534 if (quick_dialog (&qdlg) == B_CANCEL)
2535 return;
2537 if (reg_exp == NULL || *reg_exp == '\0')
2539 g_free (reg_exp);
2540 return;
2543 search = mc_search_new (reg_exp, NULL);
2544 search->search_type = (shell_patterns != 0) ? MC_SEARCH_T_GLOB : MC_SEARCH_T_REGEX;
2545 search->is_entire_line = TRUE;
2546 search->is_case_sensitive = case_sens != 0;
2548 for (i = 0; i < panel->dir.len; i++)
2550 if (DIR_IS_DOTDOT (panel->dir.list[i].fname))
2551 continue;
2552 if (S_ISDIR (panel->dir.list[i].st.st_mode) && files_only != 0)
2553 continue;
2555 if (mc_search_run (search, panel->dir.list[i].fname, 0, panel->dir.list[i].fnamelen, NULL))
2556 do_file_mark (panel, i, do_select);
2559 mc_search_free (search);
2560 g_free (reg_exp);
2562 /* result flags */
2563 panels_options.select_flags = 0;
2564 if (case_sens != 0)
2565 panels_options.select_flags |= SELECT_MATCH_CASE;
2566 if (files_only != 0)
2567 panels_options.select_flags |= SELECT_FILES_ONLY;
2568 if (shell_patterns != 0)
2569 panels_options.select_flags |= SELECT_SHELL_PATTERNS;
2572 /* --------------------------------------------------------------------------------------------- */
2574 static void
2575 panel_select_files (WPanel * panel)
2577 panel_select_unselect_files (panel, _("Select"), ":select_cmd: Select ", TRUE);
2580 /* --------------------------------------------------------------------------------------------- */
2582 static void
2583 panel_unselect_files (WPanel * panel)
2585 panel_select_unselect_files (panel, _("Unselect"), ":unselect_cmd: Unselect ", FALSE);
2588 /* --------------------------------------------------------------------------------------------- */
2590 static void
2591 panel_select_invert_files (WPanel * panel)
2593 int i;
2595 for (i = 0; i < panel->dir.len; i++)
2597 file_entry_t *file = &panel->dir.list[i];
2599 if (!panels_options.reverse_files_only || !S_ISDIR (file->st.st_mode))
2600 do_file_mark (panel, i, !file->f.marked);
2604 /* --------------------------------------------------------------------------------------------- */
2605 /** Incremental search of a file name in the panel.
2606 * @param panel instance of WPanel structure
2607 * @param c_code key code
2610 static void
2611 do_search (WPanel * panel, int c_code)
2613 size_t l;
2614 int i, sel;
2615 gboolean wrapped = FALSE;
2616 char *act;
2617 mc_search_t *search;
2618 char *reg_exp, *esc_str;
2619 gboolean is_found = FALSE;
2621 l = strlen (panel->search_buffer);
2622 if (c_code == KEY_BACKSPACE)
2624 if (l != 0)
2626 act = panel->search_buffer + l;
2627 str_prev_noncomb_char (&act, panel->search_buffer);
2628 act[0] = '\0';
2630 panel->search_chpoint = 0;
2632 else
2634 if (c_code != 0 && (gsize) panel->search_chpoint < sizeof (panel->search_char))
2636 panel->search_char[panel->search_chpoint] = c_code;
2637 panel->search_chpoint++;
2640 if (panel->search_chpoint > 0)
2642 switch (str_is_valid_char (panel->search_char, panel->search_chpoint))
2644 case -2:
2645 return;
2646 case -1:
2647 panel->search_chpoint = 0;
2648 return;
2649 default:
2650 if (l + panel->search_chpoint < sizeof (panel->search_buffer))
2652 memcpy (panel->search_buffer + l, panel->search_char, panel->search_chpoint);
2653 l += panel->search_chpoint;
2654 *(panel->search_buffer + l) = '\0';
2655 panel->search_chpoint = 0;
2661 reg_exp = g_strdup_printf ("%s*", panel->search_buffer);
2662 esc_str = strutils_escape (reg_exp, -1, ",|\\{}[]", TRUE);
2663 search = mc_search_new (esc_str, NULL);
2664 search->search_type = MC_SEARCH_T_GLOB;
2665 search->is_entire_line = TRUE;
2667 switch (panels_options.qsearch_mode)
2669 case QSEARCH_CASE_SENSITIVE:
2670 search->is_case_sensitive = TRUE;
2671 break;
2672 case QSEARCH_CASE_INSENSITIVE:
2673 search->is_case_sensitive = FALSE;
2674 break;
2675 default:
2676 search->is_case_sensitive = panel->sort_info.case_sensitive;
2677 break;
2680 sel = panel->selected;
2682 for (i = panel->selected; !wrapped || i != panel->selected; i++)
2684 if (i >= panel->dir.len)
2686 i = 0;
2687 if (wrapped)
2688 break;
2689 wrapped = TRUE;
2691 if (mc_search_run (search, panel->dir.list[i].fname, 0, panel->dir.list[i].fnamelen, NULL))
2693 sel = i;
2694 is_found = TRUE;
2695 break;
2698 if (is_found)
2700 unselect_item (panel);
2701 panel->selected = sel;
2702 select_item (panel);
2703 widget_redraw (WIDGET (panel));
2705 else if (c_code != KEY_BACKSPACE)
2707 act = panel->search_buffer + l;
2708 str_prev_noncomb_char (&act, panel->search_buffer);
2709 act[0] = '\0';
2711 mc_search_free (search);
2712 g_free (reg_exp);
2713 g_free (esc_str);
2716 /* --------------------------------------------------------------------------------------------- */
2717 /** Start new search.
2718 * @param panel instance of WPanel structure
2721 static void
2722 start_search (WPanel * panel)
2724 if (panel->searching)
2726 if (panel->selected + 1 == panel->dir.len)
2727 panel->selected = 0;
2728 else
2729 move_down (panel);
2731 /* in case if there was no search string we need to recall
2732 previous string, with which we ended previous searching */
2733 if (panel->search_buffer[0] == '\0')
2734 g_strlcpy (panel->search_buffer, panel->prev_search_buffer,
2735 sizeof (panel->search_buffer));
2737 do_search (panel, 0);
2739 else
2741 panel->searching = TRUE;
2742 panel->search_buffer[0] = '\0';
2743 panel->search_char[0] = '\0';
2744 panel->search_chpoint = 0;
2745 display_mini_info (panel);
2746 mc_refresh ();
2750 /* --------------------------------------------------------------------------------------------- */
2752 static void
2753 stop_search (WPanel * panel)
2755 panel->searching = FALSE;
2757 /* if user had overrdied search string, we need to store it
2758 to the previous_search_buffer */
2759 if (panel->search_buffer[0] != '\0')
2760 g_strlcpy (panel->prev_search_buffer, panel->search_buffer,
2761 sizeof (panel->prev_search_buffer));
2763 display_mini_info (panel);
2766 /* --------------------------------------------------------------------------------------------- */
2767 /** Return TRUE if the Enter key has been processed, FALSE otherwise */
2769 static gboolean
2770 do_enter_on_file_entry (file_entry_t * fe)
2772 vfs_path_t *full_name_vpath;
2773 gboolean ok;
2776 * Directory or link to directory - change directory.
2777 * Try the same for the entries on which mc_lstat() has failed.
2779 if (S_ISDIR (fe->st.st_mode) || link_isdir (fe) || (fe->st.st_mode == 0))
2781 vfs_path_t *fname_vpath;
2783 fname_vpath = vfs_path_from_str (fe->fname);
2784 if (!do_cd (fname_vpath, cd_exact))
2785 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
2786 vfs_path_free (fname_vpath);
2787 return TRUE;
2790 full_name_vpath = vfs_path_append_new (current_panel->cwd_vpath, fe->fname, (char *) NULL);
2792 /* Try associated command */
2793 ok = regex_command (full_name_vpath, "Open") != 0;
2794 vfs_path_free (full_name_vpath);
2795 if (ok)
2796 return TRUE;
2798 /* Check if the file is executable */
2799 full_name_vpath = vfs_path_append_new (current_panel->cwd_vpath, fe->fname, (char *) NULL);
2800 ok = (is_exe (fe->st.st_mode) && if_link_is_exe (full_name_vpath, fe));
2801 vfs_path_free (full_name_vpath);
2802 if (!ok)
2803 return FALSE;
2805 if (confirm_execute)
2807 if (query_dialog
2808 (_("The Midnight Commander"),
2809 _("Do you really want to execute?"), D_NORMAL, 2, _("&Yes"), _("&No")) != 0)
2810 return TRUE;
2813 if (!vfs_current_is_local ())
2815 int ret;
2816 vfs_path_t *tmp_vpath;
2818 tmp_vpath = vfs_path_append_new (vfs_get_raw_current_dir (), fe->fname, (char *) NULL);
2819 ret = mc_setctl (tmp_vpath, VFS_SETCTL_RUN, NULL);
2820 vfs_path_free (tmp_vpath);
2821 /* We took action only if the dialog was shown or the execution
2822 * was successful */
2823 return confirm_execute || (ret == 0);
2827 char *tmp, *cmd;
2829 tmp = name_quote (fe->fname, FALSE);
2830 cmd = g_strconcat (".", PATH_SEP_STR, tmp, (char *) NULL);
2831 g_free (tmp);
2832 shell_execute (cmd, 0);
2833 g_free (cmd);
2836 #ifdef HAVE_CHARSET
2837 mc_global.source_codepage = default_source_codepage;
2838 #endif
2840 return TRUE;
2843 /* --------------------------------------------------------------------------------------------- */
2845 static inline gboolean
2846 do_enter (WPanel * panel)
2848 return do_enter_on_file_entry (selection (panel));
2851 /* --------------------------------------------------------------------------------------------- */
2853 static void
2854 chdir_other_panel (WPanel * panel)
2856 const file_entry_t *entry = &panel->dir.list[panel->selected];
2858 vfs_path_t *new_dir_vpath;
2859 char *sel_entry = NULL;
2861 if (get_other_type () != view_listing)
2862 set_display_type (get_other_index (), view_listing);
2864 if (S_ISDIR (entry->st.st_mode) || entry->f.link_to_dir)
2865 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, entry->fname, (char *) NULL);
2866 else
2868 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, "..", (char *) NULL);
2869 sel_entry = strrchr (vfs_path_get_last_path_str (panel->cwd_vpath), PATH_SEP);
2872 change_panel ();
2873 do_cd (new_dir_vpath, cd_exact);
2874 vfs_path_free (new_dir_vpath);
2876 if (sel_entry)
2877 try_to_select (current_panel, sel_entry);
2878 change_panel ();
2880 move_down (panel);
2883 /* --------------------------------------------------------------------------------------------- */
2885 * Make the current directory of the current panel also the current
2886 * directory of the other panel. Put the other panel to the listing
2887 * mode if needed. If the current panel is panelized, the other panel
2888 * doesn't become panelized.
2891 static void
2892 panel_sync_other (const WPanel * panel)
2894 if (get_other_type () != view_listing)
2895 set_display_type (get_other_index (), view_listing);
2897 do_panel_cd (other_panel, current_panel->cwd_vpath, cd_exact);
2899 /* try to select current filename on the other panel */
2900 if (!panel->is_panelized)
2901 try_to_select (other_panel, selection (panel)->fname);
2904 /* --------------------------------------------------------------------------------------------- */
2906 static void
2907 chdir_to_readlink (WPanel * panel)
2909 vfs_path_t *new_dir_vpath;
2910 char buffer[MC_MAXPATHLEN];
2911 int i;
2912 struct stat st;
2913 vfs_path_t *panel_fname_vpath;
2914 gboolean ok;
2916 if (get_other_type () != view_listing)
2917 return;
2919 if (!S_ISLNK (panel->dir.list[panel->selected].st.st_mode))
2920 return;
2922 i = readlink (selection (panel)->fname, buffer, MC_MAXPATHLEN - 1);
2923 if (i < 0)
2924 return;
2926 panel_fname_vpath = vfs_path_from_str (selection (panel)->fname);
2927 ok = (mc_stat (panel_fname_vpath, &st) >= 0);
2928 vfs_path_free (panel_fname_vpath);
2929 if (!ok)
2930 return;
2932 buffer[i] = 0;
2933 if (!S_ISDIR (st.st_mode))
2935 char *p;
2937 p = strrchr (buffer, PATH_SEP);
2938 if (p && !p[1])
2940 *p = 0;
2941 p = strrchr (buffer, PATH_SEP);
2943 if (!p)
2944 return;
2945 p[1] = 0;
2947 if (IS_PATH_SEP (*buffer))
2948 new_dir_vpath = vfs_path_from_str (buffer);
2949 else
2950 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, buffer, (char *) NULL);
2952 change_panel ();
2953 do_cd (new_dir_vpath, cd_exact);
2954 vfs_path_free (new_dir_vpath);
2955 change_panel ();
2957 move_down (panel);
2960 /* --------------------------------------------------------------------------------------------- */
2962 static gsize
2963 panel_get_format_field_count (WPanel * panel)
2965 format_e *format;
2966 gsize lc_index;
2968 for (lc_index = 0, format = panel->format; format != NULL; format = format->next, lc_index++)
2971 return lc_index;
2974 /* --------------------------------------------------------------------------------------------- */
2976 function return 0 if not found and REAL_INDEX+1 if found
2979 static gsize
2980 panel_get_format_field_index_by_name (WPanel * panel, const char *name)
2982 format_e *format;
2983 gsize lc_index;
2985 for (lc_index = 1, format = panel->format;
2986 format != NULL && strcmp (format->title, name) != 0; format = format->next, lc_index++)
2989 if (format == NULL)
2990 lc_index = 0;
2992 return lc_index;
2995 /* --------------------------------------------------------------------------------------------- */
2997 static format_e *
2998 panel_get_format_field_by_index (WPanel * panel, gsize lc_index)
3000 format_e *format;
3002 for (format = panel->format; format != NULL && lc_index != 0; format = format->next, lc_index--)
3005 return format;
3008 /* --------------------------------------------------------------------------------------------- */
3010 static const panel_field_t *
3011 panel_get_sortable_field_by_format (WPanel * panel, gsize lc_index)
3013 const panel_field_t *pfield;
3014 format_e *format;
3016 format = panel_get_format_field_by_index (panel, lc_index);
3017 if (format == NULL)
3018 return NULL;
3020 pfield = panel_get_field_by_title (format->title);
3021 if (pfield == NULL)
3022 return NULL;
3023 if (pfield->sort_routine == NULL)
3024 return NULL;
3025 return pfield;
3028 /* --------------------------------------------------------------------------------------------- */
3030 static void
3031 panel_toggle_sort_order_prev (WPanel * panel)
3033 gsize lc_index, i;
3034 const char *title;
3035 const panel_field_t *pfield = NULL;
3037 title = panel_get_title_without_hotkey (panel->sort_field->title_hotkey);
3038 lc_index = panel_get_format_field_index_by_name (panel, title);
3040 if (lc_index > 1)
3042 /* search for prev sortable column in panel format */
3043 for (i = lc_index - 1;
3044 i != 0 && (pfield = panel_get_sortable_field_by_format (panel, i - 1)) == NULL; i--)
3048 if (pfield == NULL)
3050 /* Sortable field not found. Try to search in each array */
3051 for (i = panel_get_format_field_count (panel);
3052 i != 0 && (pfield = panel_get_sortable_field_by_format (panel, i - 1)) == NULL; i--)
3056 if (pfield != NULL)
3058 panel->sort_field = pfield;
3059 panel_set_sort_order (panel, pfield);
3063 /* --------------------------------------------------------------------------------------------- */
3065 static void
3066 panel_toggle_sort_order_next (WPanel * panel)
3068 gsize lc_index, i;
3069 const panel_field_t *pfield = NULL;
3070 gsize format_field_count;
3071 const char *title;
3073 format_field_count = panel_get_format_field_count (panel);
3074 title = panel_get_title_without_hotkey (panel->sort_field->title_hotkey);
3075 lc_index = panel_get_format_field_index_by_name (panel, title);
3077 if (lc_index != 0 && lc_index != format_field_count)
3079 /* search for prev sortable column in panel format */
3080 for (i = lc_index;
3081 i != format_field_count
3082 && (pfield = panel_get_sortable_field_by_format (panel, i)) == NULL; i++)
3086 if (pfield == NULL)
3088 /* Sortable field not found. Try to search in each array */
3089 for (i = 0;
3090 i != format_field_count
3091 && (pfield = panel_get_sortable_field_by_format (panel, i)) == NULL; i++)
3095 if (pfield != NULL)
3097 panel->sort_field = pfield;
3098 panel_set_sort_order (panel, pfield);
3102 /* --------------------------------------------------------------------------------------------- */
3104 static void
3105 panel_select_sort_order (WPanel * panel)
3107 const panel_field_t *sort_order;
3109 sort_order = sort_box (&panel->sort_info, panel->sort_field);
3110 if (sort_order != NULL)
3112 panel->sort_field = sort_order;
3113 panel_set_sort_order (panel, sort_order);
3117 /* --------------------------------------------------------------------------------------------- */
3120 * panel_content_scroll_left:
3121 * @param panel the pointer to the panel on which we operate
3123 * scroll long filename to the left (decrement scroll pointer)
3127 static void
3128 panel_content_scroll_left (WPanel * panel)
3130 if (panel->content_shift > -1)
3132 if (panel->content_shift > panel->max_shift)
3133 panel->content_shift = panel->max_shift;
3135 panel->content_shift--;
3136 show_dir (panel);
3137 paint_dir (panel);
3141 /* --------------------------------------------------------------------------------------------- */
3144 * panel_content_scroll_right:
3145 * @param panel the pointer to the panel on which we operate
3147 * scroll long filename to the right (increment scroll pointer)
3151 static void
3152 panel_content_scroll_right (WPanel * panel)
3154 if (panel->content_shift < 0 || panel->content_shift < panel->max_shift)
3156 panel->content_shift++;
3157 show_dir (panel);
3158 paint_dir (panel);
3162 /* --------------------------------------------------------------------------------------------- */
3164 static void
3165 panel_set_sort_type_by_id (WPanel * panel, const char *name)
3167 if (strcmp (panel->sort_field->id, name) != 0)
3169 const panel_field_t *sort_order;
3171 sort_order = panel_get_field_by_id (name);
3172 if (sort_order == NULL)
3173 return;
3175 panel->sort_field = sort_order;
3177 else
3178 panel->sort_info.reverse = !panel->sort_info.reverse;
3180 panel_set_sort_order (panel, panel->sort_field);
3183 /* --------------------------------------------------------------------------------------------- */
3185 * If we moved to the parent directory move the selection pointer to
3186 * the old directory name; If we leave VFS dir, remove FS specificator.
3188 * You do _NOT_ want to add any vfs aware code here. <pavel@ucw.cz>
3191 static const char *
3192 get_parent_dir_name (const vfs_path_t * cwd_vpath, const vfs_path_t * lwd_vpath)
3194 size_t llen, clen;
3195 const char *p, *cwd, *lwd;
3197 llen = vfs_path_len (lwd_vpath);
3198 clen = vfs_path_len (cwd_vpath);
3200 if (llen <= clen)
3201 return NULL;
3203 cwd = vfs_path_as_str (cwd_vpath);
3204 lwd = vfs_path_as_str (lwd_vpath);
3206 p = g_strrstr (lwd, VFS_PATH_URL_DELIMITER);
3208 if (p == NULL)
3210 p = strrchr (lwd, PATH_SEP);
3212 if ((p != NULL)
3213 && (strncmp (cwd, lwd, (size_t) (p - lwd)) == 0)
3214 && (clen == (size_t) (p - lwd) || (p == lwd && IS_PATH_SEP (cwd[0]) && cwd[1] == '\0')))
3215 return (p + 1);
3217 return NULL;
3220 /* skip VFS prefix */
3221 while (--p > lwd && !IS_PATH_SEP (*p))
3223 /* get last component */
3224 while (--p > lwd && !IS_PATH_SEP (*p))
3227 /* return last component */
3228 return (p != lwd || IS_PATH_SEP (*p)) ? p + 1 : p;
3231 /* --------------------------------------------------------------------------------------------- */
3232 /** Wrapper for do_subshell_chdir, check for availability of subshell */
3234 static void
3235 subshell_chdir (const vfs_path_t * vpath)
3237 #ifdef ENABLE_SUBSHELL
3238 if (mc_global.tty.use_subshell && vfs_current_is_local ())
3239 do_subshell_chdir (vpath, FALSE);
3240 #else /* ENABLE_SUBSHELL */
3241 (void) vpath;
3242 #endif /* ENABLE_SUBSHELL */
3245 /* --------------------------------------------------------------------------------------------- */
3247 * Changes the current directory of the panel.
3248 * Don't record change in the directory history.
3251 static gboolean
3252 _do_panel_cd (WPanel * panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type)
3254 vfs_path_t *olddir_vpath;
3256 /* Convert *new_path to a suitable pathname, handle ~user */
3257 if (cd_type == cd_parse_command)
3259 const vfs_path_element_t *element;
3261 element = vfs_path_get_by_index (new_dir_vpath, 0);
3262 if (strcmp (element->path, "-") == 0)
3263 new_dir_vpath = panel->lwd_vpath;
3266 if (mc_chdir (new_dir_vpath) == -1)
3267 return FALSE;
3269 /* Success: save previous directory, shutdown status of previous dir */
3270 olddir_vpath = vfs_path_clone (panel->cwd_vpath);
3271 panel_set_lwd (panel, panel->cwd_vpath);
3272 input_free_completions (cmdline);
3274 vfs_path_free (panel->cwd_vpath);
3275 vfs_setup_cwd ();
3276 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
3278 vfs_release_path (olddir_vpath);
3280 subshell_chdir (panel->cwd_vpath);
3282 /* Reload current panel */
3283 panel_clean_dir (panel);
3285 dir_list_load (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
3286 &panel->sort_info, panel->filter);
3287 try_to_select (panel, get_parent_dir_name (panel->cwd_vpath, olddir_vpath));
3289 load_hint (FALSE);
3290 panel->dirty = 1;
3291 update_xterm_title_path ();
3293 vfs_path_free (olddir_vpath);
3295 return TRUE;
3298 /* --------------------------------------------------------------------------------------------- */
3300 static void
3301 directory_history_next (WPanel * panel)
3303 gboolean ok;
3307 GList *next;
3309 ok = TRUE;
3310 next = g_list_next (panel->dir_history_current);
3311 if (next != NULL)
3313 vfs_path_t *data_vpath;
3315 data_vpath = vfs_path_from_str ((char *) next->data);
3316 ok = _do_panel_cd (panel, data_vpath, cd_exact);
3317 vfs_path_free (data_vpath);
3318 panel->dir_history_current = next;
3320 /* skip directories that present in history but absent in file system */
3322 while (!ok);
3325 /* --------------------------------------------------------------------------------------------- */
3327 static void
3328 directory_history_prev (WPanel * panel)
3330 gboolean ok;
3334 GList *prev;
3336 ok = TRUE;
3337 prev = g_list_previous (panel->dir_history_current);
3338 if (prev != NULL)
3340 vfs_path_t *data_vpath;
3342 data_vpath = vfs_path_from_str ((char *) prev->data);
3343 ok = _do_panel_cd (panel, data_vpath, cd_exact);
3344 vfs_path_free (data_vpath);
3345 panel->dir_history_current = prev;
3347 /* skip directories that present in history but absent in file system */
3349 while (!ok);
3352 /* --------------------------------------------------------------------------------------------- */
3354 static void
3355 directory_history_list (WPanel * panel)
3357 char *s;
3358 gboolean ok = FALSE;
3359 size_t pos;
3361 pos = g_list_position (panel->dir_history_current, panel->dir_history);
3363 s = history_show (&panel->dir_history, WIDGET (panel), pos);
3364 if (s != NULL)
3366 vfs_path_t *s_vpath;
3368 s_vpath = vfs_path_from_str (s);
3369 ok = _do_panel_cd (panel, s_vpath, cd_exact);
3370 if (ok)
3371 directory_history_add (panel, panel->cwd_vpath);
3372 else
3373 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
3374 vfs_path_free (s_vpath);
3375 g_free (s);
3378 if (!ok)
3380 /* Since history is fully modified in history_show(), panel->dir_history actually
3381 * points to the invalid place. Try restore current postition here. */
3383 size_t i;
3385 panel->dir_history_current = panel->dir_history;
3387 for (i = 0; i <= pos; i++)
3389 GList *prev;
3391 prev = g_list_previous (panel->dir_history_current);
3392 if (prev == NULL)
3393 break;
3395 panel->dir_history_current = prev;
3400 /* --------------------------------------------------------------------------------------------- */
3402 static cb_ret_t
3403 panel_execute_cmd (WPanel * panel, long command)
3405 int res = MSG_HANDLED;
3407 if (command != CK_Search)
3408 stop_search (panel);
3410 switch (command)
3412 case CK_Up:
3413 case CK_Down:
3414 case CK_Left:
3415 case CK_Right:
3416 case CK_Bottom:
3417 case CK_Top:
3418 case CK_PageDown:
3419 case CK_PageUp:
3420 /* reset state of marks flag */
3421 state_mark = -1;
3422 break;
3423 default:
3424 break;
3427 switch (command)
3429 case CK_PanelOtherCd:
3430 chdir_other_panel (panel);
3431 break;
3432 case CK_PanelOtherCdLink:
3433 chdir_to_readlink (panel);
3434 break;
3435 case CK_CopySingle:
3436 copy_cmd_local ();
3437 break;
3438 case CK_DeleteSingle:
3439 delete_cmd_local ();
3440 break;
3441 case CK_Enter:
3442 do_enter (panel);
3443 break;
3444 case CK_ViewRaw:
3445 view_raw_cmd ();
3446 break;
3447 case CK_EditNew:
3448 edit_cmd_new ();
3449 break;
3450 case CK_MoveSingle:
3451 rename_cmd_local ();
3452 break;
3453 case CK_SelectInvert:
3454 panel_select_invert_files (panel);
3455 break;
3456 case CK_Select:
3457 panel_select_files (panel);
3458 break;
3459 case CK_SelectExt:
3460 panel_select_ext_cmd ();
3461 break;
3462 case CK_Unselect:
3463 panel_unselect_files (panel);
3464 break;
3465 case CK_PageDown:
3466 next_page (panel);
3467 break;
3468 case CK_PageUp:
3469 prev_page (panel);
3470 break;
3471 case CK_CdChild:
3472 goto_child_dir (panel);
3473 break;
3474 case CK_CdParent:
3475 goto_parent_dir (panel);
3476 break;
3477 case CK_History:
3478 directory_history_list (panel);
3479 break;
3480 case CK_HistoryNext:
3481 directory_history_next (panel);
3482 break;
3483 case CK_HistoryPrev:
3484 directory_history_prev (panel);
3485 break;
3486 case CK_BottomOnScreen:
3487 goto_bottom_file (panel);
3488 break;
3489 case CK_MiddleOnScreen:
3490 goto_middle_file (panel);
3491 break;
3492 case CK_TopOnScreen:
3493 goto_top_file (panel);
3494 break;
3495 case CK_Mark:
3496 mark_file (panel);
3497 break;
3498 case CK_MarkUp:
3499 mark_file_up (panel);
3500 break;
3501 case CK_MarkDown:
3502 mark_file_down (panel);
3503 break;
3504 case CK_MarkLeft:
3505 mark_file_left (panel);
3506 break;
3507 case CK_MarkRight:
3508 mark_file_right (panel);
3509 break;
3510 case CK_CdParentSmart:
3511 res = force_maybe_cd ();
3512 break;
3513 case CK_Up:
3514 move_up (panel);
3515 break;
3516 case CK_Down:
3517 move_down (panel);
3518 break;
3519 case CK_Left:
3520 res = move_left (panel);
3521 break;
3522 case CK_Right:
3523 res = move_right (panel);
3524 break;
3525 case CK_Bottom:
3526 move_end (panel);
3527 break;
3528 case CK_Top:
3529 move_home (panel);
3530 break;
3531 #ifdef HAVE_CHARSET
3532 case CK_SelectCodepage:
3533 panel_change_encoding (panel);
3534 break;
3535 #endif
3536 case CK_ScrollLeft:
3537 panel_content_scroll_left (panel);
3538 break;
3539 case CK_ScrollRight:
3540 panel_content_scroll_right (panel);
3541 break;
3542 case CK_Search:
3543 start_search (panel);
3544 break;
3545 case CK_SearchStop:
3546 break;
3547 case CK_PanelOtherSync:
3548 panel_sync_other (panel);
3549 break;
3550 case CK_Sort:
3551 panel_select_sort_order (panel);
3552 break;
3553 case CK_SortPrev:
3554 panel_toggle_sort_order_prev (panel);
3555 break;
3556 case CK_SortNext:
3557 panel_toggle_sort_order_next (panel);
3558 break;
3559 case CK_SortReverse:
3560 panel->sort_info.reverse = !panel->sort_info.reverse;
3561 panel_set_sort_order (panel, panel->sort_field);
3562 break;
3563 case CK_SortByName:
3564 panel_set_sort_type_by_id (panel, "name");
3565 break;
3566 case CK_SortByExt:
3567 panel_set_sort_type_by_id (panel, "extension");
3568 break;
3569 case CK_SortBySize:
3570 panel_set_sort_type_by_id (panel, "size");
3571 break;
3572 case CK_SortByMTime:
3573 panel_set_sort_type_by_id (panel, "mtime");
3574 break;
3575 default:
3576 res = MSG_NOT_HANDLED;
3577 break;
3580 return res;
3583 /* --------------------------------------------------------------------------------------------- */
3585 static cb_ret_t
3586 panel_key (WPanel * panel, int key)
3588 size_t i;
3590 if (is_abort_char (key))
3592 stop_search (panel);
3593 return MSG_HANDLED;
3596 if (panel->searching && ((key >= ' ' && key <= 255) || key == KEY_BACKSPACE))
3598 do_search (panel, key);
3599 return MSG_HANDLED;
3602 for (i = 0; panel_map[i].key != 0; i++)
3603 if (key == panel_map[i].key)
3604 return panel_execute_cmd (panel, panel_map[i].command);
3606 if (panels_options.torben_fj_mode && key == ALT ('h'))
3608 goto_middle_file (panel);
3609 return MSG_HANDLED;
3612 if (!command_prompt && ((key >= ' ' && key <= 255) || key == KEY_BACKSPACE))
3614 start_search (panel);
3615 do_search (panel, key);
3616 return MSG_HANDLED;
3619 return MSG_NOT_HANDLED;
3622 /* --------------------------------------------------------------------------------------------- */
3624 static cb_ret_t
3625 panel_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *data)
3627 WPanel *panel = PANEL (w);
3628 WButtonBar *bb;
3630 switch (msg)
3632 case MSG_INIT:
3633 /* subscribe to "history_load" event */
3634 mc_event_add (w->owner->event_group, MCEVENT_HISTORY_LOAD, panel_load_history, w, NULL);
3635 /* subscribe to "history_save" event */
3636 mc_event_add (w->owner->event_group, MCEVENT_HISTORY_SAVE, panel_save_history, w, NULL);
3637 return MSG_HANDLED;
3639 case MSG_DRAW:
3640 /* Repaint everything, including frame and separator */
3641 widget_erase (w);
3642 show_dir (panel);
3643 panel_print_header (panel);
3644 adjust_top_file (panel);
3645 paint_dir (panel);
3646 mini_info_separator (panel);
3647 display_mini_info (panel);
3648 panel->dirty = 0;
3649 return MSG_HANDLED;
3651 case MSG_FOCUS:
3652 state_mark = -1;
3653 current_panel = panel;
3654 panel->active = 1;
3656 if (mc_chdir (panel->cwd_vpath) != 0)
3658 char *cwd;
3660 cwd = vfs_path_to_str_flags (panel->cwd_vpath, 0, VPF_STRIP_PASSWORD);
3661 message (D_ERROR, MSG_ERROR, _("Cannot chdir to \"%s\"\n%s"),
3662 cwd, unix_error_string (errno));
3663 g_free (cwd);
3665 else
3666 subshell_chdir (panel->cwd_vpath);
3668 update_xterm_title_path ();
3669 select_item (panel);
3670 show_dir (panel);
3671 paint_dir (panel);
3672 panel->dirty = 0;
3674 bb = find_buttonbar (w->owner);
3675 midnight_set_buttonbar (bb);
3676 widget_redraw (WIDGET (bb));
3677 return MSG_HANDLED;
3679 case MSG_UNFOCUS:
3680 /* Janne: look at this for the multiple panel options */
3681 stop_search (panel);
3682 panel->active = 0;
3683 show_dir (panel);
3684 unselect_item (panel);
3685 return MSG_HANDLED;
3687 case MSG_KEY:
3688 return panel_key (panel, parm);
3690 case MSG_ACTION:
3691 return panel_execute_cmd (panel, parm);
3693 case MSG_DESTROY:
3694 /* unsubscribe from "history_load" event */
3695 mc_event_del (w->owner->event_group, MCEVENT_HISTORY_LOAD, panel_load_history, w);
3696 /* unsubscribe from "history_save" event */
3697 mc_event_del (w->owner->event_group, MCEVENT_HISTORY_SAVE, panel_save_history, w);
3698 panel_destroy (panel);
3699 free_my_statfs ();
3700 return MSG_HANDLED;
3702 default:
3703 return widget_default_callback (w, sender, msg, parm, data);
3707 /* --------------------------------------------------------------------------------------------- */
3708 /* */
3709 /* Panel mouse events support routines */
3710 /* */
3712 static void
3713 mouse_toggle_mark (WPanel * panel)
3715 do_mark_file (panel, MARK_DONT_MOVE);
3716 mouse_marking = selection (panel)->f.marked;
3717 mouse_mark_panel = current_panel;
3720 /* --------------------------------------------------------------------------------------------- */
3722 static void
3723 mouse_set_mark (WPanel * panel)
3725 if (mouse_mark_panel == panel)
3727 if (mouse_marking && !(selection (panel)->f.marked))
3728 do_mark_file (panel, MARK_DONT_MOVE);
3729 else if (!mouse_marking && (selection (panel)->f.marked))
3730 do_mark_file (panel, MARK_DONT_MOVE);
3734 /* --------------------------------------------------------------------------------------------- */
3736 static gboolean
3737 mark_if_marking (WPanel * panel, const mouse_event_t * event)
3739 if ((event->buttons & GPM_B_RIGHT) != 0)
3741 if (event->msg == MSG_MOUSE_DOWN)
3742 mouse_toggle_mark (panel);
3743 else
3744 mouse_set_mark (panel);
3745 return TRUE;
3748 return FALSE;
3751 /* --------------------------------------------------------------------------------------------- */
3752 /** Determine which column was clicked, and sort the panel on
3753 * that column, or reverse sort on that column if already
3754 * sorted on that column.
3757 static void
3758 mouse_sort_col (WPanel * panel, int x)
3760 int i;
3761 const char *lc_sort_name = NULL;
3762 panel_field_t *col_sort_format = NULL;
3763 format_e *format;
3765 for (i = 0, format = panel->format; format != NULL; format = format->next)
3767 i += format->field_len;
3768 if (x < i + 1)
3770 /* found column */
3771 lc_sort_name = format->title;
3772 break;
3776 if (lc_sort_name == NULL)
3777 return;
3779 for (i = 0; panel_fields[i].id != NULL; i++)
3781 const char *title;
3783 title = panel_get_title_without_hotkey (panel_fields[i].title_hotkey);
3784 if (strcmp (title, lc_sort_name) == 0 && panel_fields[i].sort_routine != NULL)
3786 col_sort_format = &panel_fields[i];
3787 break;
3791 if (col_sort_format == NULL)
3792 return;
3794 if (panel->sort_field == col_sort_format)
3796 /* reverse the sort if clicked column is already the sorted column */
3797 panel->sort_info.reverse = !panel->sort_info.reverse;
3799 else
3801 /* new sort is forced to be ascending */
3802 panel->sort_info.reverse = FALSE;
3804 panel_set_sort_order (panel, col_sort_format);
3807 /* --------------------------------------------------------------------------------------------- */
3809 static void
3810 panel_mouse_callback (Widget * w, mouse_msg_t msg, mouse_event_t * event)
3812 WPanel *panel = PANEL (w);
3813 gboolean is_active;
3815 is_active = widget_is_active (w);
3817 switch (msg)
3819 case MSG_MOUSE_DOWN:
3820 if (event->y == 0)
3822 /* top frame */
3823 if (event->x == 1)
3824 /* "<" button */
3825 directory_history_prev (panel);
3826 else if (event->x == w->cols - 2)
3827 /* ">" button */
3828 directory_history_next (panel);
3829 else if (event->x >= w->cols - 5 && event->x <= w->cols - 3)
3830 /* "^" button */
3831 directory_history_list (panel);
3832 else if (event->x == w->cols - 6)
3833 /* "." button show/hide hidden files */
3834 send_message (midnight_dlg, NULL, MSG_ACTION, CK_ShowHidden, NULL);
3835 else
3837 /* no other events on 1st line, return MOU_UNHANDLED */
3838 event->result.abort = TRUE;
3839 /* avoid extra panel redraw */
3840 panel->dirty = 0;
3842 break;
3845 if (event->y == 1)
3847 /* sort on clicked column */
3848 mouse_sort_col (panel, event->x + 1);
3849 break;
3852 if (!is_active)
3853 change_panel ();
3854 /* fall through */
3856 case MSG_MOUSE_DRAG:
3858 int y, last, my_index;
3860 last = panel->dir.len - 1;
3861 y = event->y - 2;
3863 if (panel->top_file + y > last)
3864 my_index = last;
3865 else
3867 my_index = panel->top_file + y;
3869 if (panel->list_type == list_brief && panel->list_cols > 1)
3871 int width, lines;
3873 width = (w->cols - 2) / panel->list_cols;
3874 lines = panel_lines (panel);
3875 my_index += lines * (event->x / width);
3878 if (my_index > last)
3879 my_index = last;
3882 if (my_index != panel->selected)
3884 unselect_item (panel);
3885 panel->selected = my_index;
3886 select_item (panel);
3889 /* This one is new */
3890 mark_if_marking (panel, event);
3892 break;
3894 case MSG_MOUSE_UP:
3895 break;
3897 case MSG_MOUSE_CLICK:
3898 if ((event->count & GPM_DOUBLE) != 0)
3900 int y, lines;
3902 y = event->y - 1;
3903 lines = panel_lines (panel);
3905 if (y <= lines)
3906 do_enter (panel);
3908 break;
3910 case MSG_MOUSE_MOVE:
3911 break;
3913 case MSG_MOUSE_SCROLL_UP:
3914 if (is_active)
3916 if (panels_options.mouse_move_pages && panel->top_file > 0)
3917 prev_page (panel);
3918 else /* We are in first page */
3919 move_up (panel);
3921 break;
3923 case MSG_MOUSE_SCROLL_DOWN:
3924 if (is_active)
3926 if (panels_options.mouse_move_pages
3927 && panel->top_file + panel_items (panel) < panel->dir.len)
3928 next_page (panel);
3929 else /* We are in last page */
3930 move_down (panel);
3932 break;
3934 default:
3935 break;
3938 if (panel->dirty)
3939 widget_redraw (w);
3942 /* --------------------------------------------------------------------------------------------- */
3944 static void
3945 reload_panelized (WPanel * panel)
3947 int i, j;
3948 dir_list *list = &panel->dir;
3950 /* refresh current VFS directory required for vfs_path_from_str() */
3951 (void) mc_chdir (panel->cwd_vpath);
3953 for (i = 0, j = 0; i < list->len; i++)
3955 vfs_path_t *vpath;
3957 if (list->list[i].f.marked)
3959 /* Unmark the file in advance. In case the following mc_lstat
3960 * fails we are done, else we have to mark the file again
3961 * (Note: do_file_mark depends on a valid "list->list [i].buf").
3962 * IMO that's the best way to update the panel's summary status
3963 * -- Norbert
3965 do_file_mark (panel, i, 0);
3967 vpath = vfs_path_from_str (list->list[i].fname);
3968 if (mc_lstat (vpath, &list->list[i].st) != 0)
3969 g_free (list->list[i].fname);
3970 else
3972 if (list->list[i].f.marked)
3973 do_file_mark (panel, i, 1);
3974 if (j != i)
3975 list->list[j] = list->list[i];
3976 j++;
3978 vfs_path_free (vpath);
3980 if (j == 0)
3981 dir_list_init (list);
3982 else
3983 list->len = j;
3985 if (panel != current_panel)
3986 (void) mc_chdir (current_panel->cwd_vpath);
3989 /* --------------------------------------------------------------------------------------------- */
3991 static void
3992 update_one_panel_widget (WPanel * panel, panel_update_flags_t flags, const char *current_file)
3994 gboolean free_pointer;
3995 char *my_current_file = NULL;
3997 if ((flags & UP_RELOAD) != 0)
3999 panel->is_panelized = FALSE;
4000 mc_setctl (panel->cwd_vpath, VFS_SETCTL_FLUSH, 0);
4001 memset (&(panel->dir_stat), 0, sizeof (panel->dir_stat));
4004 /* If current_file == -1 (an invalid pointer) then preserve selection */
4005 free_pointer = current_file == UP_KEEPSEL;
4007 if (free_pointer)
4009 my_current_file = g_strdup (panel->dir.list[panel->selected].fname);
4010 current_file = my_current_file;
4013 if (panel->is_panelized)
4014 reload_panelized (panel);
4015 else
4016 panel_reload (panel);
4018 try_to_select (panel, current_file);
4019 panel->dirty = 1;
4021 if (free_pointer)
4022 g_free (my_current_file);
4025 /* --------------------------------------------------------------------------------------------- */
4027 static void
4028 update_one_panel (int which, panel_update_flags_t flags, const char *current_file)
4030 if (get_display_type (which) == view_listing)
4032 WPanel *panel;
4034 panel = PANEL (get_panel_widget (which));
4035 if (panel->is_panelized)
4036 flags &= ~UP_RELOAD;
4037 update_one_panel_widget (panel, flags, current_file);
4041 /* --------------------------------------------------------------------------------------------- */
4043 static void
4044 do_select (WPanel * panel, int i)
4046 if (i != panel->selected)
4048 panel->dirty = 1;
4049 panel->selected = i;
4050 panel->top_file = panel->selected - (WIDGET (panel)->lines - 2) / 2;
4051 if (panel->top_file < 0)
4052 panel->top_file = 0;
4056 /* --------------------------------------------------------------------------------------------- */
4058 static void
4059 do_try_to_select (WPanel * panel, const char *name)
4061 int i;
4062 char *subdir;
4064 if (!name)
4066 do_select (panel, 0);
4067 return;
4070 /* We only want the last component of the directory,
4071 * and from this only the name without suffix.
4072 * Cut prefix if the panel is not panelized */
4074 if (panel->is_panelized)
4075 subdir = vfs_strip_suffix_from_filename (name);
4076 else
4077 subdir = vfs_strip_suffix_from_filename (x_basename (name));
4079 /* Search that subdir or filename without prefix (if not panelized panel), select it if found */
4080 for (i = 0; i < panel->dir.len; i++)
4082 if (strcmp (subdir, panel->dir.list[i].fname) == 0)
4084 do_select (panel, i);
4085 g_free (subdir);
4086 return;
4090 /* Try to select a file near the file that is missing */
4091 if (panel->selected >= panel->dir.len)
4092 do_select (panel, panel->dir.len - 1);
4093 g_free (subdir);
4096 /* --------------------------------------------------------------------------------------------- */
4098 /* event callback */
4099 static gboolean
4100 event_update_panels (const gchar * event_group_name, const gchar * event_name,
4101 gpointer init_data, gpointer data)
4103 (void) event_group_name;
4104 (void) event_name;
4105 (void) init_data;
4106 (void) data;
4108 update_panels (UP_RELOAD, UP_KEEPSEL);
4110 return TRUE;
4113 /* --------------------------------------------------------------------------------------------- */
4115 /* event callback */
4116 static gboolean
4117 panel_save_current_file_to_clip_file (const gchar * event_group_name, const gchar * event_name,
4118 gpointer init_data, gpointer data)
4120 (void) event_group_name;
4121 (void) event_name;
4122 (void) init_data;
4123 (void) data;
4125 if (current_panel->marked == 0)
4126 mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_text_to_file",
4127 (gpointer) selection (current_panel)->fname);
4128 else
4130 int i;
4131 gboolean first = TRUE;
4132 char *flist = NULL;
4134 for (i = 0; i < current_panel->dir.len; i++)
4135 if (current_panel->dir.list[i].f.marked != 0)
4136 { /* Skip the unmarked ones */
4137 if (first)
4139 flist = g_strdup (current_panel->dir.list[i].fname);
4140 first = FALSE;
4142 else
4144 /* Add empty lines after the file */
4145 char *tmp;
4147 tmp =
4148 g_strconcat (flist, "\n", current_panel->dir.list[i].fname, (char *) NULL);
4149 g_free (flist);
4150 flist = tmp;
4154 mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_text_to_file", (gpointer) flist);
4155 g_free (flist);
4157 return TRUE;
4160 /* --------------------------------------------------------------------------------------------- */
4162 static vfs_path_t *
4163 panel_recursive_cd_to_parent (const vfs_path_t * vpath)
4165 vfs_path_t *cwd_vpath;
4167 cwd_vpath = vfs_path_clone (vpath);
4169 while (mc_chdir (cwd_vpath) < 0)
4171 const char *panel_cwd_path;
4172 vfs_path_t *tmp_vpath;
4174 /* check if path contains only '/' */
4175 panel_cwd_path = vfs_path_as_str (cwd_vpath);
4176 if (IS_PATH_SEP (panel_cwd_path[0]) && panel_cwd_path[1] == '\0')
4177 return NULL;
4179 tmp_vpath = vfs_path_vtokens_get (cwd_vpath, 0, -1);
4180 vfs_path_free (cwd_vpath);
4181 cwd_vpath =
4182 vfs_path_build_filename (PATH_SEP_STR, vfs_path_as_str (tmp_vpath), (char *) NULL);
4183 vfs_path_free (tmp_vpath);
4186 return cwd_vpath;
4189 /* --------------------------------------------------------------------------------------------- */
4190 /*** public functions ****************************************************************************/
4191 /* --------------------------------------------------------------------------------------------- */
4193 void
4194 try_to_select (WPanel * panel, const char *name)
4196 do_try_to_select (panel, name);
4197 select_item (panel);
4200 /* --------------------------------------------------------------------------------------------- */
4202 void
4203 panel_clean_dir (WPanel * panel)
4205 panel->top_file = 0;
4206 panel->selected = 0;
4207 panel->marked = 0;
4208 panel->dirs_marked = 0;
4209 panel->total = 0;
4210 panel->searching = FALSE;
4211 panel->is_panelized = FALSE;
4212 panel->dirty = 1;
4213 panel->content_shift = -1;
4214 panel->max_shift = -1;
4216 dir_list_clean (&panel->dir);
4219 /* --------------------------------------------------------------------------------------------- */
4221 * Set Up panel's current dir object
4223 * @param panel panel object
4224 * @param path_str string contain path
4227 void
4228 panel_set_cwd (WPanel * panel, const vfs_path_t * vpath)
4230 if (vpath != panel->cwd_vpath) /* check if new vpath is not the panel->cwd_vpath object */
4232 vfs_path_free (panel->cwd_vpath);
4233 panel->cwd_vpath = vfs_path_clone (vpath);
4237 /* --------------------------------------------------------------------------------------------- */
4239 * Set Up panel's last working dir object
4241 * @param panel panel object
4242 * @param path_str string contain path
4245 void
4246 panel_set_lwd (WPanel * panel, const vfs_path_t * vpath)
4248 if (vpath != panel->lwd_vpath) /* check if new vpath is not the panel->lwd_vpath object */
4250 vfs_path_free (panel->lwd_vpath);
4251 panel->lwd_vpath = vfs_path_clone (vpath);
4255 /* --------------------------------------------------------------------------------------------- */
4257 * Panel creation for specified directory.
4259 * @param panel_name specifies the name of the panel for setup retieving
4260 * @param wpath the path of working panel directory. If path is NULL then panel will be created
4261 * for current directory
4263 * @return new instance of WPanel
4266 WPanel *
4267 panel_new_with_dir (const char *panel_name, const vfs_path_t * vpath)
4269 WPanel *panel;
4270 Widget *w;
4271 char *section;
4272 int i, err;
4273 char *curdir = NULL;
4275 panel = g_new0 (WPanel, 1);
4276 w = WIDGET (panel);
4277 /* No know sizes of the panel at startup */
4278 widget_init (w, 0, 0, 0, 0, panel_callback, panel_mouse_callback);
4279 /* We do not want the cursor */
4280 widget_want_cursor (w, FALSE);
4282 if (vpath != NULL)
4284 curdir = _vfs_get_cwd ();
4285 panel_set_cwd (panel, vpath);
4287 else
4289 vfs_setup_cwd ();
4290 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
4293 panel_set_lwd (panel, vfs_get_raw_current_dir ());
4295 panel->hist_name = g_strconcat ("Dir Hist ", panel_name, (char *) NULL);
4296 /* directories history will be get later */
4298 panel->dir.size = DIR_LIST_MIN_SIZE;
4299 panel->dir.list = g_new (file_entry_t, panel->dir.size);
4300 panel->dir.len = 0;
4301 panel->active = 0;
4302 panel->filter = NULL;
4303 panel->list_cols = 1;
4304 panel->brief_cols = 2;
4305 panel->top_file = 0;
4306 panel->selected = 0;
4307 panel->marked = 0;
4308 panel->total = 0;
4309 panel->dirty = 1;
4310 panel->searching = FALSE;
4311 panel->dirs_marked = 0;
4312 panel->is_panelized = FALSE;
4313 panel->format = NULL;
4314 panel->status_format = NULL;
4315 panel->format_modified = 1;
4316 panel->content_shift = -1;
4317 panel->max_shift = -1;
4319 panel->panel_name = g_strdup (panel_name);
4320 panel->user_format = g_strdup (DEFAULT_USER_FORMAT);
4322 #ifdef HAVE_CHARSET
4323 panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
4324 #endif
4326 for (i = 0; i < LIST_TYPES; i++)
4327 panel->user_status_format[i] = g_strdup (DEFAULT_USER_FORMAT);
4329 panel->search_buffer[0] = '\0';
4330 panel->prev_search_buffer[0] = '\0';
4331 panel->frame_size = frame_half;
4333 section = g_strconcat ("Temporal:", panel->panel_name, (char *) NULL);
4334 if (!mc_config_has_group (mc_global.main_config, section))
4336 g_free (section);
4337 section = g_strdup (panel->panel_name);
4339 panel_load_setup (panel, section);
4340 g_free (section);
4342 /* Load format strings */
4343 err = set_panel_formats (panel);
4344 if (err != 0)
4345 set_panel_formats (panel);
4347 #ifdef HAVE_CHARSET
4349 const vfs_path_element_t *path_element;
4351 path_element = vfs_path_get_by_index (panel->cwd_vpath, -1);
4352 if (path_element->encoding != NULL)
4353 panel->codepage = get_codepage_index (path_element->encoding);
4355 #endif
4357 if (mc_chdir (panel->cwd_vpath) != 0)
4359 #ifdef HAVE_CHARSET
4360 panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
4361 #endif
4362 vfs_setup_cwd ();
4363 vfs_path_free (panel->cwd_vpath);
4364 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
4367 /* Load the default format */
4368 dir_list_load (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
4369 &panel->sort_info, panel->filter);
4371 /* Restore old right path */
4372 if (curdir != NULL)
4374 vfs_path_t *tmp_vpath;
4376 tmp_vpath = vfs_path_from_str (curdir);
4377 err = mc_chdir (tmp_vpath);
4378 vfs_path_free (tmp_vpath);
4380 g_free (curdir);
4382 return panel;
4385 /* --------------------------------------------------------------------------------------------- */
4387 void
4388 panel_reload (WPanel * panel)
4390 struct stat current_stat;
4391 vfs_path_t *cwd_vpath;
4393 if (panels_options.fast_reload && stat (vfs_path_as_str (panel->cwd_vpath), &current_stat) == 0
4394 && current_stat.st_ctime == panel->dir_stat.st_ctime
4395 && current_stat.st_mtime == panel->dir_stat.st_mtime)
4396 return;
4398 cwd_vpath = panel_recursive_cd_to_parent (panel->cwd_vpath);
4399 vfs_path_free (panel->cwd_vpath);
4401 if (cwd_vpath == NULL)
4403 panel->cwd_vpath = vfs_path_from_str (PATH_SEP_STR);
4404 panel_clean_dir (panel);
4405 dir_list_init (&panel->dir);
4406 return;
4409 panel->cwd_vpath = cwd_vpath;
4410 memset (&(panel->dir_stat), 0, sizeof (panel->dir_stat));
4411 show_dir (panel);
4413 dir_list_reload (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
4414 &panel->sort_info, panel->filter);
4416 panel->dirty = 1;
4417 if (panel->selected >= panel->dir.len)
4418 do_select (panel, panel->dir.len - 1);
4420 recalculate_panel_summary (panel);
4423 /* --------------------------------------------------------------------------------------------- */
4424 /* Switches the panel to the mode specified in the format */
4425 /* Seting up both format and status string. Return: 0 - on success; */
4426 /* 1 - format error; 2 - status error; 3 - errors in both formats. */
4429 set_panel_formats (WPanel * p)
4431 format_e *form;
4432 char *err = NULL;
4433 int retcode = 0;
4435 form = use_display_format (p, panel_format (p), &err, FALSE);
4437 if (err != NULL)
4439 g_free (err);
4440 retcode = 1;
4442 else
4444 delete_format (p->format);
4445 p->format = form;
4448 if (panels_options.show_mini_info)
4450 form = use_display_format (p, mini_status_format (p), &err, TRUE);
4452 if (err != NULL)
4454 g_free (err);
4455 retcode += 2;
4457 else
4459 delete_format (p->status_format);
4460 p->status_format = form;
4464 panel_format_modified (p);
4465 panel_update_cols (WIDGET (p), p->frame_size);
4467 if (retcode)
4468 message (D_ERROR, _("Warning"),
4469 _("User supplied format looks invalid, reverting to default."));
4470 if (retcode & 0x01)
4472 g_free (p->user_format);
4473 p->user_format = g_strdup (DEFAULT_USER_FORMAT);
4475 if (retcode & 0x02)
4477 g_free (p->user_status_format[p->list_type]);
4478 p->user_status_format[p->list_type] = g_strdup (DEFAULT_USER_FORMAT);
4481 return retcode;
4484 /* --------------------------------------------------------------------------------------------- */
4486 void
4487 panel_update_cols (Widget * widget, panel_display_t frame_size)
4489 int cols, origin;
4491 /* don't touch panel if it is not in dialog yet */
4492 /* if panel is not in dialog it is not in widgets list
4493 and cannot be compared with get_panel_widget() result */
4494 if (widget->owner == NULL)
4495 return;
4497 if (panels_layout.horizontal_split)
4499 widget->cols = COLS;
4500 return;
4503 if (frame_size == frame_full)
4505 cols = COLS;
4506 origin = 0;
4508 else if (widget == get_panel_widget (0))
4510 cols = panels_layout.left_panel_size;
4511 origin = 0;
4513 else
4515 cols = COLS - panels_layout.left_panel_size;
4516 origin = panels_layout.left_panel_size;
4519 widget->cols = cols;
4520 widget->x = origin;
4523 /* --------------------------------------------------------------------------------------------- */
4525 /* Select current item and readjust the panel */
4526 void
4527 select_item (WPanel * panel)
4529 /* Although currently all over the code we set the selection and
4530 top file to decent values before calling select_item, I could
4531 forget it someday, so it's better to do the actual fitting here */
4533 if (panel->selected < 0)
4534 panel->selected = 0;
4536 if (panel->selected > panel->dir.len - 1)
4537 panel->selected = panel->dir.len - 1;
4539 adjust_top_file (panel);
4541 panel->dirty = 1;
4543 execute_hooks (select_file_hook);
4546 /* --------------------------------------------------------------------------------------------- */
4547 /** Clears all files in the panel, used only when one file was marked */
4548 void
4549 unmark_files (WPanel * panel)
4551 int i;
4553 if (!panel->marked)
4554 return;
4556 for (i = 0; i < panel->dir.len; i++)
4557 file_mark (panel, i, 0);
4559 panel->dirs_marked = 0;
4560 panel->marked = 0;
4561 panel->total = 0;
4564 /* --------------------------------------------------------------------------------------------- */
4565 /** Recalculate the panels summary information, used e.g. when marked
4566 files might have been removed by an external command */
4568 void
4569 recalculate_panel_summary (WPanel * panel)
4571 int i;
4573 panel->marked = 0;
4574 panel->dirs_marked = 0;
4575 panel->total = 0;
4577 for (i = 0; i < panel->dir.len; i++)
4578 if (panel->dir.list[i].f.marked)
4580 /* do_file_mark will return immediately if newmark == oldmark.
4581 So we have to first unmark it to get panel's summary information
4582 updated. (Norbert) */
4583 panel->dir.list[i].f.marked = 0;
4584 do_file_mark (panel, i, 1);
4588 /* --------------------------------------------------------------------------------------------- */
4589 /** This routine marks a file or a directory */
4591 void
4592 do_file_mark (WPanel * panel, int idx, int mark)
4594 if (panel->dir.list[idx].f.marked == mark)
4595 return;
4597 /* Only '..' can't be marked, '.' isn't visible */
4598 if (DIR_IS_DOTDOT (panel->dir.list[idx].fname))
4599 return;
4601 file_mark (panel, idx, mark);
4602 if (panel->dir.list[idx].f.marked)
4604 panel->marked++;
4606 if (S_ISDIR (panel->dir.list[idx].st.st_mode))
4608 if (panel->dir.list[idx].f.dir_size_computed)
4609 panel->total += (uintmax_t) panel->dir.list[idx].st.st_size;
4610 panel->dirs_marked++;
4612 else
4613 panel->total += (uintmax_t) panel->dir.list[idx].st.st_size;
4615 set_colors (panel);
4617 else
4619 if (S_ISDIR (panel->dir.list[idx].st.st_mode))
4621 if (panel->dir.list[idx].f.dir_size_computed)
4622 panel->total -= (uintmax_t) panel->dir.list[idx].st.st_size;
4623 panel->dirs_marked--;
4625 else
4626 panel->total -= (uintmax_t) panel->dir.list[idx].st.st_size;
4628 panel->marked--;
4632 /* --------------------------------------------------------------------------------------------- */
4634 * Changes the current directory of the panel.
4635 * Record change in the directory history.
4637 gboolean
4638 do_panel_cd (WPanel * panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type)
4640 gboolean r;
4642 r = _do_panel_cd (panel, new_dir_vpath, cd_type);
4643 if (r)
4644 directory_history_add (panel, panel->cwd_vpath);
4645 return r;
4648 /* --------------------------------------------------------------------------------------------- */
4650 void
4651 file_mark (WPanel * panel, int lc_index, int val)
4653 if (panel->dir.list[lc_index].f.marked != val)
4655 panel->dir.list[lc_index].f.marked = val;
4656 panel->dirty = 1;
4660 /* --------------------------------------------------------------------------------------------- */
4662 void
4663 panel_re_sort (WPanel * panel)
4665 char *filename;
4666 int i;
4668 if (panel == NULL)
4669 return;
4671 filename = g_strdup (selection (panel)->fname);
4672 unselect_item (panel);
4673 dir_list_sort (&panel->dir, panel->sort_field->sort_routine, &panel->sort_info);
4674 panel->selected = -1;
4676 for (i = panel->dir.len; i != 0; i--)
4677 if (strcmp (panel->dir.list[i - 1].fname, filename) == 0)
4679 panel->selected = i - 1;
4680 break;
4683 g_free (filename);
4684 panel->top_file = panel->selected - panel_items (panel) / 2;
4685 select_item (panel);
4686 panel->dirty = 1;
4689 /* --------------------------------------------------------------------------------------------- */
4691 void
4692 panel_set_sort_order (WPanel * panel, const panel_field_t * sort_order)
4694 if (sort_order == NULL)
4695 return;
4697 panel->sort_field = sort_order;
4699 /* The directory is already sorted, we have to load the unsorted stuff */
4700 if (sort_order->sort_routine == (GCompareFunc) unsorted)
4702 char *current_file;
4704 current_file = g_strdup (panel->dir.list[panel->selected].fname);
4705 panel_reload (panel);
4706 try_to_select (panel, current_file);
4707 g_free (current_file);
4709 panel_re_sort (panel);
4712 /* --------------------------------------------------------------------------------------------- */
4714 #ifdef HAVE_CHARSET
4717 * Change panel encoding.
4718 * @param panel WPanel object
4721 void
4722 panel_change_encoding (WPanel * panel)
4724 const char *encoding = NULL;
4725 char *errmsg;
4726 int r;
4728 r = select_charset (-1, -1, panel->codepage, FALSE);
4730 if (r == SELECT_CHARSET_CANCEL)
4731 return; /* Cancel */
4733 panel->codepage = r;
4735 if (panel->codepage == SELECT_CHARSET_NO_TRANSLATE)
4737 /* No translation */
4738 vfs_path_t *cd_path_vpath;
4740 g_free (init_translation_table (mc_global.display_codepage, mc_global.display_codepage));
4741 cd_path_vpath = remove_encoding_from_path (panel->cwd_vpath);
4742 do_panel_cd (panel, cd_path_vpath, cd_parse_command);
4743 show_dir (panel);
4744 vfs_path_free (cd_path_vpath);
4745 return;
4748 errmsg = init_translation_table (panel->codepage, mc_global.display_codepage);
4749 if (errmsg != NULL)
4751 message (D_ERROR, MSG_ERROR, "%s", errmsg);
4752 g_free (errmsg);
4753 return;
4756 encoding = get_codepage_id (panel->codepage);
4757 if (encoding != NULL)
4759 vfs_path_change_encoding (panel->cwd_vpath, encoding);
4761 if (!do_panel_cd (panel, panel->cwd_vpath, cd_parse_command))
4762 message (D_ERROR, MSG_ERROR, _("Cannot chdir to \"%s\""),
4763 vfs_path_as_str (panel->cwd_vpath));
4767 /* --------------------------------------------------------------------------------------------- */
4770 * Remove encode info from last path element.
4773 vfs_path_t *
4774 remove_encoding_from_path (const vfs_path_t * vpath)
4776 vfs_path_t *ret_vpath;
4777 GString *tmp_conv;
4778 int indx;
4780 ret_vpath = vfs_path_new ();
4782 tmp_conv = g_string_new ("");
4784 for (indx = 0; indx < vfs_path_elements_count (vpath); indx++)
4786 GIConv converter;
4787 vfs_path_element_t *path_element;
4789 path_element = vfs_path_element_clone (vfs_path_get_by_index (vpath, indx));
4791 if (path_element->encoding == NULL)
4793 vfs_path_add_element (ret_vpath, path_element);
4794 continue;
4797 converter = str_crt_conv_to (path_element->encoding);
4798 if (converter == INVALID_CONV)
4800 vfs_path_add_element (ret_vpath, path_element);
4801 continue;
4804 MC_PTR_FREE (path_element->encoding);
4806 str_vfs_convert_from (converter, path_element->path, tmp_conv);
4808 g_free (path_element->path);
4809 path_element->path = g_strndup (tmp_conv->str, tmp_conv->len);
4811 g_string_set_size (tmp_conv, 0);
4813 str_close_conv (converter);
4814 str_close_conv (path_element->dir.converter);
4815 path_element->dir.converter = INVALID_CONV;
4816 vfs_path_add_element (ret_vpath, path_element);
4818 g_string_free (tmp_conv, TRUE);
4819 return ret_vpath;
4821 #endif /* HAVE_CHARSET */
4823 /* --------------------------------------------------------------------------------------------- */
4826 * This routine reloads the directory in both panels. It tries to
4827 * select current_file in current_panel and other_file in other_panel.
4828 * If current_file == -1 then it automatically sets current_file and
4829 * other_file to the currently selected files in the panels.
4831 * If flags has the UP_ONLY_CURRENT bit toggled on, then it
4832 * will not reload the other panel.
4834 * @param flags for reload panel
4835 * @param current_file name of the current file
4838 void
4839 update_panels (panel_update_flags_t flags, const char *current_file)
4841 WPanel *panel;
4843 /* first, update other panel... */
4844 if ((flags & UP_ONLY_CURRENT) == 0)
4845 update_one_panel (get_other_index (), flags, UP_KEEPSEL);
4846 /* ...then current one */
4847 update_one_panel (get_current_index (), flags, current_file);
4849 if (get_current_type () == view_listing)
4850 panel = PANEL (get_panel_widget (get_current_index ()));
4851 else
4852 panel = PANEL (get_panel_widget (get_other_index ()));
4854 if (!panel->is_panelized)
4855 (void) mc_chdir (panel->cwd_vpath);
4858 /* --------------------------------------------------------------------------------------------- */
4860 gsize
4861 panel_get_num_of_sortable_fields (void)
4863 gsize ret = 0, lc_index;
4865 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4866 if (panel_fields[lc_index].is_user_choice)
4867 ret++;
4868 return ret;
4871 /* --------------------------------------------------------------------------------------------- */
4873 char **
4874 panel_get_sortable_fields (gsize * array_size)
4876 char **ret;
4877 gsize lc_index, i;
4879 lc_index = panel_get_num_of_sortable_fields ();
4881 ret = g_try_new0 (char *, lc_index + 1);
4882 if (ret == NULL)
4883 return NULL;
4885 if (array_size != NULL)
4886 *array_size = lc_index;
4888 lc_index = 0;
4890 for (i = 0; panel_fields[i].id != NULL; i++)
4891 if (panel_fields[i].is_user_choice)
4892 ret[lc_index++] = g_strdup (_(panel_fields[i].title_hotkey));
4894 return ret;
4897 /* --------------------------------------------------------------------------------------------- */
4899 const panel_field_t *
4900 panel_get_field_by_id (const char *name)
4902 gsize lc_index;
4904 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4905 if (panel_fields[lc_index].id != NULL && strcmp (name, panel_fields[lc_index].id) == 0)
4906 return &panel_fields[lc_index];
4908 return NULL;
4911 /* --------------------------------------------------------------------------------------------- */
4913 const panel_field_t *
4914 panel_get_field_by_title_hotkey (const char *name)
4916 gsize lc_index;
4918 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4919 if (panel_fields[lc_index].title_hotkey != NULL &&
4920 strcmp (name, _(panel_fields[lc_index].title_hotkey)) == 0)
4921 return &panel_fields[lc_index];
4923 return NULL;
4926 /* --------------------------------------------------------------------------------------------- */
4928 const panel_field_t *
4929 panel_get_field_by_title (const char *name)
4931 gsize lc_index;
4933 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4935 const char *title;
4937 title = panel_get_title_without_hotkey (panel_fields[lc_index].title_hotkey);
4938 if (strcmp (title, name) == 0)
4939 return &panel_fields[lc_index];
4942 return NULL;
4945 /* --------------------------------------------------------------------------------------------- */
4947 gsize
4948 panel_get_num_of_user_possible_fields (void)
4950 gsize ret = 0, lc_index;
4952 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4953 if (panel_fields[lc_index].use_in_user_format)
4954 ret++;
4956 return ret;
4959 /* --------------------------------------------------------------------------------------------- */
4961 char **
4962 panel_get_user_possible_fields (gsize * array_size)
4964 char **ret;
4965 gsize lc_index, i;
4967 lc_index = panel_get_num_of_user_possible_fields ();
4969 ret = g_try_new0 (char *, lc_index + 1);
4970 if (ret == NULL)
4971 return NULL;
4973 if (array_size != NULL)
4974 *array_size = lc_index;
4976 lc_index = 0;
4978 for (i = 0; panel_fields[i].id != NULL; i++)
4979 if (panel_fields[i].use_in_user_format)
4980 ret[lc_index++] = g_strdup (_(panel_fields[i].title_hotkey));
4982 return ret;
4985 /* --------------------------------------------------------------------------------------------- */
4987 void
4988 panel_init (void)
4990 panel_sort_up_sign = mc_skin_get ("widget-common", "sort-sign-up", "'");
4991 panel_sort_down_sign = mc_skin_get ("widget-common", "sort-sign-down", ".");
4993 panel_hiddenfiles_sign_show = mc_skin_get ("widget-panel", "hiddenfiles-sign-show", ".");
4994 panel_hiddenfiles_sign_hide = mc_skin_get ("widget-panel", "hiddenfiles-sign-hide", ".");
4995 panel_history_prev_item_sign = mc_skin_get ("widget-panel", "history-prev-item-sign", "<");
4996 panel_history_next_item_sign = mc_skin_get ("widget-panel", "history-next-item-sign", ">");
4997 panel_history_show_list_sign = mc_skin_get ("widget-panel", "history-show-list-sign", "^");
4998 panel_filename_scroll_left_char =
4999 mc_skin_get ("widget-panel", "filename-scroll-left-char", "{");
5000 panel_filename_scroll_right_char =
5001 mc_skin_get ("widget-panel", "filename-scroll-right-char", "}");
5003 mc_event_add (MCEVENT_GROUP_FILEMANAGER, "update_panels", event_update_panels, NULL, NULL);
5004 mc_event_add (MCEVENT_GROUP_FILEMANAGER, "panel_save_current_file_to_clip_file",
5005 panel_save_current_file_to_clip_file, NULL, NULL);
5008 /* --------------------------------------------------------------------------------------------- */
5010 void
5011 panel_deinit (void)
5013 g_free (panel_sort_up_sign);
5014 g_free (panel_sort_down_sign);
5016 g_free (panel_hiddenfiles_sign_show);
5017 g_free (panel_hiddenfiles_sign_hide);
5018 g_free (panel_history_prev_item_sign);
5019 g_free (panel_history_next_item_sign);
5020 g_free (panel_history_show_list_sign);
5021 g_free (panel_filename_scroll_left_char);
5022 g_free (panel_filename_scroll_right_char);
5025 /* --------------------------------------------------------------------------------------------- */
5027 gboolean
5028 do_cd (const vfs_path_t * new_dir_vpath, enum cd_enum exact)
5030 gboolean res;
5031 const vfs_path_t *_new_dir_vpath = new_dir_vpath;
5033 if (current_panel->is_panelized)
5035 size_t new_vpath_len;
5037 new_vpath_len = vfs_path_len (new_dir_vpath);
5038 if (vfs_path_equal_len (new_dir_vpath, panelized_panel.root_vpath, new_vpath_len))
5039 _new_dir_vpath = panelized_panel.root_vpath;
5042 res = do_panel_cd (current_panel, _new_dir_vpath, exact);
5044 #ifdef HAVE_CHARSET
5045 if (res)
5047 const vfs_path_element_t *path_element;
5049 path_element = vfs_path_get_by_index (current_panel->cwd_vpath, -1);
5050 if (path_element->encoding != NULL)
5051 current_panel->codepage = get_codepage_index (path_element->encoding);
5052 else
5053 current_panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
5055 #endif /* HAVE_CHARSET */
5057 return res;
5060 /* --------------------------------------------------------------------------------------------- */