Remove min() and max() macros. Use MIN() and MAX() macros from GLib.
[midnight-commander.git] / src / filemanager / panel.c
blobcfffa5c1a7de8889bdd32fdd1b9bbe6fe1a83569
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 select_item (panel);
2108 /* --------------------------------------------------------------------------------------------- */
2110 static void
2111 move_up (WPanel * panel)
2113 if (panel->selected == 0)
2114 return;
2116 unselect_item (panel);
2117 panel->selected--;
2119 if (panels_options.scroll_pages && panel->selected < panel->top_file)
2121 /* Scroll window half screen */
2122 panel->top_file -= panel_items (panel) / 2;
2123 if (panel->top_file < 0)
2124 panel->top_file = 0;
2125 paint_dir (panel);
2127 select_item (panel);
2130 /* --------------------------------------------------------------------------------------------- */
2131 /** Changes the selection by lines (may be negative) */
2133 static void
2134 move_selection (WPanel * panel, int lines)
2136 int new_pos;
2137 gboolean adjust = FALSE;
2139 new_pos = panel->selected + lines;
2140 if (new_pos >= panel->dir.len)
2141 new_pos = panel->dir.len - 1;
2143 if (new_pos < 0)
2144 new_pos = 0;
2146 unselect_item (panel);
2147 panel->selected = new_pos;
2149 if (panel->selected - panel->top_file >= panel_items (panel))
2151 panel->top_file += lines;
2152 adjust = TRUE;
2155 if (panel->selected - panel->top_file < 0)
2157 panel->top_file += lines;
2158 adjust = TRUE;
2161 if (adjust)
2163 if (panel->top_file > panel->selected)
2164 panel->top_file = panel->selected;
2165 if (panel->top_file < 0)
2166 panel->top_file = 0;
2167 paint_dir (panel);
2169 select_item (panel);
2172 /* --------------------------------------------------------------------------------------------- */
2174 static cb_ret_t
2175 move_left (WPanel * panel)
2177 if (panel->list_cols > 1)
2179 move_selection (panel, -panel_lines (panel));
2180 return MSG_HANDLED;
2183 return maybe_cd (TRUE); /* cd .. */
2186 /* --------------------------------------------------------------------------------------------- */
2188 static cb_ret_t
2189 move_right (WPanel * panel)
2191 if (panel->list_cols > 1)
2193 move_selection (panel, panel_lines (panel));
2194 return MSG_HANDLED;
2197 return maybe_cd (FALSE); /* cd (selection) */
2200 /* --------------------------------------------------------------------------------------------- */
2202 static void
2203 prev_page (WPanel * panel)
2205 int items;
2207 if (!panel->selected && !panel->top_file)
2208 return;
2210 unselect_item (panel);
2211 items = panel_items (panel);
2212 if (panel->top_file < items)
2213 items = panel->top_file;
2214 if (items == 0)
2215 panel->selected = 0;
2216 else
2217 panel->selected -= items;
2218 panel->top_file -= items;
2220 select_item (panel);
2221 paint_dir (panel);
2224 /* --------------------------------------------------------------------------------------------- */
2226 static void
2227 goto_parent_dir (WPanel * panel)
2229 if (!panel->is_panelized)
2231 vfs_path_t *up_dir;
2233 up_dir = vfs_path_from_str ("..");
2234 do_cd (up_dir, cd_exact);
2235 vfs_path_free (up_dir);
2237 else
2239 char *fname = panel->dir.list[panel->selected].fname;
2240 const char *bname;
2241 vfs_path_t *dname_vpath;
2243 if (g_path_is_absolute (fname))
2244 fname = g_strdup (fname);
2245 else
2246 fname =
2247 mc_build_filename (vfs_path_as_str (panelized_panel.root_vpath), fname,
2248 (char *) NULL);
2250 bname = x_basename (fname);
2252 if (bname == fname)
2253 dname_vpath = vfs_path_from_str (".");
2254 else
2256 char *dname;
2258 dname = g_strndup (fname, bname - fname);
2259 dname_vpath = vfs_path_from_str (dname);
2260 g_free (dname);
2263 do_cd (dname_vpath, cd_exact);
2264 try_to_select (panel, bname);
2266 vfs_path_free (dname_vpath);
2267 g_free (fname);
2271 /* --------------------------------------------------------------------------------------------- */
2273 static void
2274 next_page (WPanel * panel)
2276 int items;
2278 if (panel->selected == panel->dir.len - 1)
2279 return;
2281 unselect_item (panel);
2282 items = panel_items (panel);
2283 if (panel->top_file > panel->dir.len - 2 * items)
2284 items = panel->dir.len - items - panel->top_file;
2285 if (panel->top_file + items < 0)
2286 items = -panel->top_file;
2287 if (items == 0)
2288 panel->selected = panel->dir.len - 1;
2289 else
2290 panel->selected += items;
2291 panel->top_file += items;
2293 select_item (panel);
2294 paint_dir (panel);
2297 /* --------------------------------------------------------------------------------------------- */
2299 static void
2300 goto_child_dir (WPanel * panel)
2302 if ((S_ISDIR (selection (panel)->st.st_mode) || link_isdir (selection (panel))))
2304 vfs_path_t *vpath;
2306 vpath = vfs_path_from_str (selection (panel)->fname);
2307 do_cd (vpath, cd_exact);
2308 vfs_path_free (vpath);
2312 /* --------------------------------------------------------------------------------------------- */
2314 static void
2315 goto_top_file (WPanel * panel)
2317 unselect_item (panel);
2318 panel->selected = panel->top_file;
2319 select_item (panel);
2322 /* --------------------------------------------------------------------------------------------- */
2324 static void
2325 goto_middle_file (WPanel * panel)
2327 unselect_item (panel);
2328 panel->selected = panel->top_file + panel_items (panel) / 2;
2329 select_item (panel);
2332 /* --------------------------------------------------------------------------------------------- */
2334 static void
2335 goto_bottom_file (WPanel * panel)
2337 unselect_item (panel);
2338 panel->selected = panel->top_file + panel_items (panel) - 1;
2339 select_item (panel);
2342 /* --------------------------------------------------------------------------------------------- */
2344 static void
2345 move_home (WPanel * panel)
2347 if (panel->selected == 0)
2348 return;
2350 unselect_item (panel);
2352 if (panels_options.torben_fj_mode)
2354 int middle_pos = panel->top_file + panel_items (panel) / 2;
2356 if (panel->selected > middle_pos)
2358 goto_middle_file (panel);
2359 return;
2361 if (panel->selected != panel->top_file)
2363 goto_top_file (panel);
2364 return;
2368 panel->top_file = 0;
2369 panel->selected = 0;
2371 paint_dir (panel);
2372 select_item (panel);
2375 /* --------------------------------------------------------------------------------------------- */
2377 static void
2378 move_end (WPanel * panel)
2380 if (panel->selected == panel->dir.len - 1)
2381 return;
2383 unselect_item (panel);
2385 if (panels_options.torben_fj_mode)
2387 int items, middle_pos;
2389 items = panel_items (panel);
2390 middle_pos = panel->top_file + items / 2;
2392 if (panel->selected < middle_pos)
2394 goto_middle_file (panel);
2395 return;
2397 if (panel->selected != panel->top_file + items - 1)
2399 goto_bottom_file (panel);
2400 return;
2404 panel->selected = panel->dir.len - 1;
2405 paint_dir (panel);
2406 select_item (panel);
2409 /* --------------------------------------------------------------------------------------------- */
2411 static void
2412 do_mark_file (WPanel * panel, mark_act_t do_move)
2414 do_file_mark (panel, panel->selected, selection (panel)->f.marked ? 0 : 1);
2415 if ((panels_options.mark_moves_down && do_move == MARK_DOWN) || do_move == MARK_FORCE_DOWN)
2416 move_down (panel);
2417 else if (do_move == MARK_FORCE_UP)
2418 move_up (panel);
2421 /* --------------------------------------------------------------------------------------------- */
2423 static inline void
2424 mark_file (WPanel * panel)
2426 do_mark_file (panel, MARK_DOWN);
2429 /* --------------------------------------------------------------------------------------------- */
2431 static inline void
2432 mark_file_up (WPanel * panel)
2434 do_mark_file (panel, MARK_FORCE_UP);
2437 /* --------------------------------------------------------------------------------------------- */
2439 static inline void
2440 mark_file_down (WPanel * panel)
2442 do_mark_file (panel, MARK_FORCE_DOWN);
2445 /* --------------------------------------------------------------------------------------------- */
2447 static void
2448 mark_file_right (WPanel * panel)
2450 int lines;
2452 if (state_mark < 0)
2453 state_mark = selection (panel)->f.marked ? 0 : 1;
2455 lines = panel_lines (panel);
2456 lines = MIN (lines, panel->dir.len - panel->selected - 1);
2457 for (; lines != 0; lines--)
2459 do_file_mark (panel, panel->selected, state_mark);
2460 move_down (panel);
2462 do_file_mark (panel, panel->selected, state_mark);
2465 /* --------------------------------------------------------------------------------------------- */
2467 static void
2468 mark_file_left (WPanel * panel)
2470 int lines;
2472 if (state_mark < 0)
2473 state_mark = selection (panel)->f.marked ? 0 : 1;
2475 lines = panel_lines (panel);
2476 lines = MIN (lines, panel->selected + 1);
2477 for (; lines != 0; lines--)
2479 do_file_mark (panel, panel->selected, state_mark);
2480 move_up (panel);
2482 do_file_mark (panel, panel->selected, state_mark);
2485 /* --------------------------------------------------------------------------------------------- */
2487 static void
2488 panel_select_unselect_files (WPanel * panel, const char *title, const char *history_name,
2489 gboolean do_select)
2491 int files_only = (panels_options.select_flags & SELECT_FILES_ONLY) != 0;
2492 int case_sens = (panels_options.select_flags & SELECT_MATCH_CASE) != 0;
2493 int shell_patterns = (panels_options.select_flags & SELECT_SHELL_PATTERNS) != 0;
2495 char *reg_exp;
2496 mc_search_t *search;
2497 int i;
2499 quick_widget_t quick_widgets[] = {
2500 /* *INDENT-OFF* */
2501 QUICK_INPUT (INPUT_LAST_TEXT, history_name, &reg_exp, NULL,
2502 FALSE, FALSE, INPUT_COMPLETE_FILENAMES),
2503 QUICK_START_COLUMNS,
2504 QUICK_CHECKBOX (N_("&Files only"), &files_only, NULL),
2505 QUICK_CHECKBOX (N_("&Using shell patterns"), &shell_patterns, NULL),
2506 QUICK_NEXT_COLUMN,
2507 QUICK_CHECKBOX (N_("&Case sensitive"), &case_sens, NULL),
2508 QUICK_STOP_COLUMNS,
2509 QUICK_END
2510 /* *INDENT-ON* */
2513 quick_dialog_t qdlg = {
2514 -1, -1, 50,
2515 title, "[Select/Unselect Files]",
2516 quick_widgets, NULL, NULL
2519 if (quick_dialog (&qdlg) == B_CANCEL)
2520 return;
2522 if (reg_exp == NULL || *reg_exp == '\0')
2524 g_free (reg_exp);
2525 return;
2528 search = mc_search_new (reg_exp, NULL);
2529 search->search_type = (shell_patterns != 0) ? MC_SEARCH_T_GLOB : MC_SEARCH_T_REGEX;
2530 search->is_entire_line = TRUE;
2531 search->is_case_sensitive = case_sens != 0;
2533 for (i = 0; i < panel->dir.len; i++)
2535 if (DIR_IS_DOTDOT (panel->dir.list[i].fname))
2536 continue;
2537 if (S_ISDIR (panel->dir.list[i].st.st_mode) && files_only != 0)
2538 continue;
2540 if (mc_search_run (search, panel->dir.list[i].fname, 0, panel->dir.list[i].fnamelen, NULL))
2541 do_file_mark (panel, i, do_select);
2544 mc_search_free (search);
2545 g_free (reg_exp);
2547 /* result flags */
2548 panels_options.select_flags = 0;
2549 if (case_sens != 0)
2550 panels_options.select_flags |= SELECT_MATCH_CASE;
2551 if (files_only != 0)
2552 panels_options.select_flags |= SELECT_FILES_ONLY;
2553 if (shell_patterns != 0)
2554 panels_options.select_flags |= SELECT_SHELL_PATTERNS;
2557 /* --------------------------------------------------------------------------------------------- */
2559 static void
2560 panel_select_files (WPanel * panel)
2562 panel_select_unselect_files (panel, _("Select"), ":select_cmd: Select ", TRUE);
2565 /* --------------------------------------------------------------------------------------------- */
2567 static void
2568 panel_unselect_files (WPanel * panel)
2570 panel_select_unselect_files (panel, _("Unselect"), ":unselect_cmd: Unselect ", FALSE);
2573 /* --------------------------------------------------------------------------------------------- */
2575 static void
2576 panel_select_invert_files (WPanel * panel)
2578 int i;
2580 for (i = 0; i < panel->dir.len; i++)
2582 file_entry_t *file = &panel->dir.list[i];
2584 if (!panels_options.reverse_files_only || !S_ISDIR (file->st.st_mode))
2585 do_file_mark (panel, i, !file->f.marked);
2589 /* --------------------------------------------------------------------------------------------- */
2590 /** Incremental search of a file name in the panel.
2591 * @param panel instance of WPanel structure
2592 * @param c_code key code
2595 static void
2596 do_search (WPanel * panel, int c_code)
2598 size_t l;
2599 int i, sel;
2600 gboolean wrapped = FALSE;
2601 char *act;
2602 mc_search_t *search;
2603 char *reg_exp, *esc_str;
2604 gboolean is_found = FALSE;
2606 l = strlen (panel->search_buffer);
2607 if (c_code == KEY_BACKSPACE)
2609 if (l != 0)
2611 act = panel->search_buffer + l;
2612 str_prev_noncomb_char (&act, panel->search_buffer);
2613 act[0] = '\0';
2615 panel->search_chpoint = 0;
2617 else
2619 if (c_code != 0 && (gsize) panel->search_chpoint < sizeof (panel->search_char))
2621 panel->search_char[panel->search_chpoint] = c_code;
2622 panel->search_chpoint++;
2625 if (panel->search_chpoint > 0)
2627 switch (str_is_valid_char (panel->search_char, panel->search_chpoint))
2629 case -2:
2630 return;
2631 case -1:
2632 panel->search_chpoint = 0;
2633 return;
2634 default:
2635 if (l + panel->search_chpoint < sizeof (panel->search_buffer))
2637 memcpy (panel->search_buffer + l, panel->search_char, panel->search_chpoint);
2638 l += panel->search_chpoint;
2639 *(panel->search_buffer + l) = '\0';
2640 panel->search_chpoint = 0;
2646 reg_exp = g_strdup_printf ("%s*", panel->search_buffer);
2647 esc_str = strutils_escape (reg_exp, -1, ",|\\{}[]", TRUE);
2648 search = mc_search_new (esc_str, NULL);
2649 search->search_type = MC_SEARCH_T_GLOB;
2650 search->is_entire_line = TRUE;
2652 switch (panels_options.qsearch_mode)
2654 case QSEARCH_CASE_SENSITIVE:
2655 search->is_case_sensitive = TRUE;
2656 break;
2657 case QSEARCH_CASE_INSENSITIVE:
2658 search->is_case_sensitive = FALSE;
2659 break;
2660 default:
2661 search->is_case_sensitive = panel->sort_info.case_sensitive;
2662 break;
2665 sel = panel->selected;
2667 for (i = panel->selected; !wrapped || i != panel->selected; i++)
2669 if (i >= panel->dir.len)
2671 i = 0;
2672 if (wrapped)
2673 break;
2674 wrapped = TRUE;
2676 if (mc_search_run (search, panel->dir.list[i].fname, 0, panel->dir.list[i].fnamelen, NULL))
2678 sel = i;
2679 is_found = TRUE;
2680 break;
2683 if (is_found)
2685 unselect_item (panel);
2686 panel->selected = sel;
2687 select_item (panel);
2688 widget_redraw (WIDGET (panel));
2690 else if (c_code != KEY_BACKSPACE)
2692 act = panel->search_buffer + l;
2693 str_prev_noncomb_char (&act, panel->search_buffer);
2694 act[0] = '\0';
2696 mc_search_free (search);
2697 g_free (reg_exp);
2698 g_free (esc_str);
2701 /* --------------------------------------------------------------------------------------------- */
2702 /** Start new search.
2703 * @param panel instance of WPanel structure
2706 static void
2707 start_search (WPanel * panel)
2709 if (panel->searching)
2711 if (panel->selected + 1 == panel->dir.len)
2712 panel->selected = 0;
2713 else
2714 move_down (panel);
2716 /* in case if there was no search string we need to recall
2717 previous string, with which we ended previous searching */
2718 if (panel->search_buffer[0] == '\0')
2719 g_strlcpy (panel->search_buffer, panel->prev_search_buffer,
2720 sizeof (panel->search_buffer));
2722 do_search (panel, 0);
2724 else
2726 panel->searching = TRUE;
2727 panel->search_buffer[0] = '\0';
2728 panel->search_char[0] = '\0';
2729 panel->search_chpoint = 0;
2730 display_mini_info (panel);
2731 mc_refresh ();
2735 /* --------------------------------------------------------------------------------------------- */
2737 static void
2738 stop_search (WPanel * panel)
2740 panel->searching = FALSE;
2742 /* if user had overrdied search string, we need to store it
2743 to the previous_search_buffer */
2744 if (panel->search_buffer[0] != '\0')
2745 g_strlcpy (panel->prev_search_buffer, panel->search_buffer,
2746 sizeof (panel->prev_search_buffer));
2748 display_mini_info (panel);
2751 /* --------------------------------------------------------------------------------------------- */
2752 /** Return TRUE if the Enter key has been processed, FALSE otherwise */
2754 static gboolean
2755 do_enter_on_file_entry (file_entry_t * fe)
2757 vfs_path_t *full_name_vpath;
2758 gboolean ok;
2761 * Directory or link to directory - change directory.
2762 * Try the same for the entries on which mc_lstat() has failed.
2764 if (S_ISDIR (fe->st.st_mode) || link_isdir (fe) || (fe->st.st_mode == 0))
2766 vfs_path_t *fname_vpath;
2768 fname_vpath = vfs_path_from_str (fe->fname);
2769 if (!do_cd (fname_vpath, cd_exact))
2770 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
2771 vfs_path_free (fname_vpath);
2772 return TRUE;
2775 full_name_vpath = vfs_path_append_new (current_panel->cwd_vpath, fe->fname, (char *) NULL);
2777 /* Try associated command */
2778 ok = regex_command (full_name_vpath, "Open") != 0;
2779 vfs_path_free (full_name_vpath);
2780 if (ok)
2781 return TRUE;
2783 /* Check if the file is executable */
2784 full_name_vpath = vfs_path_append_new (current_panel->cwd_vpath, fe->fname, (char *) NULL);
2785 ok = (is_exe (fe->st.st_mode) && if_link_is_exe (full_name_vpath, fe));
2786 vfs_path_free (full_name_vpath);
2787 if (!ok)
2788 return FALSE;
2790 if (confirm_execute)
2792 if (query_dialog
2793 (_("The Midnight Commander"),
2794 _("Do you really want to execute?"), D_NORMAL, 2, _("&Yes"), _("&No")) != 0)
2795 return TRUE;
2798 if (!vfs_current_is_local ())
2800 int ret;
2801 vfs_path_t *tmp_vpath;
2803 tmp_vpath = vfs_path_append_new (vfs_get_raw_current_dir (), fe->fname, (char *) NULL);
2804 ret = mc_setctl (tmp_vpath, VFS_SETCTL_RUN, NULL);
2805 vfs_path_free (tmp_vpath);
2806 /* We took action only if the dialog was shown or the execution
2807 * was successful */
2808 return confirm_execute || (ret == 0);
2812 char *tmp, *cmd;
2814 tmp = name_quote (fe->fname, FALSE);
2815 cmd = g_strconcat (".", PATH_SEP_STR, tmp, (char *) NULL);
2816 g_free (tmp);
2817 shell_execute (cmd, 0);
2818 g_free (cmd);
2821 #ifdef HAVE_CHARSET
2822 mc_global.source_codepage = default_source_codepage;
2823 #endif
2825 return TRUE;
2828 /* --------------------------------------------------------------------------------------------- */
2830 static inline gboolean
2831 do_enter (WPanel * panel)
2833 return do_enter_on_file_entry (selection (panel));
2836 /* --------------------------------------------------------------------------------------------- */
2838 static void
2839 chdir_other_panel (WPanel * panel)
2841 const file_entry_t *entry = &panel->dir.list[panel->selected];
2843 vfs_path_t *new_dir_vpath;
2844 char *sel_entry = NULL;
2846 if (get_other_type () != view_listing)
2847 set_display_type (get_other_index (), view_listing);
2849 if (S_ISDIR (entry->st.st_mode) || entry->f.link_to_dir)
2850 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, entry->fname, (char *) NULL);
2851 else
2853 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, "..", (char *) NULL);
2854 sel_entry = strrchr (vfs_path_get_last_path_str (panel->cwd_vpath), PATH_SEP);
2857 change_panel ();
2858 do_cd (new_dir_vpath, cd_exact);
2859 vfs_path_free (new_dir_vpath);
2861 if (sel_entry)
2862 try_to_select (current_panel, sel_entry);
2863 change_panel ();
2865 move_down (panel);
2868 /* --------------------------------------------------------------------------------------------- */
2870 * Make the current directory of the current panel also the current
2871 * directory of the other panel. Put the other panel to the listing
2872 * mode if needed. If the current panel is panelized, the other panel
2873 * doesn't become panelized.
2876 static void
2877 panel_sync_other (const WPanel * panel)
2879 if (get_other_type () != view_listing)
2880 set_display_type (get_other_index (), view_listing);
2882 do_panel_cd (other_panel, current_panel->cwd_vpath, cd_exact);
2884 /* try to select current filename on the other panel */
2885 if (!panel->is_panelized)
2886 try_to_select (other_panel, selection (panel)->fname);
2889 /* --------------------------------------------------------------------------------------------- */
2891 static void
2892 chdir_to_readlink (WPanel * panel)
2894 vfs_path_t *new_dir_vpath;
2895 char buffer[MC_MAXPATHLEN];
2896 int i;
2897 struct stat st;
2898 vfs_path_t *panel_fname_vpath;
2899 gboolean ok;
2901 if (get_other_type () != view_listing)
2902 return;
2904 if (!S_ISLNK (panel->dir.list[panel->selected].st.st_mode))
2905 return;
2907 i = readlink (selection (panel)->fname, buffer, MC_MAXPATHLEN - 1);
2908 if (i < 0)
2909 return;
2911 panel_fname_vpath = vfs_path_from_str (selection (panel)->fname);
2912 ok = (mc_stat (panel_fname_vpath, &st) >= 0);
2913 vfs_path_free (panel_fname_vpath);
2914 if (!ok)
2915 return;
2917 buffer[i] = 0;
2918 if (!S_ISDIR (st.st_mode))
2920 char *p;
2922 p = strrchr (buffer, PATH_SEP);
2923 if (p && !p[1])
2925 *p = 0;
2926 p = strrchr (buffer, PATH_SEP);
2928 if (!p)
2929 return;
2930 p[1] = 0;
2932 if (IS_PATH_SEP (*buffer))
2933 new_dir_vpath = vfs_path_from_str (buffer);
2934 else
2935 new_dir_vpath = vfs_path_append_new (panel->cwd_vpath, buffer, (char *) NULL);
2937 change_panel ();
2938 do_cd (new_dir_vpath, cd_exact);
2939 vfs_path_free (new_dir_vpath);
2940 change_panel ();
2942 move_down (panel);
2945 /* --------------------------------------------------------------------------------------------- */
2947 static gsize
2948 panel_get_format_field_count (WPanel * panel)
2950 format_e *format;
2951 gsize lc_index;
2953 for (lc_index = 0, format = panel->format; format != NULL; format = format->next, lc_index++)
2956 return lc_index;
2959 /* --------------------------------------------------------------------------------------------- */
2961 function return 0 if not found and REAL_INDEX+1 if found
2964 static gsize
2965 panel_get_format_field_index_by_name (WPanel * panel, const char *name)
2967 format_e *format;
2968 gsize lc_index;
2970 for (lc_index = 1, format = panel->format;
2971 format != NULL && strcmp (format->title, name) != 0; format = format->next, lc_index++)
2974 if (format == NULL)
2975 lc_index = 0;
2977 return lc_index;
2980 /* --------------------------------------------------------------------------------------------- */
2982 static format_e *
2983 panel_get_format_field_by_index (WPanel * panel, gsize lc_index)
2985 format_e *format;
2987 for (format = panel->format; format != NULL && lc_index != 0; format = format->next, lc_index--)
2990 return format;
2993 /* --------------------------------------------------------------------------------------------- */
2995 static const panel_field_t *
2996 panel_get_sortable_field_by_format (WPanel * panel, gsize lc_index)
2998 const panel_field_t *pfield;
2999 format_e *format;
3001 format = panel_get_format_field_by_index (panel, lc_index);
3002 if (format == NULL)
3003 return NULL;
3005 pfield = panel_get_field_by_title (format->title);
3006 if (pfield == NULL)
3007 return NULL;
3008 if (pfield->sort_routine == NULL)
3009 return NULL;
3010 return pfield;
3013 /* --------------------------------------------------------------------------------------------- */
3015 static void
3016 panel_toggle_sort_order_prev (WPanel * panel)
3018 gsize lc_index, i;
3019 const char *title;
3020 const panel_field_t *pfield = NULL;
3022 title = panel_get_title_without_hotkey (panel->sort_field->title_hotkey);
3023 lc_index = panel_get_format_field_index_by_name (panel, title);
3025 if (lc_index > 1)
3027 /* search for prev sortable column in panel format */
3028 for (i = lc_index - 1;
3029 i != 0 && (pfield = panel_get_sortable_field_by_format (panel, i - 1)) == NULL; i--)
3033 if (pfield == NULL)
3035 /* Sortable field not found. Try to search in each array */
3036 for (i = panel_get_format_field_count (panel);
3037 i != 0 && (pfield = panel_get_sortable_field_by_format (panel, i - 1)) == NULL; i--)
3041 if (pfield != NULL)
3043 panel->sort_field = pfield;
3044 panel_set_sort_order (panel, pfield);
3048 /* --------------------------------------------------------------------------------------------- */
3050 static void
3051 panel_toggle_sort_order_next (WPanel * panel)
3053 gsize lc_index, i;
3054 const panel_field_t *pfield = NULL;
3055 gsize format_field_count;
3056 const char *title;
3058 format_field_count = panel_get_format_field_count (panel);
3059 title = panel_get_title_without_hotkey (panel->sort_field->title_hotkey);
3060 lc_index = panel_get_format_field_index_by_name (panel, title);
3062 if (lc_index != 0 && lc_index != format_field_count)
3064 /* search for prev sortable column in panel format */
3065 for (i = lc_index;
3066 i != format_field_count
3067 && (pfield = panel_get_sortable_field_by_format (panel, i)) == NULL; i++)
3071 if (pfield == NULL)
3073 /* Sortable field not found. Try to search in each array */
3074 for (i = 0;
3075 i != format_field_count
3076 && (pfield = panel_get_sortable_field_by_format (panel, i)) == NULL; i++)
3080 if (pfield != NULL)
3082 panel->sort_field = pfield;
3083 panel_set_sort_order (panel, pfield);
3087 /* --------------------------------------------------------------------------------------------- */
3089 static void
3090 panel_select_sort_order (WPanel * panel)
3092 const panel_field_t *sort_order;
3094 sort_order = sort_box (&panel->sort_info, panel->sort_field);
3095 if (sort_order != NULL)
3097 panel->sort_field = sort_order;
3098 panel_set_sort_order (panel, sort_order);
3102 /* --------------------------------------------------------------------------------------------- */
3105 * panel_content_scroll_left:
3106 * @param panel the pointer to the panel on which we operate
3108 * scroll long filename to the left (decrement scroll pointer)
3112 static void
3113 panel_content_scroll_left (WPanel * panel)
3115 if (panel->content_shift > -1)
3117 if (panel->content_shift > panel->max_shift)
3118 panel->content_shift = panel->max_shift;
3120 panel->content_shift--;
3121 show_dir (panel);
3122 paint_dir (panel);
3126 /* --------------------------------------------------------------------------------------------- */
3129 * panel_content_scroll_right:
3130 * @param panel the pointer to the panel on which we operate
3132 * scroll long filename to the right (increment scroll pointer)
3136 static void
3137 panel_content_scroll_right (WPanel * panel)
3139 if (panel->content_shift < 0 || panel->content_shift < panel->max_shift)
3141 panel->content_shift++;
3142 show_dir (panel);
3143 paint_dir (panel);
3147 /* --------------------------------------------------------------------------------------------- */
3149 static void
3150 panel_set_sort_type_by_id (WPanel * panel, const char *name)
3152 if (strcmp (panel->sort_field->id, name) != 0)
3154 const panel_field_t *sort_order;
3156 sort_order = panel_get_field_by_id (name);
3157 if (sort_order == NULL)
3158 return;
3160 panel->sort_field = sort_order;
3162 else
3163 panel->sort_info.reverse = !panel->sort_info.reverse;
3165 panel_set_sort_order (panel, panel->sort_field);
3168 /* --------------------------------------------------------------------------------------------- */
3170 * If we moved to the parent directory move the selection pointer to
3171 * the old directory name; If we leave VFS dir, remove FS specificator.
3173 * You do _NOT_ want to add any vfs aware code here. <pavel@ucw.cz>
3176 static const char *
3177 get_parent_dir_name (const vfs_path_t * cwd_vpath, const vfs_path_t * lwd_vpath)
3179 size_t llen, clen;
3180 const char *p, *cwd, *lwd;
3182 llen = vfs_path_len (lwd_vpath);
3183 clen = vfs_path_len (cwd_vpath);
3185 if (llen <= clen)
3186 return NULL;
3188 cwd = vfs_path_as_str (cwd_vpath);
3189 lwd = vfs_path_as_str (lwd_vpath);
3191 p = g_strrstr (lwd, VFS_PATH_URL_DELIMITER);
3193 if (p == NULL)
3195 p = strrchr (lwd, PATH_SEP);
3197 if ((p != NULL)
3198 && (strncmp (cwd, lwd, (size_t) (p - lwd)) == 0)
3199 && (clen == (size_t) (p - lwd) || (p == lwd && IS_PATH_SEP (cwd[0]) && cwd[1] == '\0')))
3200 return (p + 1);
3202 return NULL;
3205 /* skip VFS prefix */
3206 while (--p > lwd && !IS_PATH_SEP (*p))
3208 /* get last component */
3209 while (--p > lwd && !IS_PATH_SEP (*p))
3212 /* return last component */
3213 return (p != lwd || IS_PATH_SEP (*p)) ? p + 1 : p;
3216 /* --------------------------------------------------------------------------------------------- */
3217 /** Wrapper for do_subshell_chdir, check for availability of subshell */
3219 static void
3220 subshell_chdir (const vfs_path_t * vpath)
3222 #ifdef ENABLE_SUBSHELL
3223 if (mc_global.tty.use_subshell && vfs_current_is_local ())
3224 do_subshell_chdir (vpath, FALSE);
3225 #else /* ENABLE_SUBSHELL */
3226 (void) vpath;
3227 #endif /* ENABLE_SUBSHELL */
3230 /* --------------------------------------------------------------------------------------------- */
3232 * Changes the current directory of the panel.
3233 * Don't record change in the directory history.
3236 static gboolean
3237 _do_panel_cd (WPanel * panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type)
3239 vfs_path_t *olddir_vpath;
3241 /* Convert *new_path to a suitable pathname, handle ~user */
3242 if (cd_type == cd_parse_command)
3244 const vfs_path_element_t *element;
3246 element = vfs_path_get_by_index (new_dir_vpath, 0);
3247 if (strcmp (element->path, "-") == 0)
3248 new_dir_vpath = panel->lwd_vpath;
3251 if (mc_chdir (new_dir_vpath) == -1)
3252 return FALSE;
3254 /* Success: save previous directory, shutdown status of previous dir */
3255 olddir_vpath = vfs_path_clone (panel->cwd_vpath);
3256 panel_set_lwd (panel, panel->cwd_vpath);
3257 input_free_completions (cmdline);
3259 vfs_path_free (panel->cwd_vpath);
3260 vfs_setup_cwd ();
3261 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
3263 vfs_release_path (olddir_vpath);
3265 subshell_chdir (panel->cwd_vpath);
3267 /* Reload current panel */
3268 panel_clean_dir (panel);
3270 dir_list_load (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
3271 &panel->sort_info, panel->filter);
3272 try_to_select (panel, get_parent_dir_name (panel->cwd_vpath, olddir_vpath));
3274 load_hint (FALSE);
3275 panel->dirty = 1;
3276 update_xterm_title_path ();
3278 vfs_path_free (olddir_vpath);
3280 return TRUE;
3283 /* --------------------------------------------------------------------------------------------- */
3285 static void
3286 directory_history_next (WPanel * panel)
3288 gboolean ok;
3292 GList *next;
3294 ok = TRUE;
3295 next = g_list_next (panel->dir_history_current);
3296 if (next != NULL)
3298 vfs_path_t *data_vpath;
3300 data_vpath = vfs_path_from_str ((char *) next->data);
3301 ok = _do_panel_cd (panel, data_vpath, cd_exact);
3302 vfs_path_free (data_vpath);
3303 panel->dir_history_current = next;
3305 /* skip directories that present in history but absent in file system */
3307 while (!ok);
3310 /* --------------------------------------------------------------------------------------------- */
3312 static void
3313 directory_history_prev (WPanel * panel)
3315 gboolean ok;
3319 GList *prev;
3321 ok = TRUE;
3322 prev = g_list_previous (panel->dir_history_current);
3323 if (prev != NULL)
3325 vfs_path_t *data_vpath;
3327 data_vpath = vfs_path_from_str ((char *) prev->data);
3328 ok = _do_panel_cd (panel, data_vpath, cd_exact);
3329 vfs_path_free (data_vpath);
3330 panel->dir_history_current = prev;
3332 /* skip directories that present in history but absent in file system */
3334 while (!ok);
3337 /* --------------------------------------------------------------------------------------------- */
3339 static void
3340 directory_history_list (WPanel * panel)
3342 char *s;
3343 gboolean ok = FALSE;
3344 size_t pos;
3346 pos = g_list_position (panel->dir_history_current, panel->dir_history);
3348 s = history_show (&panel->dir_history, WIDGET (panel), pos);
3349 if (s != NULL)
3351 vfs_path_t *s_vpath;
3353 s_vpath = vfs_path_from_str (s);
3354 ok = _do_panel_cd (panel, s_vpath, cd_exact);
3355 if (ok)
3356 directory_history_add (panel, panel->cwd_vpath);
3357 else
3358 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
3359 vfs_path_free (s_vpath);
3360 g_free (s);
3363 if (!ok)
3365 /* Since history is fully modified in history_show(), panel->dir_history actually
3366 * points to the invalid place. Try restore current postition here. */
3368 size_t i;
3370 panel->dir_history_current = panel->dir_history;
3372 for (i = 0; i <= pos; i++)
3374 GList *prev;
3376 prev = g_list_previous (panel->dir_history_current);
3377 if (prev == NULL)
3378 break;
3380 panel->dir_history_current = prev;
3385 /* --------------------------------------------------------------------------------------------- */
3387 static cb_ret_t
3388 panel_execute_cmd (WPanel * panel, long command)
3390 int res = MSG_HANDLED;
3392 if (command != CK_Search)
3393 stop_search (panel);
3395 switch (command)
3397 case CK_Up:
3398 case CK_Down:
3399 case CK_Left:
3400 case CK_Right:
3401 case CK_Bottom:
3402 case CK_Top:
3403 case CK_PageDown:
3404 case CK_PageUp:
3405 /* reset state of marks flag */
3406 state_mark = -1;
3407 break;
3408 default:
3409 break;
3412 switch (command)
3414 case CK_PanelOtherCd:
3415 chdir_other_panel (panel);
3416 break;
3417 case CK_PanelOtherCdLink:
3418 chdir_to_readlink (panel);
3419 break;
3420 case CK_CopySingle:
3421 copy_cmd_local ();
3422 break;
3423 case CK_DeleteSingle:
3424 delete_cmd_local ();
3425 break;
3426 case CK_Enter:
3427 do_enter (panel);
3428 break;
3429 case CK_ViewRaw:
3430 view_raw_cmd ();
3431 break;
3432 case CK_EditNew:
3433 edit_cmd_new ();
3434 break;
3435 case CK_MoveSingle:
3436 rename_cmd_local ();
3437 break;
3438 case CK_SelectInvert:
3439 panel_select_invert_files (panel);
3440 break;
3441 case CK_Select:
3442 panel_select_files (panel);
3443 break;
3444 case CK_SelectExt:
3445 panel_select_ext_cmd ();
3446 break;
3447 case CK_Unselect:
3448 panel_unselect_files (panel);
3449 break;
3450 case CK_PageDown:
3451 next_page (panel);
3452 break;
3453 case CK_PageUp:
3454 prev_page (panel);
3455 break;
3456 case CK_CdChild:
3457 goto_child_dir (panel);
3458 break;
3459 case CK_CdParent:
3460 goto_parent_dir (panel);
3461 break;
3462 case CK_History:
3463 directory_history_list (panel);
3464 break;
3465 case CK_HistoryNext:
3466 directory_history_next (panel);
3467 break;
3468 case CK_HistoryPrev:
3469 directory_history_prev (panel);
3470 break;
3471 case CK_BottomOnScreen:
3472 goto_bottom_file (panel);
3473 break;
3474 case CK_MiddleOnScreen:
3475 goto_middle_file (panel);
3476 break;
3477 case CK_TopOnScreen:
3478 goto_top_file (panel);
3479 break;
3480 case CK_Mark:
3481 mark_file (panel);
3482 break;
3483 case CK_MarkUp:
3484 mark_file_up (panel);
3485 break;
3486 case CK_MarkDown:
3487 mark_file_down (panel);
3488 break;
3489 case CK_MarkLeft:
3490 mark_file_left (panel);
3491 break;
3492 case CK_MarkRight:
3493 mark_file_right (panel);
3494 break;
3495 case CK_CdParentSmart:
3496 res = force_maybe_cd ();
3497 break;
3498 case CK_Up:
3499 move_up (panel);
3500 break;
3501 case CK_Down:
3502 move_down (panel);
3503 break;
3504 case CK_Left:
3505 res = move_left (panel);
3506 break;
3507 case CK_Right:
3508 res = move_right (panel);
3509 break;
3510 case CK_Bottom:
3511 move_end (panel);
3512 break;
3513 case CK_Top:
3514 move_home (panel);
3515 break;
3516 #ifdef HAVE_CHARSET
3517 case CK_SelectCodepage:
3518 panel_change_encoding (panel);
3519 break;
3520 #endif
3521 case CK_ScrollLeft:
3522 panel_content_scroll_left (panel);
3523 break;
3524 case CK_ScrollRight:
3525 panel_content_scroll_right (panel);
3526 break;
3527 case CK_Search:
3528 start_search (panel);
3529 break;
3530 case CK_SearchStop:
3531 break;
3532 case CK_PanelOtherSync:
3533 panel_sync_other (panel);
3534 break;
3535 case CK_Sort:
3536 panel_select_sort_order (panel);
3537 break;
3538 case CK_SortPrev:
3539 panel_toggle_sort_order_prev (panel);
3540 break;
3541 case CK_SortNext:
3542 panel_toggle_sort_order_next (panel);
3543 break;
3544 case CK_SortReverse:
3545 panel->sort_info.reverse = !panel->sort_info.reverse;
3546 panel_set_sort_order (panel, panel->sort_field);
3547 break;
3548 case CK_SortByName:
3549 panel_set_sort_type_by_id (panel, "name");
3550 break;
3551 case CK_SortByExt:
3552 panel_set_sort_type_by_id (panel, "extension");
3553 break;
3554 case CK_SortBySize:
3555 panel_set_sort_type_by_id (panel, "size");
3556 break;
3557 case CK_SortByMTime:
3558 panel_set_sort_type_by_id (panel, "mtime");
3559 break;
3560 default:
3561 res = MSG_NOT_HANDLED;
3562 break;
3565 return res;
3568 /* --------------------------------------------------------------------------------------------- */
3570 static cb_ret_t
3571 panel_key (WPanel * panel, int key)
3573 size_t i;
3575 if (is_abort_char (key))
3577 stop_search (panel);
3578 return MSG_HANDLED;
3581 if (panel->searching && ((key >= ' ' && key <= 255) || key == KEY_BACKSPACE))
3583 do_search (panel, key);
3584 return MSG_HANDLED;
3587 for (i = 0; panel_map[i].key != 0; i++)
3588 if (key == panel_map[i].key)
3589 return panel_execute_cmd (panel, panel_map[i].command);
3591 if (panels_options.torben_fj_mode && key == ALT ('h'))
3593 goto_middle_file (panel);
3594 return MSG_HANDLED;
3597 if (!command_prompt && ((key >= ' ' && key <= 255) || key == KEY_BACKSPACE))
3599 start_search (panel);
3600 do_search (panel, key);
3601 return MSG_HANDLED;
3604 return MSG_NOT_HANDLED;
3607 /* --------------------------------------------------------------------------------------------- */
3609 static cb_ret_t
3610 panel_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *data)
3612 WPanel *panel = PANEL (w);
3613 WButtonBar *bb;
3615 switch (msg)
3617 case MSG_INIT:
3618 /* subscribe to "history_load" event */
3619 mc_event_add (w->owner->event_group, MCEVENT_HISTORY_LOAD, panel_load_history, w, NULL);
3620 /* subscribe to "history_save" event */
3621 mc_event_add (w->owner->event_group, MCEVENT_HISTORY_SAVE, panel_save_history, w, NULL);
3622 return MSG_HANDLED;
3624 case MSG_DRAW:
3625 /* Repaint everything, including frame and separator */
3626 widget_erase (w);
3627 show_dir (panel);
3628 panel_print_header (panel);
3629 adjust_top_file (panel);
3630 paint_dir (panel);
3631 mini_info_separator (panel);
3632 display_mini_info (panel);
3633 panel->dirty = 0;
3634 return MSG_HANDLED;
3636 case MSG_FOCUS:
3637 state_mark = -1;
3638 current_panel = panel;
3639 panel->active = 1;
3641 if (mc_chdir (panel->cwd_vpath) != 0)
3643 char *cwd;
3645 cwd = vfs_path_to_str_flags (panel->cwd_vpath, 0, VPF_STRIP_PASSWORD);
3646 message (D_ERROR, MSG_ERROR, _("Cannot chdir to \"%s\"\n%s"),
3647 cwd, unix_error_string (errno));
3648 g_free (cwd);
3650 else
3651 subshell_chdir (panel->cwd_vpath);
3653 update_xterm_title_path ();
3654 select_item (panel);
3655 show_dir (panel);
3656 paint_dir (panel);
3657 panel->dirty = 0;
3659 bb = find_buttonbar (w->owner);
3660 midnight_set_buttonbar (bb);
3661 widget_redraw (WIDGET (bb));
3662 return MSG_HANDLED;
3664 case MSG_UNFOCUS:
3665 /* Janne: look at this for the multiple panel options */
3666 stop_search (panel);
3667 panel->active = 0;
3668 show_dir (panel);
3669 unselect_item (panel);
3670 return MSG_HANDLED;
3672 case MSG_KEY:
3673 return panel_key (panel, parm);
3675 case MSG_ACTION:
3676 return panel_execute_cmd (panel, parm);
3678 case MSG_DESTROY:
3679 /* unsubscribe from "history_load" event */
3680 mc_event_del (w->owner->event_group, MCEVENT_HISTORY_LOAD, panel_load_history, w);
3681 /* unsubscribe from "history_save" event */
3682 mc_event_del (w->owner->event_group, MCEVENT_HISTORY_SAVE, panel_save_history, w);
3683 panel_destroy (panel);
3684 free_my_statfs ();
3685 return MSG_HANDLED;
3687 default:
3688 return widget_default_callback (w, sender, msg, parm, data);
3692 /* --------------------------------------------------------------------------------------------- */
3693 /* */
3694 /* Panel mouse events support routines */
3695 /* */
3697 static void
3698 mouse_toggle_mark (WPanel * panel)
3700 do_mark_file (panel, MARK_DONT_MOVE);
3701 mouse_marking = selection (panel)->f.marked;
3702 mouse_mark_panel = current_panel;
3705 /* --------------------------------------------------------------------------------------------- */
3707 static void
3708 mouse_set_mark (WPanel * panel)
3710 if (mouse_mark_panel == panel)
3712 if (mouse_marking && !(selection (panel)->f.marked))
3713 do_mark_file (panel, MARK_DONT_MOVE);
3714 else if (!mouse_marking && (selection (panel)->f.marked))
3715 do_mark_file (panel, MARK_DONT_MOVE);
3719 /* --------------------------------------------------------------------------------------------- */
3721 static gboolean
3722 mark_if_marking (WPanel * panel, const mouse_event_t * event)
3724 if ((event->buttons & GPM_B_RIGHT) != 0)
3726 if (event->msg == MSG_MOUSE_DOWN)
3727 mouse_toggle_mark (panel);
3728 else
3729 mouse_set_mark (panel);
3730 return TRUE;
3733 return FALSE;
3736 /* --------------------------------------------------------------------------------------------- */
3737 /** Determine which column was clicked, and sort the panel on
3738 * that column, or reverse sort on that column if already
3739 * sorted on that column.
3742 static void
3743 mouse_sort_col (WPanel * panel, int x)
3745 int i;
3746 const char *lc_sort_name = NULL;
3747 panel_field_t *col_sort_format = NULL;
3748 format_e *format;
3750 for (i = 0, format = panel->format; format != NULL; format = format->next)
3752 i += format->field_len;
3753 if (x < i + 1)
3755 /* found column */
3756 lc_sort_name = format->title;
3757 break;
3761 if (lc_sort_name == NULL)
3762 return;
3764 for (i = 0; panel_fields[i].id != NULL; i++)
3766 const char *title;
3768 title = panel_get_title_without_hotkey (panel_fields[i].title_hotkey);
3769 if (strcmp (title, lc_sort_name) == 0 && panel_fields[i].sort_routine != NULL)
3771 col_sort_format = &panel_fields[i];
3772 break;
3776 if (col_sort_format == NULL)
3777 return;
3779 if (panel->sort_field == col_sort_format)
3781 /* reverse the sort if clicked column is already the sorted column */
3782 panel->sort_info.reverse = !panel->sort_info.reverse;
3784 else
3786 /* new sort is forced to be ascending */
3787 panel->sort_info.reverse = FALSE;
3789 panel_set_sort_order (panel, col_sort_format);
3792 /* --------------------------------------------------------------------------------------------- */
3794 static void
3795 panel_mouse_callback (Widget * w, mouse_msg_t msg, mouse_event_t * event)
3797 WPanel *panel = PANEL (w);
3798 gboolean is_active;
3800 is_active = widget_is_active (w);
3802 switch (msg)
3804 case MSG_MOUSE_DOWN:
3805 if (event->y == 0)
3807 /* top frame */
3808 if (event->x == 1)
3809 /* "<" button */
3810 directory_history_prev (panel);
3811 else if (event->x == w->cols - 2)
3812 /* ">" button */
3813 directory_history_next (panel);
3814 else if (event->x >= w->cols - 5 && event->x <= w->cols - 3)
3815 /* "^" button */
3816 directory_history_list (panel);
3817 else if (event->x == w->cols - 6)
3818 /* "." button show/hide hidden files */
3819 send_message (midnight_dlg, NULL, MSG_ACTION, CK_ShowHidden, NULL);
3820 else
3822 /* no other events on 1st line, return MOU_UNHANDLED */
3823 event->result.abort = TRUE;
3824 /* avoid extra panel redraw */
3825 panel->dirty = 0;
3827 break;
3830 if (event->y == 1)
3832 /* sort on clicked column */
3833 mouse_sort_col (panel, event->x + 1);
3834 break;
3837 if (!is_active)
3838 change_panel ();
3839 /* fall through */
3841 case MSG_MOUSE_DRAG:
3843 int y, last, my_index;
3845 last = panel->dir.len - 1;
3846 y = event->y - 2;
3848 if (panel->top_file + y > last)
3849 my_index = last;
3850 else
3852 my_index = panel->top_file + y;
3854 if (panel->list_type == list_brief && panel->list_cols > 1)
3856 int width, lines;
3858 width = (w->cols - 2) / panel->list_cols;
3859 lines = panel_lines (panel);
3860 my_index += lines * (event->x / width);
3863 if (my_index > last)
3864 my_index = last;
3867 if (my_index != panel->selected)
3869 unselect_item (panel);
3870 panel->selected = my_index;
3871 select_item (panel);
3874 /* This one is new */
3875 mark_if_marking (panel, event);
3877 break;
3879 case MSG_MOUSE_UP:
3880 break;
3882 case MSG_MOUSE_CLICK:
3883 if ((event->count & GPM_DOUBLE) != 0)
3885 int y, lines;
3887 y = event->y - 1;
3888 lines = panel_lines (panel);
3890 if (y <= lines)
3891 do_enter (panel);
3893 break;
3895 case MSG_MOUSE_MOVE:
3896 break;
3898 case MSG_MOUSE_SCROLL_UP:
3899 if (is_active)
3901 if (panels_options.mouse_move_pages && panel->top_file > 0)
3902 prev_page (panel);
3903 else /* We are in first page */
3904 move_up (panel);
3906 break;
3908 case MSG_MOUSE_SCROLL_DOWN:
3909 if (is_active)
3911 if (panels_options.mouse_move_pages
3912 && panel->top_file + panel_items (panel) < panel->dir.len)
3913 next_page (panel);
3914 else /* We are in last page */
3915 move_down (panel);
3917 break;
3919 default:
3920 break;
3923 if (panel->dirty)
3924 widget_redraw (w);
3927 /* --------------------------------------------------------------------------------------------- */
3929 static void
3930 reload_panelized (WPanel * panel)
3932 int i, j;
3933 dir_list *list = &panel->dir;
3935 /* refresh current VFS directory required for vfs_path_from_str() */
3936 (void) mc_chdir (panel->cwd_vpath);
3938 for (i = 0, j = 0; i < list->len; i++)
3940 vfs_path_t *vpath;
3942 if (list->list[i].f.marked)
3944 /* Unmark the file in advance. In case the following mc_lstat
3945 * fails we are done, else we have to mark the file again
3946 * (Note: do_file_mark depends on a valid "list->list [i].buf").
3947 * IMO that's the best way to update the panel's summary status
3948 * -- Norbert
3950 do_file_mark (panel, i, 0);
3952 vpath = vfs_path_from_str (list->list[i].fname);
3953 if (mc_lstat (vpath, &list->list[i].st) != 0)
3954 g_free (list->list[i].fname);
3955 else
3957 if (list->list[i].f.marked)
3958 do_file_mark (panel, i, 1);
3959 if (j != i)
3960 list->list[j] = list->list[i];
3961 j++;
3963 vfs_path_free (vpath);
3965 if (j == 0)
3966 dir_list_init (list);
3967 else
3968 list->len = j;
3970 if (panel != current_panel)
3971 (void) mc_chdir (current_panel->cwd_vpath);
3974 /* --------------------------------------------------------------------------------------------- */
3976 static void
3977 update_one_panel_widget (WPanel * panel, panel_update_flags_t flags, const char *current_file)
3979 gboolean free_pointer;
3980 char *my_current_file = NULL;
3982 if ((flags & UP_RELOAD) != 0)
3984 panel->is_panelized = FALSE;
3985 mc_setctl (panel->cwd_vpath, VFS_SETCTL_FLUSH, 0);
3986 memset (&(panel->dir_stat), 0, sizeof (panel->dir_stat));
3989 /* If current_file == -1 (an invalid pointer) then preserve selection */
3990 free_pointer = current_file == UP_KEEPSEL;
3992 if (free_pointer)
3994 my_current_file = g_strdup (panel->dir.list[panel->selected].fname);
3995 current_file = my_current_file;
3998 if (panel->is_panelized)
3999 reload_panelized (panel);
4000 else
4001 panel_reload (panel);
4003 try_to_select (panel, current_file);
4004 panel->dirty = 1;
4006 if (free_pointer)
4007 g_free (my_current_file);
4010 /* --------------------------------------------------------------------------------------------- */
4012 static void
4013 update_one_panel (int which, panel_update_flags_t flags, const char *current_file)
4015 if (get_display_type (which) == view_listing)
4017 WPanel *panel;
4019 panel = PANEL (get_panel_widget (which));
4020 if (panel->is_panelized)
4021 flags &= ~UP_RELOAD;
4022 update_one_panel_widget (panel, flags, current_file);
4026 /* --------------------------------------------------------------------------------------------- */
4028 static void
4029 do_select (WPanel * panel, int i)
4031 if (i != panel->selected)
4033 panel->dirty = 1;
4034 panel->selected = i;
4035 panel->top_file = panel->selected - (WIDGET (panel)->lines - 2) / 2;
4036 if (panel->top_file < 0)
4037 panel->top_file = 0;
4041 /* --------------------------------------------------------------------------------------------- */
4043 static void
4044 do_try_to_select (WPanel * panel, const char *name)
4046 int i;
4047 char *subdir;
4049 if (!name)
4051 do_select (panel, 0);
4052 return;
4055 /* We only want the last component of the directory,
4056 * and from this only the name without suffix.
4057 * Cut prefix if the panel is not panelized */
4059 if (panel->is_panelized)
4060 subdir = vfs_strip_suffix_from_filename (name);
4061 else
4062 subdir = vfs_strip_suffix_from_filename (x_basename (name));
4064 /* Search that subdir or filename without prefix (if not panelized panel), select it if found */
4065 for (i = 0; i < panel->dir.len; i++)
4067 if (strcmp (subdir, panel->dir.list[i].fname) == 0)
4069 do_select (panel, i);
4070 g_free (subdir);
4071 return;
4075 /* Try to select a file near the file that is missing */
4076 if (panel->selected >= panel->dir.len)
4077 do_select (panel, panel->dir.len - 1);
4078 g_free (subdir);
4081 /* --------------------------------------------------------------------------------------------- */
4083 /* event callback */
4084 static gboolean
4085 event_update_panels (const gchar * event_group_name, const gchar * event_name,
4086 gpointer init_data, gpointer data)
4088 (void) event_group_name;
4089 (void) event_name;
4090 (void) init_data;
4091 (void) data;
4093 update_panels (UP_RELOAD, UP_KEEPSEL);
4095 return TRUE;
4098 /* --------------------------------------------------------------------------------------------- */
4100 /* event callback */
4101 static gboolean
4102 panel_save_current_file_to_clip_file (const gchar * event_group_name, const gchar * event_name,
4103 gpointer init_data, gpointer data)
4105 (void) event_group_name;
4106 (void) event_name;
4107 (void) init_data;
4108 (void) data;
4110 if (current_panel->marked == 0)
4111 mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_text_to_file",
4112 (gpointer) selection (current_panel)->fname);
4113 else
4115 int i;
4116 gboolean first = TRUE;
4117 char *flist = NULL;
4119 for (i = 0; i < current_panel->dir.len; i++)
4120 if (current_panel->dir.list[i].f.marked != 0)
4121 { /* Skip the unmarked ones */
4122 if (first)
4124 flist = g_strdup (current_panel->dir.list[i].fname);
4125 first = FALSE;
4127 else
4129 /* Add empty lines after the file */
4130 char *tmp;
4132 tmp =
4133 g_strconcat (flist, "\n", current_panel->dir.list[i].fname, (char *) NULL);
4134 g_free (flist);
4135 flist = tmp;
4139 mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_text_to_file", (gpointer) flist);
4140 g_free (flist);
4142 return TRUE;
4145 /* --------------------------------------------------------------------------------------------- */
4147 static vfs_path_t *
4148 panel_recursive_cd_to_parent (const vfs_path_t * vpath)
4150 vfs_path_t *cwd_vpath;
4152 cwd_vpath = vfs_path_clone (vpath);
4154 while (mc_chdir (cwd_vpath) < 0)
4156 const char *panel_cwd_path;
4157 vfs_path_t *tmp_vpath;
4159 /* check if path contains only '/' */
4160 panel_cwd_path = vfs_path_as_str (cwd_vpath);
4161 if (IS_PATH_SEP (panel_cwd_path[0]) && panel_cwd_path[1] == '\0')
4162 return NULL;
4164 tmp_vpath = vfs_path_vtokens_get (cwd_vpath, 0, -1);
4165 vfs_path_free (cwd_vpath);
4166 cwd_vpath =
4167 vfs_path_build_filename (PATH_SEP_STR, vfs_path_as_str (tmp_vpath), (char *) NULL);
4168 vfs_path_free (tmp_vpath);
4171 return cwd_vpath;
4174 /* --------------------------------------------------------------------------------------------- */
4175 /*** public functions ****************************************************************************/
4176 /* --------------------------------------------------------------------------------------------- */
4178 void
4179 try_to_select (WPanel * panel, const char *name)
4181 do_try_to_select (panel, name);
4182 select_item (panel);
4185 /* --------------------------------------------------------------------------------------------- */
4187 void
4188 panel_clean_dir (WPanel * panel)
4190 panel->top_file = 0;
4191 panel->selected = 0;
4192 panel->marked = 0;
4193 panel->dirs_marked = 0;
4194 panel->total = 0;
4195 panel->searching = FALSE;
4196 panel->is_panelized = FALSE;
4197 panel->dirty = 1;
4198 panel->content_shift = -1;
4199 panel->max_shift = -1;
4201 dir_list_clean (&panel->dir);
4204 /* --------------------------------------------------------------------------------------------- */
4206 * Set Up panel's current dir object
4208 * @param panel panel object
4209 * @param path_str string contain path
4212 void
4213 panel_set_cwd (WPanel * panel, const vfs_path_t * vpath)
4215 if (vpath != panel->cwd_vpath) /* check if new vpath is not the panel->cwd_vpath object */
4217 vfs_path_free (panel->cwd_vpath);
4218 panel->cwd_vpath = vfs_path_clone (vpath);
4222 /* --------------------------------------------------------------------------------------------- */
4224 * Set Up panel's last working dir object
4226 * @param panel panel object
4227 * @param path_str string contain path
4230 void
4231 panel_set_lwd (WPanel * panel, const vfs_path_t * vpath)
4233 if (vpath != panel->lwd_vpath) /* check if new vpath is not the panel->lwd_vpath object */
4235 vfs_path_free (panel->lwd_vpath);
4236 panel->lwd_vpath = vfs_path_clone (vpath);
4240 /* --------------------------------------------------------------------------------------------- */
4242 * Panel creation for specified directory.
4244 * @param panel_name specifies the name of the panel for setup retieving
4245 * @param wpath the path of working panel directory. If path is NULL then panel will be created
4246 * for current directory
4248 * @return new instance of WPanel
4251 WPanel *
4252 panel_new_with_dir (const char *panel_name, const vfs_path_t * vpath)
4254 WPanel *panel;
4255 Widget *w;
4256 char *section;
4257 int i, err;
4258 char *curdir = NULL;
4260 panel = g_new0 (WPanel, 1);
4261 w = WIDGET (panel);
4262 /* No know sizes of the panel at startup */
4263 widget_init (w, 0, 0, 0, 0, panel_callback, panel_mouse_callback);
4264 /* We do not want the cursor */
4265 widget_want_cursor (w, FALSE);
4267 if (vpath != NULL)
4269 curdir = _vfs_get_cwd ();
4270 panel_set_cwd (panel, vpath);
4272 else
4274 vfs_setup_cwd ();
4275 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
4278 panel_set_lwd (panel, vfs_get_raw_current_dir ());
4280 panel->hist_name = g_strconcat ("Dir Hist ", panel_name, (char *) NULL);
4281 /* directories history will be get later */
4283 panel->dir.size = DIR_LIST_MIN_SIZE;
4284 panel->dir.list = g_new (file_entry_t, panel->dir.size);
4285 panel->dir.len = 0;
4286 panel->active = 0;
4287 panel->filter = NULL;
4288 panel->list_cols = 1;
4289 panel->brief_cols = 2;
4290 panel->top_file = 0;
4291 panel->selected = 0;
4292 panel->marked = 0;
4293 panel->total = 0;
4294 panel->dirty = 1;
4295 panel->searching = FALSE;
4296 panel->dirs_marked = 0;
4297 panel->is_panelized = FALSE;
4298 panel->format = NULL;
4299 panel->status_format = NULL;
4300 panel->format_modified = 1;
4301 panel->content_shift = -1;
4302 panel->max_shift = -1;
4304 panel->panel_name = g_strdup (panel_name);
4305 panel->user_format = g_strdup (DEFAULT_USER_FORMAT);
4307 #ifdef HAVE_CHARSET
4308 panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
4309 #endif
4311 for (i = 0; i < LIST_TYPES; i++)
4312 panel->user_status_format[i] = g_strdup (DEFAULT_USER_FORMAT);
4314 panel->search_buffer[0] = '\0';
4315 panel->prev_search_buffer[0] = '\0';
4316 panel->frame_size = frame_half;
4318 section = g_strconcat ("Temporal:", panel->panel_name, (char *) NULL);
4319 if (!mc_config_has_group (mc_main_config, section))
4321 g_free (section);
4322 section = g_strdup (panel->panel_name);
4324 panel_load_setup (panel, section);
4325 g_free (section);
4327 /* Load format strings */
4328 err = set_panel_formats (panel);
4329 if (err != 0)
4330 set_panel_formats (panel);
4332 #ifdef HAVE_CHARSET
4334 const vfs_path_element_t *path_element;
4336 path_element = vfs_path_get_by_index (panel->cwd_vpath, -1);
4337 if (path_element->encoding != NULL)
4338 panel->codepage = get_codepage_index (path_element->encoding);
4340 #endif
4342 if (mc_chdir (panel->cwd_vpath) != 0)
4344 #ifdef HAVE_CHARSET
4345 panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
4346 #endif
4347 vfs_setup_cwd ();
4348 vfs_path_free (panel->cwd_vpath);
4349 panel->cwd_vpath = vfs_path_clone (vfs_get_raw_current_dir ());
4352 /* Load the default format */
4353 dir_list_load (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
4354 &panel->sort_info, panel->filter);
4356 /* Restore old right path */
4357 if (curdir != NULL)
4359 vfs_path_t *tmp_vpath;
4361 tmp_vpath = vfs_path_from_str (curdir);
4362 err = mc_chdir (tmp_vpath);
4363 vfs_path_free (tmp_vpath);
4365 g_free (curdir);
4367 return panel;
4370 /* --------------------------------------------------------------------------------------------- */
4372 void
4373 panel_reload (WPanel * panel)
4375 struct stat current_stat;
4376 vfs_path_t *cwd_vpath;
4378 if (panels_options.fast_reload && stat (vfs_path_as_str (panel->cwd_vpath), &current_stat) == 0
4379 && current_stat.st_ctime == panel->dir_stat.st_ctime
4380 && current_stat.st_mtime == panel->dir_stat.st_mtime)
4381 return;
4383 cwd_vpath = panel_recursive_cd_to_parent (panel->cwd_vpath);
4384 vfs_path_free (panel->cwd_vpath);
4386 if (cwd_vpath == NULL)
4388 panel->cwd_vpath = vfs_path_from_str (PATH_SEP_STR);
4389 panel_clean_dir (panel);
4390 dir_list_init (&panel->dir);
4391 return;
4394 panel->cwd_vpath = cwd_vpath;
4395 memset (&(panel->dir_stat), 0, sizeof (panel->dir_stat));
4396 show_dir (panel);
4398 dir_list_reload (&panel->dir, panel->cwd_vpath, panel->sort_field->sort_routine,
4399 &panel->sort_info, panel->filter);
4401 panel->dirty = 1;
4402 if (panel->selected >= panel->dir.len)
4403 do_select (panel, panel->dir.len - 1);
4405 recalculate_panel_summary (panel);
4408 /* --------------------------------------------------------------------------------------------- */
4409 /* Switches the panel to the mode specified in the format */
4410 /* Seting up both format and status string. Return: 0 - on success; */
4411 /* 1 - format error; 2 - status error; 3 - errors in both formats. */
4414 set_panel_formats (WPanel * p)
4416 format_e *form;
4417 char *err = NULL;
4418 int retcode = 0;
4420 form = use_display_format (p, panel_format (p), &err, FALSE);
4422 if (err != NULL)
4424 g_free (err);
4425 retcode = 1;
4427 else
4429 delete_format (p->format);
4430 p->format = form;
4433 if (panels_options.show_mini_info)
4435 form = use_display_format (p, mini_status_format (p), &err, TRUE);
4437 if (err != NULL)
4439 g_free (err);
4440 retcode += 2;
4442 else
4444 delete_format (p->status_format);
4445 p->status_format = form;
4449 panel_format_modified (p);
4450 panel_update_cols (WIDGET (p), p->frame_size);
4452 if (retcode)
4453 message (D_ERROR, _("Warning"),
4454 _("User supplied format looks invalid, reverting to default."));
4455 if (retcode & 0x01)
4457 g_free (p->user_format);
4458 p->user_format = g_strdup (DEFAULT_USER_FORMAT);
4460 if (retcode & 0x02)
4462 g_free (p->user_status_format[p->list_type]);
4463 p->user_status_format[p->list_type] = g_strdup (DEFAULT_USER_FORMAT);
4466 return retcode;
4469 /* --------------------------------------------------------------------------------------------- */
4471 void
4472 panel_update_cols (Widget * widget, panel_display_t frame_size)
4474 int cols, origin;
4476 /* don't touch panel if it is not in dialog yet */
4477 /* if panel is not in dialog it is not in widgets list
4478 and cannot be compared with get_panel_widget() result */
4479 if (widget->owner == NULL)
4480 return;
4482 if (panels_layout.horizontal_split)
4484 widget->cols = COLS;
4485 return;
4488 if (frame_size == frame_full)
4490 cols = COLS;
4491 origin = 0;
4493 else if (widget == get_panel_widget (0))
4495 cols = panels_layout.left_panel_size;
4496 origin = 0;
4498 else
4500 cols = COLS - panels_layout.left_panel_size;
4501 origin = panels_layout.left_panel_size;
4504 widget->cols = cols;
4505 widget->x = origin;
4508 /* --------------------------------------------------------------------------------------------- */
4510 /* Select current item and readjust the panel */
4511 void
4512 select_item (WPanel * panel)
4514 /* Although currently all over the code we set the selection and
4515 top file to decent values before calling select_item, I could
4516 forget it someday, so it's better to do the actual fitting here */
4518 if (panel->selected < 0)
4519 panel->selected = 0;
4521 if (panel->selected > panel->dir.len - 1)
4522 panel->selected = panel->dir.len - 1;
4524 adjust_top_file (panel);
4526 panel->dirty = 1;
4528 execute_hooks (select_file_hook);
4531 /* --------------------------------------------------------------------------------------------- */
4532 /** Clears all files in the panel, used only when one file was marked */
4533 void
4534 unmark_files (WPanel * panel)
4536 int i;
4538 if (!panel->marked)
4539 return;
4541 for (i = 0; i < panel->dir.len; i++)
4542 file_mark (panel, i, 0);
4544 panel->dirs_marked = 0;
4545 panel->marked = 0;
4546 panel->total = 0;
4549 /* --------------------------------------------------------------------------------------------- */
4550 /** Recalculate the panels summary information, used e.g. when marked
4551 files might have been removed by an external command */
4553 void
4554 recalculate_panel_summary (WPanel * panel)
4556 int i;
4558 panel->marked = 0;
4559 panel->dirs_marked = 0;
4560 panel->total = 0;
4562 for (i = 0; i < panel->dir.len; i++)
4563 if (panel->dir.list[i].f.marked)
4565 /* do_file_mark will return immediately if newmark == oldmark.
4566 So we have to first unmark it to get panel's summary information
4567 updated. (Norbert) */
4568 panel->dir.list[i].f.marked = 0;
4569 do_file_mark (panel, i, 1);
4573 /* --------------------------------------------------------------------------------------------- */
4574 /** This routine marks a file or a directory */
4576 void
4577 do_file_mark (WPanel * panel, int idx, int mark)
4579 if (panel->dir.list[idx].f.marked == mark)
4580 return;
4582 /* Only '..' can't be marked, '.' isn't visible */
4583 if (DIR_IS_DOTDOT (panel->dir.list[idx].fname))
4584 return;
4586 file_mark (panel, idx, mark);
4587 if (panel->dir.list[idx].f.marked)
4589 panel->marked++;
4591 if (S_ISDIR (panel->dir.list[idx].st.st_mode))
4593 if (panel->dir.list[idx].f.dir_size_computed)
4594 panel->total += (uintmax_t) panel->dir.list[idx].st.st_size;
4595 panel->dirs_marked++;
4597 else
4598 panel->total += (uintmax_t) panel->dir.list[idx].st.st_size;
4600 set_colors (panel);
4602 else
4604 if (S_ISDIR (panel->dir.list[idx].st.st_mode))
4606 if (panel->dir.list[idx].f.dir_size_computed)
4607 panel->total -= (uintmax_t) panel->dir.list[idx].st.st_size;
4608 panel->dirs_marked--;
4610 else
4611 panel->total -= (uintmax_t) panel->dir.list[idx].st.st_size;
4613 panel->marked--;
4617 /* --------------------------------------------------------------------------------------------- */
4619 * Changes the current directory of the panel.
4620 * Record change in the directory history.
4622 gboolean
4623 do_panel_cd (WPanel * panel, const vfs_path_t * new_dir_vpath, enum cd_enum cd_type)
4625 gboolean r;
4627 r = _do_panel_cd (panel, new_dir_vpath, cd_type);
4628 if (r)
4629 directory_history_add (panel, panel->cwd_vpath);
4630 return r;
4633 /* --------------------------------------------------------------------------------------------- */
4635 void
4636 file_mark (WPanel * panel, int lc_index, int val)
4638 if (panel->dir.list[lc_index].f.marked != val)
4640 panel->dir.list[lc_index].f.marked = val;
4641 panel->dirty = 1;
4645 /* --------------------------------------------------------------------------------------------- */
4647 void
4648 panel_re_sort (WPanel * panel)
4650 char *filename;
4651 int i;
4653 if (panel == NULL)
4654 return;
4656 filename = g_strdup (selection (panel)->fname);
4657 unselect_item (panel);
4658 dir_list_sort (&panel->dir, panel->sort_field->sort_routine, &panel->sort_info);
4659 panel->selected = -1;
4661 for (i = panel->dir.len; i != 0; i--)
4662 if (strcmp (panel->dir.list[i - 1].fname, filename) == 0)
4664 panel->selected = i - 1;
4665 break;
4668 g_free (filename);
4669 panel->top_file = panel->selected - panel_items (panel) / 2;
4670 select_item (panel);
4671 panel->dirty = 1;
4674 /* --------------------------------------------------------------------------------------------- */
4676 void
4677 panel_set_sort_order (WPanel * panel, const panel_field_t * sort_order)
4679 if (sort_order == NULL)
4680 return;
4682 panel->sort_field = sort_order;
4684 /* The directory is already sorted, we have to load the unsorted stuff */
4685 if (sort_order->sort_routine == (GCompareFunc) unsorted)
4687 char *current_file;
4689 current_file = g_strdup (panel->dir.list[panel->selected].fname);
4690 panel_reload (panel);
4691 try_to_select (panel, current_file);
4692 g_free (current_file);
4694 panel_re_sort (panel);
4697 /* --------------------------------------------------------------------------------------------- */
4699 #ifdef HAVE_CHARSET
4702 * Change panel encoding.
4703 * @param panel WPanel object
4706 void
4707 panel_change_encoding (WPanel * panel)
4709 const char *encoding = NULL;
4710 char *errmsg;
4711 int r;
4713 r = select_charset (-1, -1, panel->codepage, FALSE);
4715 if (r == SELECT_CHARSET_CANCEL)
4716 return; /* Cancel */
4718 panel->codepage = r;
4720 if (panel->codepage == SELECT_CHARSET_NO_TRANSLATE)
4722 /* No translation */
4723 vfs_path_t *cd_path_vpath;
4725 g_free (init_translation_table (mc_global.display_codepage, mc_global.display_codepage));
4726 cd_path_vpath = remove_encoding_from_path (panel->cwd_vpath);
4727 do_panel_cd (panel, cd_path_vpath, cd_parse_command);
4728 show_dir (panel);
4729 vfs_path_free (cd_path_vpath);
4730 return;
4733 errmsg = init_translation_table (panel->codepage, mc_global.display_codepage);
4734 if (errmsg != NULL)
4736 message (D_ERROR, MSG_ERROR, "%s", errmsg);
4737 g_free (errmsg);
4738 return;
4741 encoding = get_codepage_id (panel->codepage);
4742 if (encoding != NULL)
4744 vfs_path_change_encoding (panel->cwd_vpath, encoding);
4746 if (!do_panel_cd (panel, panel->cwd_vpath, cd_parse_command))
4747 message (D_ERROR, MSG_ERROR, _("Cannot chdir to \"%s\""),
4748 vfs_path_as_str (panel->cwd_vpath));
4752 /* --------------------------------------------------------------------------------------------- */
4755 * Remove encode info from last path element.
4758 vfs_path_t *
4759 remove_encoding_from_path (const vfs_path_t * vpath)
4761 vfs_path_t *ret_vpath;
4762 GString *tmp_conv;
4763 int indx;
4765 ret_vpath = vfs_path_new ();
4767 tmp_conv = g_string_new ("");
4769 for (indx = 0; indx < vfs_path_elements_count (vpath); indx++)
4771 GIConv converter;
4772 vfs_path_element_t *path_element;
4774 path_element = vfs_path_element_clone (vfs_path_get_by_index (vpath, indx));
4776 if (path_element->encoding == NULL)
4778 vfs_path_add_element (ret_vpath, path_element);
4779 continue;
4782 converter = str_crt_conv_to (path_element->encoding);
4783 if (converter == INVALID_CONV)
4785 vfs_path_add_element (ret_vpath, path_element);
4786 continue;
4789 MC_PTR_FREE (path_element->encoding);
4791 str_vfs_convert_from (converter, path_element->path, tmp_conv);
4793 g_free (path_element->path);
4794 path_element->path = g_strndup (tmp_conv->str, tmp_conv->len);
4796 g_string_set_size (tmp_conv, 0);
4798 str_close_conv (converter);
4799 str_close_conv (path_element->dir.converter);
4800 path_element->dir.converter = INVALID_CONV;
4801 vfs_path_add_element (ret_vpath, path_element);
4803 g_string_free (tmp_conv, TRUE);
4804 return ret_vpath;
4806 #endif /* HAVE_CHARSET */
4808 /* --------------------------------------------------------------------------------------------- */
4811 * This routine reloads the directory in both panels. It tries to
4812 * select current_file in current_panel and other_file in other_panel.
4813 * If current_file == -1 then it automatically sets current_file and
4814 * other_file to the currently selected files in the panels.
4816 * If flags has the UP_ONLY_CURRENT bit toggled on, then it
4817 * will not reload the other panel.
4819 * @param flags for reload panel
4820 * @param current_file name of the current file
4823 void
4824 update_panels (panel_update_flags_t flags, const char *current_file)
4826 WPanel *panel;
4828 /* first, update other panel... */
4829 if ((flags & UP_ONLY_CURRENT) == 0)
4830 update_one_panel (get_other_index (), flags, UP_KEEPSEL);
4831 /* ...then current one */
4832 update_one_panel (get_current_index (), flags, current_file);
4834 if (get_current_type () == view_listing)
4835 panel = PANEL (get_panel_widget (get_current_index ()));
4836 else
4837 panel = PANEL (get_panel_widget (get_other_index ()));
4839 if (!panel->is_panelized)
4840 (void) mc_chdir (panel->cwd_vpath);
4843 /* --------------------------------------------------------------------------------------------- */
4845 gsize
4846 panel_get_num_of_sortable_fields (void)
4848 gsize ret = 0, lc_index;
4850 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4851 if (panel_fields[lc_index].is_user_choice)
4852 ret++;
4853 return ret;
4856 /* --------------------------------------------------------------------------------------------- */
4858 char **
4859 panel_get_sortable_fields (gsize * array_size)
4861 char **ret;
4862 gsize lc_index, i;
4864 lc_index = panel_get_num_of_sortable_fields ();
4866 ret = g_try_new0 (char *, lc_index + 1);
4867 if (ret == NULL)
4868 return NULL;
4870 if (array_size != NULL)
4871 *array_size = lc_index;
4873 lc_index = 0;
4875 for (i = 0; panel_fields[i].id != NULL; i++)
4876 if (panel_fields[i].is_user_choice)
4877 ret[lc_index++] = g_strdup (_(panel_fields[i].title_hotkey));
4879 return ret;
4882 /* --------------------------------------------------------------------------------------------- */
4884 const panel_field_t *
4885 panel_get_field_by_id (const char *name)
4887 gsize lc_index;
4889 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4890 if (panel_fields[lc_index].id != NULL && strcmp (name, panel_fields[lc_index].id) == 0)
4891 return &panel_fields[lc_index];
4893 return NULL;
4896 /* --------------------------------------------------------------------------------------------- */
4898 const panel_field_t *
4899 panel_get_field_by_title_hotkey (const char *name)
4901 gsize lc_index;
4903 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4904 if (panel_fields[lc_index].title_hotkey != NULL &&
4905 strcmp (name, _(panel_fields[lc_index].title_hotkey)) == 0)
4906 return &panel_fields[lc_index];
4908 return NULL;
4911 /* --------------------------------------------------------------------------------------------- */
4913 const panel_field_t *
4914 panel_get_field_by_title (const char *name)
4916 gsize lc_index;
4918 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4920 const char *title;
4922 title = panel_get_title_without_hotkey (panel_fields[lc_index].title_hotkey);
4923 if (strcmp (title, name) == 0)
4924 return &panel_fields[lc_index];
4927 return NULL;
4930 /* --------------------------------------------------------------------------------------------- */
4932 gsize
4933 panel_get_num_of_user_possible_fields (void)
4935 gsize ret = 0, lc_index;
4937 for (lc_index = 0; panel_fields[lc_index].id != NULL; lc_index++)
4938 if (panel_fields[lc_index].use_in_user_format)
4939 ret++;
4941 return ret;
4944 /* --------------------------------------------------------------------------------------------- */
4946 char **
4947 panel_get_user_possible_fields (gsize * array_size)
4949 char **ret;
4950 gsize lc_index, i;
4952 lc_index = panel_get_num_of_user_possible_fields ();
4954 ret = g_try_new0 (char *, lc_index + 1);
4955 if (ret == NULL)
4956 return NULL;
4958 if (array_size != NULL)
4959 *array_size = lc_index;
4961 lc_index = 0;
4963 for (i = 0; panel_fields[i].id != NULL; i++)
4964 if (panel_fields[i].use_in_user_format)
4965 ret[lc_index++] = g_strdup (_(panel_fields[i].title_hotkey));
4967 return ret;
4970 /* --------------------------------------------------------------------------------------------- */
4972 void
4973 panel_init (void)
4975 panel_sort_up_sign = mc_skin_get ("widget-common", "sort-sign-up", "'");
4976 panel_sort_down_sign = mc_skin_get ("widget-common", "sort-sign-down", ".");
4978 panel_hiddenfiles_sign_show = mc_skin_get ("widget-panel", "hiddenfiles-sign-show", ".");
4979 panel_hiddenfiles_sign_hide = mc_skin_get ("widget-panel", "hiddenfiles-sign-hide", ".");
4980 panel_history_prev_item_sign = mc_skin_get ("widget-panel", "history-prev-item-sign", "<");
4981 panel_history_next_item_sign = mc_skin_get ("widget-panel", "history-next-item-sign", ">");
4982 panel_history_show_list_sign = mc_skin_get ("widget-panel", "history-show-list-sign", "^");
4983 panel_filename_scroll_left_char =
4984 mc_skin_get ("widget-panel", "filename-scroll-left-char", "{");
4985 panel_filename_scroll_right_char =
4986 mc_skin_get ("widget-panel", "filename-scroll-right-char", "}");
4988 mc_event_add (MCEVENT_GROUP_FILEMANAGER, "update_panels", event_update_panels, NULL, NULL);
4989 mc_event_add (MCEVENT_GROUP_FILEMANAGER, "panel_save_current_file_to_clip_file",
4990 panel_save_current_file_to_clip_file, NULL, NULL);
4993 /* --------------------------------------------------------------------------------------------- */
4995 void
4996 panel_deinit (void)
4998 g_free (panel_sort_up_sign);
4999 g_free (panel_sort_down_sign);
5001 g_free (panel_hiddenfiles_sign_show);
5002 g_free (panel_hiddenfiles_sign_hide);
5003 g_free (panel_history_prev_item_sign);
5004 g_free (panel_history_next_item_sign);
5005 g_free (panel_history_show_list_sign);
5006 g_free (panel_filename_scroll_left_char);
5007 g_free (panel_filename_scroll_right_char);
5010 /* --------------------------------------------------------------------------------------------- */
5012 gboolean
5013 do_cd (const vfs_path_t * new_dir_vpath, enum cd_enum exact)
5015 gboolean res;
5016 const vfs_path_t *_new_dir_vpath = new_dir_vpath;
5018 if (current_panel->is_panelized)
5020 size_t new_vpath_len;
5022 new_vpath_len = vfs_path_len (new_dir_vpath);
5023 if (vfs_path_equal_len (new_dir_vpath, panelized_panel.root_vpath, new_vpath_len))
5024 _new_dir_vpath = panelized_panel.root_vpath;
5027 res = do_panel_cd (current_panel, _new_dir_vpath, exact);
5029 #ifdef HAVE_CHARSET
5030 if (res)
5032 const vfs_path_element_t *path_element;
5034 path_element = vfs_path_get_by_index (current_panel->cwd_vpath, -1);
5035 if (path_element->encoding != NULL)
5036 current_panel->codepage = get_codepage_index (path_element->encoding);
5037 else
5038 current_panel->codepage = SELECT_CHARSET_NO_TRANSLATE;
5040 #endif /* HAVE_CHARSET */
5042 return res;
5045 /* --------------------------------------------------------------------------------------------- */