4 Copyright (C) 1994-2016
5 Free Software Foundation, Inc.
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/>.
30 * \brief Source: panel managin module
40 #include "lib/global.h"
42 #include "lib/tty/tty.h"
43 #include "lib/tty/key.h" /* XCTRL and ALT macros */
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() */
52 #include "lib/widget.h"
54 #include "lib/charsets.h" /* get_codepage_id () */
56 #include "lib/event.h"
58 #include "src/setup.h" /* For loading/saving panel options */
59 #include "src/execute.h"
61 #include "src/selcodepage.h" /* select_charset (), SELECT_CHARSET_NO_TRANSLATE */
63 #include "src/keybind-defaults.h" /* global_keymap_t */
64 #ifdef ENABLE_SUBSHELL
65 #include "src/subshell/subshell.h" /* do_subshell_chdir() */
71 #include "ext.h" /* regexp_command */
72 #include "layout.h" /* Most layout variables are here */
74 #include "command.h" /* cmdline */
77 #include "mountlist.h" /* my_statfs */
81 /*** global variables ****************************************************************************/
83 /* The hook list for the select file function */
84 hook_t
*select_file_hook
= NULL
;
87 panelized_panel_t panelized_panel
= { {NULL
, 0, -1}, NULL
};
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 ****************************************************************/
116 #define MARKED_SELECTED 3
119 /*** file scope type declarations ****************************************************************/
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
;
138 align_crt_t just_mode
;
140 const char *(*string_fn
) (file_entry_t
*, int len
);
145 /* File name scroll states */
148 FILENAME_NOSCROLL
= 1,
149 FILENAME_SCROLL_LEFT
= 2,
150 FILENAME_SCROLL_RIGHT
= 4
151 } filename_scroll_flag_t
;
153 /*** file scope variables ************************************************************************/
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 */
162 N_("&Unsorted"), TRUE
, FALSE
,
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 */
172 N_("&Name"), TRUE
, TRUE
,
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 */
182 N_("&Version"), TRUE
, FALSE
,
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 */
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 */
202 N_("&Size"), TRUE
, TRUE
,
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
,
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 */
228 N_("&Modify time"), TRUE
, TRUE
,
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 */
238 N_("&Access time"), TRUE
, TRUE
,
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 */
248 N_("C&hange time"), TRUE
, TRUE
,
250 (GCompareFunc
) sort_ctime
254 "perm", 10, FALSE
, J_LEFT
,
256 N_("Permission"), FALSE
, TRUE
,
257 string_file_permission
,
262 "mode", 6, FALSE
, J_RIGHT
,
264 N_("Perm"), FALSE
, TRUE
,
265 string_file_perm_octal
,
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 */
281 N_("&Inode"), TRUE
, TRUE
,
283 (GCompareFunc
) sort_inode
287 "nuid", 5, FALSE
, J_RIGHT
,
289 N_("UID"), FALSE
, FALSE
,
295 "ngid", 5, FALSE
, J_RIGHT
,
297 N_("GID"), FALSE
, FALSE
,
303 "owner", 8, FALSE
, J_LEFT_FIT
,
305 N_("Owner"), FALSE
, TRUE
,
311 "group", 8, FALSE
, J_LEFT_FIT
,
313 N_("Group"), FALSE
, TRUE
,
319 "mark", 1, FALSE
, J_RIGHT
,
327 "|", 1, FALSE
, J_RIGHT
,
335 "space", 1, FALSE
, J_RIGHT
,
343 "dot", 1, FALSE
, J_RIGHT
,
351 NULL
, 0, FALSE
, J_RIGHT
, NULL
, NULL
, FALSE
, FALSE
, NULL
, NULL
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 /* --------------------------------------------------------------------------------------------- */
378 set_colors (const WPanel
* panel
)
382 tty_set_normal_attrs ();
383 tty_setcolor (NORMAL_COLOR
);
386 /* --------------------------------------------------------------------------------------------- */
387 /** Delete format string, it is a linked list */
390 delete_format (format_e
* format
)
392 while (format
!= NULL
)
394 format_e
*next
= format
->next
;
395 g_free (format
->title
);
401 /* --------------------------------------------------------------------------------------------- */
402 /** Extract the number of available lines in a panel */
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!!! */
415 add_permission_string (const char *dest
, int width
, file_entry_t
* fe
, int attr
, int color
,
420 l
= get_user_permissions (&fe
->st
);
424 /* Place of the access bit in octal mode */
430 /* The same to the triplet in string mode */
435 for (i
= 0; i
< width
; i
++)
439 if (attr
== SELECTED
|| attr
== MARKED_SELECTED
)
440 tty_setcolor (MARKED_SELECTED_COLOR
);
442 tty_setcolor (MARKED_COLOR
);
445 tty_setcolor (color
);
447 tty_lowlevel_setcolor (-color
);
449 tty_print_char (dest
[i
]);
453 /* --------------------------------------------------------------------------------------------- */
454 /** String representations of various file attributes name */
457 string_file_name (file_entry_t
* fe
, int len
)
459 static char buffer
[MC_MAXPATHLEN
* MB_LEN_MAX
+ 1];
463 g_strlcpy (buffer
, fe
->fname
, sizeof (buffer
));
467 /* --------------------------------------------------------------------------------------------- */
472 unsigned int digits
= 0;
483 /* --------------------------------------------------------------------------------------------- */
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
);
498 g_strlcpy (buf
, _("[dev]"), bufsize
);
501 /* --------------------------------------------------------------------------------------------- */
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
))
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
);
518 size_trunc_len (buffer
, (unsigned int) len
, fe
->st
.st_size
, 0, panels_options
.kilobyte_si
);
523 /* --------------------------------------------------------------------------------------------- */
527 string_file_size_brief (file_entry_t
* fe
, int len
)
529 if (S_ISLNK (fe
->st
.st_mode
) && !fe
->f
.link_to_dir
)
532 if ((S_ISDIR (fe
->st
.st_mode
) || fe
->f
.link_to_dir
) && !DIR_IS_DOTDOT (fe
->fname
))
535 return string_file_size (fe
, len
);
538 /* --------------------------------------------------------------------------------------------- */
539 /** This functions return a string representation of a file entry type */
542 string_file_type (file_entry_t
* fe
, int len
)
544 static char buffer
[2];
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
)
554 else if (fe
->f
.stale_link
)
559 else if (S_ISCHR (fe
->st
.st_mode
))
561 else if (S_ISSOCK (fe
->st
.st_mode
))
563 else if (S_ISDOOR (fe
->st
.st_mode
))
565 else if (S_ISBLK (fe
->st
.st_mode
))
567 else if (S_ISFIFO (fe
->st
.st_mode
))
569 else if (S_ISNAM (fe
->st
.st_mode
))
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
))
581 /* --------------------------------------------------------------------------------------------- */
585 string_file_mtime (file_entry_t
* fe
, int len
)
589 return file_date (fe
->st
.st_mtime
);
592 /* --------------------------------------------------------------------------------------------- */
596 string_file_atime (file_entry_t
* fe
, int len
)
600 return file_date (fe
->st
.st_atime
);
603 /* --------------------------------------------------------------------------------------------- */
607 string_file_ctime (file_entry_t
* fe
, int len
)
611 return file_date (fe
->st
.st_ctime
);
614 /* --------------------------------------------------------------------------------------------- */
618 string_file_permission (file_entry_t
* fe
, int len
)
622 return string_perm (fe
->st
.st_mode
);
625 /* --------------------------------------------------------------------------------------------- */
629 string_file_perm_octal (file_entry_t
* fe
, int len
)
631 static char buffer
[10];
635 g_snprintf (buffer
, sizeof (buffer
), "0%06lo", (unsigned long) fe
->st
.st_mode
);
639 /* --------------------------------------------------------------------------------------------- */
643 string_file_nlinks (file_entry_t
* fe
, int len
)
645 static char buffer
[BUF_TINY
];
649 g_snprintf (buffer
, sizeof (buffer
), "%16d", (int) fe
->st
.st_nlink
);
653 /* --------------------------------------------------------------------------------------------- */
657 string_inode (file_entry_t
* fe
, int len
)
659 static char buffer
[10];
663 g_snprintf (buffer
, sizeof (buffer
), "%lu", (unsigned long) fe
->st
.st_ino
);
667 /* --------------------------------------------------------------------------------------------- */
671 string_file_nuid (file_entry_t
* fe
, int len
)
673 static char buffer
[10];
677 g_snprintf (buffer
, sizeof (buffer
), "%lu", (unsigned long) fe
->st
.st_uid
);
681 /* --------------------------------------------------------------------------------------------- */
685 string_file_ngid (file_entry_t
* fe
, int len
)
687 static char buffer
[10];
691 g_snprintf (buffer
, sizeof (buffer
), "%lu", (unsigned long) fe
->st
.st_gid
);
695 /* --------------------------------------------------------------------------------------------- */
699 string_file_owner (file_entry_t
* fe
, int len
)
703 return get_owner (fe
->st
.st_uid
);
706 /* --------------------------------------------------------------------------------------------- */
710 string_file_group (file_entry_t
* fe
, int len
)
714 return get_group (fe
->st
.st_gid
);
717 /* --------------------------------------------------------------------------------------------- */
721 string_marked (file_entry_t
* fe
, int len
)
725 return fe
->f
.marked
? "*" : " ";
728 /* --------------------------------------------------------------------------------------------- */
732 string_space (file_entry_t
* fe
, int len
)
740 /* --------------------------------------------------------------------------------------------- */
744 string_dot (file_entry_t
* fe
, int len
)
752 /* --------------------------------------------------------------------------------------------- */
755 file_compute_color (int attr
, file_entry_t
* fe
)
760 return (SELECTED_COLOR
);
762 return (MARKED_COLOR
);
763 case MARKED_SELECTED
:
764 return (MARKED_SELECTED_COLOR
);
766 return (NORMAL_COLOR
);
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 */
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
,
792 int color
= NORMAL_COLOR
;
794 format_e
*format
, *home
;
795 file_entry_t
*fe
= NULL
;
796 filename_scroll_flag_t res
= FILENAME_NOSCROLL
;
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
= " ";
814 const char *prepared_text
;
818 txt
= format
->string_fn (fe
, format
->field_len
);
820 len
= format
->field_len
;
821 if (len
+ length
> width
)
822 len
= width
- length
;
826 if (!isstatus
&& panel
->content_shift
> -1 && strcmp (format
->id
, "name") == 0)
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
);
840 name_offset
= str_offset_to_pos (txt
, i
);
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)
854 else if (strcmp (format
->id
, "mode") == 0)
859 tty_setcolor (color
);
861 tty_lowlevel_setcolor (-color
);
863 if (!isstatus
&& panel
->content_shift
> -1)
865 str_fit_to_term (txt
+ name_offset
, len
, HIDE_FIT (format
->just_mode
));
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
,
873 tty_print_string (prepared_text
);
879 if (attr
== SELECTED
|| attr
== MARKED_SELECTED
)
880 tty_setcolor (SELECTED_COLOR
);
882 tty_setcolor (NORMAL_COLOR
);
883 tty_print_one_vline (TRUE
);
893 tty_draw_hline (y
, x
, ' ', width
- length
);
899 /* --------------------------------------------------------------------------------------------- */
902 repaint_file (WPanel
* panel
, int file_index
, gboolean mv
, int attr
, gboolean isstatus
)
904 Widget
*w
= WIDGET (panel
);
909 filename_scroll_flag_t ret_frm
;
911 gboolean panel_is_split
;
914 panel_is_split
= !isstatus
&& panel
->list_cols
> 1;
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 */
934 ypos
= file_index
- panel
->top_file
;
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
)
959 offset
= 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)
971 if (nth_column
+ 1 >= panel
->list_cols
)
974 widget_move (w
, ypos
, offset
);
975 tty_setcolor (NORMAL_COLOR
);
976 tty_print_string (panel_filename_scroll_right_char
);
981 /* --------------------------------------------------------------------------------------------- */
984 display_mini_info (WPanel
* panel
)
986 Widget
*w
= WIDGET (panel
);
988 if (!panels_options
.show_mini_info
)
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
));
1001 /* Status resolves links and show them */
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
;
1011 vfs_path_append_new (panel
->cwd_vpath
, panel
->dir
.list
[panel
->selected
].fname
,
1013 len
= mc_readlink (lc_link_vpath
, link_target
, MC_MAXPATHLEN
- 1);
1014 vfs_path_free (lc_link_vpath
);
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
));
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
))
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
));
1033 /* Default behavior */
1034 repaint_file (panel
, panel
->selected
, FALSE
, STATUS
, TRUE
);
1037 /* --------------------------------------------------------------------------------------------- */
1040 paint_dir (WPanel
* panel
)
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 /* --------------------------------------------------------------------------------------------- */
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
];
1076 if (panel
->marked
<= 0)
1079 buf
= size_only
? b_bytes
: buffer
;
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
));
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);
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 /* --------------------------------------------------------------------------------------------- */
1113 mini_info_separator (const WPanel
* panel
)
1115 if (panels_options
.show_mini_info
)
1117 const Widget
*w
= CONST_WIDGET (panel
);
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 /* --------------------------------------------------------------------------------------------- */
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
)
1144 if (old_cwd
== NULL
|| strcmp (old_cwd
, vfs_path_as_str (panel
->cwd_vpath
)) != 0)
1146 char rpath
[PATH_MAX
];
1150 old_cwd
= g_strdup (vfs_path_as_str (panel
->cwd_vpath
));
1152 if (mc_realpath (old_cwd
, rpath
) == NULL
)
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.
1187 panel_correct_path_to_show (const WPanel
* panel
)
1189 vfs_path_t
*last_vpath
;
1190 const vfs_path_element_t
*path_element
;
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
);
1213 last_vpath
= vfs_path_from_str_flags (prev_path_element
->path
, VPF_NO_CANON
);
1214 last_vpath
->relative
= TRUE
;
1219 last_vpath
= vfs_path_new ();
1220 last_vpath
->relative
= TRUE
;
1223 vfs_path_add_element (last_vpath
, path_element
);
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
);
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
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
);
1256 /* --------------------------------------------------------------------------------------------- */
1259 show_dir (const WPanel
* panel
)
1261 const Widget
*w
= CONST_WIDGET (panel
);
1266 tty_draw_box (w
->y
, w
->x
, w
->lines
, w
->cols
, FALSE
);
1268 if (panels_options
.show_mini_info
)
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
);
1292 widget_move (w
, 0, 3);
1294 if (panel
->is_panelized
)
1295 tty_printf (" %s ", _("Panelize"));
1299 tmp
= panel_get_encoding_info_str (panel
);
1302 tty_printf ("%s", tmp
);
1303 widget_move (w
, 0, 3 + strlen (tmp
));
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
)));
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
);
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
);
1344 tty_set_normal_attrs ();
1347 /* --------------------------------------------------------------------------------------------- */
1350 adjust_top_file (WPanel
* panel
)
1354 items
= panel_items (panel
);
1356 if (panel
->dir
.len
<= items
)
1358 /* If all files fit, show them all. */
1359 panel
->top_file
= 0;
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
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 /* --------------------------------------------------------------------------------------------- */
1407 directory_history_add (WPanel
* panel
, const vfs_path_t
* vpath
)
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 */
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
;
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
);
1434 p
->dir_history
= history_get (p
->hist_name
);
1436 directory_history_add (p
, p
->cwd_vpath
);
1442 /* --------------------------------------------------------------------------------------------- */
1444 /* "history_save" event handler */
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
;
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
);
1464 /* --------------------------------------------------------------------------------------------- */
1467 panel_destroy (WPanel
* p
)
1471 if (panels_options
.auto_save_setup
)
1475 name
= panel_save_name (p
);
1476 panel_save_setup (p
, name
);
1480 panel_clean_dir (p
);
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 /* --------------------------------------------------------------------------------------------- */
1508 panel_format_modified (WPanel
* panel
)
1510 panel
->format_modified
= 1;
1513 /* --------------------------------------------------------------------------------------------- */
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
;
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
);
1531 /* --------------------------------------------------------------------------------------------- */
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';
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 /* --------------------------------------------------------------------------------------------- */
1557 panel_print_header (const WPanel
* panel
)
1559 const Widget
*w
= CONST_WIDGET (panel
);
1563 GString
*format_txt
;
1565 widget_move (w
, 1, 1);
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
++)
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
,
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 /* --------------------------------------------------------------------------------------------- */
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)
1635 else if (strncmp (format
, "half", 4) == 0)
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
;
1665 panel_update_cols (WIDGET (panel
), panel
->frame_size
);
1667 return skip_separators (format
);
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]
1679 opt_size := : size [opt_expand]
1685 /* --------------------------------------------------------------------------------------------- */
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 */
1695 static size_t i18n_timelength
= 0; /* flag: check ?Time length at startup */
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
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 :-) */
1730 format
= skip_separators (format
);
1736 format
= skip_separators (format
+ 1);
1740 format
= skip_separators (format
+ 1);
1744 format
= skip_separators (format
+ 1);
1748 set_justify
= FALSE
;
1752 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
1756 klen
= strlen (panel_fields
[i
].id
);
1758 if (strncmp (format
, panel_fields
[i
].id
, klen
) != 0)
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
;
1773 if (IS_FIT (darr
->just_mode
))
1774 darr
->just_mode
= MAKE_FIT (justify
);
1776 darr
->just_mode
= justify
;
1780 format
= skip_separators (format
);
1782 /* If we have a size specifier */
1787 /* If the size was specified, we don't want
1788 * auto-expansion by default
1790 darr
->expand
= FALSE
;
1792 req_length
= atoi (format
);
1793 darr
->requested_field_len
= req_length
;
1795 format
= skip_numbers (format
);
1797 /* Now, if they insist on expansion */
1800 darr
->expand
= TRUE
;
1814 pos
= strlen (format
);
1818 tmp_format
= g_strndup (format
, pos
);
1819 delete_format (home
);
1821 g_strconcat (_("Unknown tag on display format:"), " ", tmp_format
, (char *) NULL
);
1822 g_free (tmp_format
);
1827 total_cols
+= darr
->requested_field_len
;
1830 *res_total_cols
= total_cols
;
1834 /* --------------------------------------------------------------------------------------------- */
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 */
1843 format_e
*darr
, *home
;
1846 format
= DEFAULT_USER_FORMAT
;
1848 home
= parse_display_format (panel
, format
, error
, isstatus
, &total_cols
);
1855 usable_columns
= WIDGET (panel
)->cols
- 2;
1856 /* Status needn't to be split */
1859 usable_columns
/= panel
->list_cols
;
1860 if (panel
->list_cols
> 1)
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
;
1872 /* If we used more columns than the available columns, adjust that */
1873 if (total_cols
> usable_columns
)
1878 dif
= total_cols
- usable_columns
;
1880 while (dif
!= 0 && pdif
!= dif
)
1884 for (darr
= home
; darr
; darr
= darr
->next
)
1885 if (dif
!= 0 && darr
->field_len
!= 1)
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)
1899 int spaces
= (usable_columns
- total_cols
) / expand_top
;
1901 for (i
= 0, darr
= home
; darr
&& (i
< expand_top
); darr
= darr
->next
)
1904 darr
->field_len
+= spaces
;
1906 darr
->field_len
+= (usable_columns
- total_cols
) % expand_top
;
1913 /* --------------------------------------------------------------------------------------------- */
1914 /** Given the panel->view_type returns the format string to be parsed */
1917 panel_format (WPanel
* panel
)
1920 switch (panel
->list_type
)
1923 return "full perm space nlink space owner space group space size space mtime space name";
1927 static char format
[BUF_TINY
];
1928 int brief_cols
= panel
->brief_cols
;
1936 g_snprintf (format
, sizeof (format
), "half %d type name", brief_cols
);
1941 return panel
->user_format
;
1945 return "half type name | size | mtime";
1949 /* --------------------------------------------------------------------------------------------- */
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
)
1960 return "full perm space nlink space owner space group space size space mtime space name";
1963 return "half type name space bsize space perm space";
1966 return "half type name";
1970 return panel
->user_format
;
1975 /* Panel operation commands */
1978 /* --------------------------------------------------------------------------------------------- */
1979 /** Used to emulate Lynx's entering leaving a directory with the arrow keys */
1982 maybe_cd (gboolean move_up_dir
)
1984 if (panels_options
.navigate_with_arrows
&& (cmdline
->buffer
[0] == '\0'))
1990 up_dir
= vfs_path_from_str ("..");
1991 do_cd (up_dir
, cd_exact
);
1992 vfs_path_free (up_dir
);
1996 if (S_ISDIR (selection (current_panel
)->st
.st_mode
)
1997 || link_isdir (selection (current_panel
)))
2001 vpath
= vfs_path_from_str (selection (current_panel
)->fname
);
2002 do_cd (vpath
, cd_exact
);
2003 vfs_path_free (vpath
);
2008 return MSG_NOT_HANDLED
;
2011 /* --------------------------------------------------------------------------------------------- */
2013 /* if command line is empty then do 'cd ..' */
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
);
2025 return MSG_NOT_HANDLED
;
2028 /* --------------------------------------------------------------------------------------------- */
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 */
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
;
2048 if (filename
== NULL
)
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
);
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
= ¤t_panel
->dir
.list
[i
];
2068 if (DIR_IS_DOTDOT (file_entry
->fname
) || S_ISDIR (file_entry
->st
.st_mode
))
2071 if (!mc_search_run (search
, file_entry
->fname
, 0, file_entry
->fnamelen
, NULL
))
2074 do_file_mark (current_panel
, i
, do_select
);
2077 mc_search_free (search
);
2082 /* --------------------------------------------------------------------------------------------- */
2085 move_down (WPanel
* panel
)
2089 if (panel
->selected
+ 1 == panel
->dir
.len
)
2092 unselect_item (panel
);
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
;
2105 else if (panels_options
.scroll_center
&& (panel
->selected
- panel
->top_file
) > (items
/ 2))
2107 /* Scroll window when cursor is halfway down */
2109 if (panel
->top_file
> panel
->dir
.len
- items
)
2110 panel
->top_file
= panel
->dir
.len
- items
;
2112 select_item (panel
);
2115 /* --------------------------------------------------------------------------------------------- */
2118 move_up (WPanel
* panel
)
2120 if (panel
->selected
== 0)
2123 unselect_item (panel
);
2126 if (panels_options
.scroll_pages
&& panel
->selected
< panel
->top_file
)
2128 /* Scroll window half screen */
2129 panel
->top_file
-= panel_items (panel
) / 2;
2130 if (panel
->top_file
< 0)
2131 panel
->top_file
= 0;
2134 else if (panels_options
.scroll_center
2135 && (panel
->selected
- panel
->top_file
) < (panel_items (panel
) / 2))
2137 /* Scroll window when cursor is halfway up */
2139 if (panel
->top_file
< 0)
2140 panel
->top_file
= 0;
2142 select_item (panel
);
2145 /* --------------------------------------------------------------------------------------------- */
2146 /** Changes the selection by lines (may be negative) */
2149 move_selection (WPanel
* panel
, int lines
)
2152 gboolean adjust
= FALSE
;
2154 new_pos
= panel
->selected
+ lines
;
2155 if (new_pos
>= panel
->dir
.len
)
2156 new_pos
= panel
->dir
.len
- 1;
2161 unselect_item (panel
);
2162 panel
->selected
= new_pos
;
2164 if (panel
->selected
- panel
->top_file
>= panel_items (panel
))
2166 panel
->top_file
+= lines
;
2170 if (panel
->selected
- panel
->top_file
< 0)
2172 panel
->top_file
+= lines
;
2178 if (panel
->top_file
> panel
->selected
)
2179 panel
->top_file
= panel
->selected
;
2180 if (panel
->top_file
< 0)
2181 panel
->top_file
= 0;
2184 select_item (panel
);
2187 /* --------------------------------------------------------------------------------------------- */
2190 move_left (WPanel
* panel
)
2192 if (panel
->list_cols
> 1)
2194 move_selection (panel
, -panel_lines (panel
));
2198 return maybe_cd (TRUE
); /* cd .. */
2201 /* --------------------------------------------------------------------------------------------- */
2204 move_right (WPanel
* panel
)
2206 if (panel
->list_cols
> 1)
2208 move_selection (panel
, panel_lines (panel
));
2212 return maybe_cd (FALSE
); /* cd (selection) */
2215 /* --------------------------------------------------------------------------------------------- */
2218 prev_page (WPanel
* panel
)
2222 if (!panel
->selected
&& !panel
->top_file
)
2225 unselect_item (panel
);
2226 items
= panel_items (panel
);
2227 if (panel
->top_file
< items
)
2228 items
= panel
->top_file
;
2230 panel
->selected
= 0;
2232 panel
->selected
-= items
;
2233 panel
->top_file
-= items
;
2235 select_item (panel
);
2239 /* --------------------------------------------------------------------------------------------- */
2242 goto_parent_dir (WPanel
* panel
)
2244 if (!panel
->is_panelized
)
2248 up_dir
= vfs_path_from_str ("..");
2249 do_cd (up_dir
, cd_exact
);
2250 vfs_path_free (up_dir
);
2254 char *fname
= panel
->dir
.list
[panel
->selected
].fname
;
2256 vfs_path_t
*dname_vpath
;
2258 if (g_path_is_absolute (fname
))
2259 fname
= g_strdup (fname
);
2262 mc_build_filename (vfs_path_as_str (panelized_panel
.root_vpath
), fname
,
2265 bname
= x_basename (fname
);
2268 dname_vpath
= vfs_path_from_str (".");
2273 dname
= g_strndup (fname
, bname
- fname
);
2274 dname_vpath
= vfs_path_from_str (dname
);
2278 do_cd (dname_vpath
, cd_exact
);
2279 try_to_select (panel
, bname
);
2281 vfs_path_free (dname_vpath
);
2286 /* --------------------------------------------------------------------------------------------- */
2289 next_page (WPanel
* panel
)
2293 if (panel
->selected
== panel
->dir
.len
- 1)
2296 unselect_item (panel
);
2297 items
= panel_items (panel
);
2298 if (panel
->top_file
> panel
->dir
.len
- 2 * items
)
2299 items
= panel
->dir
.len
- items
- panel
->top_file
;
2300 if (panel
->top_file
+ items
< 0)
2301 items
= -panel
->top_file
;
2303 panel
->selected
= panel
->dir
.len
- 1;
2305 panel
->selected
+= items
;
2306 panel
->top_file
+= items
;
2308 select_item (panel
);
2312 /* --------------------------------------------------------------------------------------------- */
2315 goto_child_dir (WPanel
* panel
)
2317 if ((S_ISDIR (selection (panel
)->st
.st_mode
) || link_isdir (selection (panel
))))
2321 vpath
= vfs_path_from_str (selection (panel
)->fname
);
2322 do_cd (vpath
, cd_exact
);
2323 vfs_path_free (vpath
);
2327 /* --------------------------------------------------------------------------------------------- */
2330 goto_top_file (WPanel
* panel
)
2332 unselect_item (panel
);
2333 panel
->selected
= panel
->top_file
;
2334 select_item (panel
);
2337 /* --------------------------------------------------------------------------------------------- */
2340 goto_middle_file (WPanel
* panel
)
2342 unselect_item (panel
);
2343 panel
->selected
= panel
->top_file
+ panel_items (panel
) / 2;
2344 select_item (panel
);
2347 /* --------------------------------------------------------------------------------------------- */
2350 goto_bottom_file (WPanel
* panel
)
2352 unselect_item (panel
);
2353 panel
->selected
= panel
->top_file
+ panel_items (panel
) - 1;
2354 select_item (panel
);
2357 /* --------------------------------------------------------------------------------------------- */
2360 move_home (WPanel
* panel
)
2362 if (panel
->selected
== 0)
2365 unselect_item (panel
);
2367 if (panels_options
.torben_fj_mode
)
2369 int middle_pos
= panel
->top_file
+ panel_items (panel
) / 2;
2371 if (panel
->selected
> middle_pos
)
2373 goto_middle_file (panel
);
2376 if (panel
->selected
!= panel
->top_file
)
2378 goto_top_file (panel
);
2383 panel
->top_file
= 0;
2384 panel
->selected
= 0;
2387 select_item (panel
);
2390 /* --------------------------------------------------------------------------------------------- */
2393 move_end (WPanel
* panel
)
2395 if (panel
->selected
== panel
->dir
.len
- 1)
2398 unselect_item (panel
);
2400 if (panels_options
.torben_fj_mode
)
2402 int items
, middle_pos
;
2404 items
= panel_items (panel
);
2405 middle_pos
= panel
->top_file
+ items
/ 2;
2407 if (panel
->selected
< middle_pos
)
2409 goto_middle_file (panel
);
2412 if (panel
->selected
!= panel
->top_file
+ items
- 1)
2414 goto_bottom_file (panel
);
2419 panel
->selected
= panel
->dir
.len
- 1;
2421 select_item (panel
);
2424 /* --------------------------------------------------------------------------------------------- */
2427 do_mark_file (WPanel
* panel
, mark_act_t do_move
)
2429 do_file_mark (panel
, panel
->selected
, selection (panel
)->f
.marked
? 0 : 1);
2430 if ((panels_options
.mark_moves_down
&& do_move
== MARK_DOWN
) || do_move
== MARK_FORCE_DOWN
)
2432 else if (do_move
== MARK_FORCE_UP
)
2436 /* --------------------------------------------------------------------------------------------- */
2439 mark_file (WPanel
* panel
)
2441 do_mark_file (panel
, MARK_DOWN
);
2444 /* --------------------------------------------------------------------------------------------- */
2447 mark_file_up (WPanel
* panel
)
2449 do_mark_file (panel
, MARK_FORCE_UP
);
2452 /* --------------------------------------------------------------------------------------------- */
2455 mark_file_down (WPanel
* panel
)
2457 do_mark_file (panel
, MARK_FORCE_DOWN
);
2460 /* --------------------------------------------------------------------------------------------- */
2463 mark_file_right (WPanel
* panel
)
2468 state_mark
= selection (panel
)->f
.marked
? 0 : 1;
2470 lines
= panel_lines (panel
);
2471 lines
= MIN (lines
, panel
->dir
.len
- panel
->selected
- 1);
2472 for (; lines
!= 0; lines
--)
2474 do_file_mark (panel
, panel
->selected
, state_mark
);
2477 do_file_mark (panel
, panel
->selected
, state_mark
);
2480 /* --------------------------------------------------------------------------------------------- */
2483 mark_file_left (WPanel
* panel
)
2488 state_mark
= selection (panel
)->f
.marked
? 0 : 1;
2490 lines
= panel_lines (panel
);
2491 lines
= MIN (lines
, panel
->selected
+ 1);
2492 for (; lines
!= 0; lines
--)
2494 do_file_mark (panel
, panel
->selected
, state_mark
);
2497 do_file_mark (panel
, panel
->selected
, state_mark
);
2500 /* --------------------------------------------------------------------------------------------- */
2503 panel_select_unselect_files (WPanel
* panel
, const char *title
, const char *history_name
,
2506 int files_only
= (panels_options
.select_flags
& SELECT_FILES_ONLY
) != 0;
2507 int case_sens
= (panels_options
.select_flags
& SELECT_MATCH_CASE
) != 0;
2508 int shell_patterns
= (panels_options
.select_flags
& SELECT_SHELL_PATTERNS
) != 0;
2511 mc_search_t
*search
;
2514 quick_widget_t quick_widgets
[] = {
2516 QUICK_INPUT (INPUT_LAST_TEXT
, history_name
, ®_exp
, NULL
,
2517 FALSE
, FALSE
, INPUT_COMPLETE_FILENAMES
),
2518 QUICK_START_COLUMNS
,
2519 QUICK_CHECKBOX (N_("&Files only"), &files_only
, NULL
),
2520 QUICK_CHECKBOX (N_("&Using shell patterns"), &shell_patterns
, NULL
),
2522 QUICK_CHECKBOX (N_("&Case sensitive"), &case_sens
, NULL
),
2528 quick_dialog_t qdlg
= {
2530 title
, "[Select/Unselect Files]",
2531 quick_widgets
, NULL
, NULL
2534 if (quick_dialog (&qdlg
) == B_CANCEL
)
2537 if (reg_exp
== NULL
|| *reg_exp
== '\0')
2543 search
= mc_search_new (reg_exp
, NULL
);
2544 search
->search_type
= (shell_patterns
!= 0) ? MC_SEARCH_T_GLOB
: MC_SEARCH_T_REGEX
;
2545 search
->is_entire_line
= TRUE
;
2546 search
->is_case_sensitive
= case_sens
!= 0;
2548 for (i
= 0; i
< panel
->dir
.len
; i
++)
2550 if (DIR_IS_DOTDOT (panel
->dir
.list
[i
].fname
))
2552 if (S_ISDIR (panel
->dir
.list
[i
].st
.st_mode
) && files_only
!= 0)
2555 if (mc_search_run (search
, panel
->dir
.list
[i
].fname
, 0, panel
->dir
.list
[i
].fnamelen
, NULL
))
2556 do_file_mark (panel
, i
, do_select
);
2559 mc_search_free (search
);
2563 panels_options
.select_flags
= 0;
2565 panels_options
.select_flags
|= SELECT_MATCH_CASE
;
2566 if (files_only
!= 0)
2567 panels_options
.select_flags
|= SELECT_FILES_ONLY
;
2568 if (shell_patterns
!= 0)
2569 panels_options
.select_flags
|= SELECT_SHELL_PATTERNS
;
2572 /* --------------------------------------------------------------------------------------------- */
2575 panel_select_files (WPanel
* panel
)
2577 panel_select_unselect_files (panel
, _("Select"), ":select_cmd: Select ", TRUE
);
2580 /* --------------------------------------------------------------------------------------------- */
2583 panel_unselect_files (WPanel
* panel
)
2585 panel_select_unselect_files (panel
, _("Unselect"), ":unselect_cmd: Unselect ", FALSE
);
2588 /* --------------------------------------------------------------------------------------------- */
2591 panel_select_invert_files (WPanel
* panel
)
2595 for (i
= 0; i
< panel
->dir
.len
; i
++)
2597 file_entry_t
*file
= &panel
->dir
.list
[i
];
2599 if (!panels_options
.reverse_files_only
|| !S_ISDIR (file
->st
.st_mode
))
2600 do_file_mark (panel
, i
, !file
->f
.marked
);
2604 /* --------------------------------------------------------------------------------------------- */
2605 /** Incremental search of a file name in the panel.
2606 * @param panel instance of WPanel structure
2607 * @param c_code key code
2611 do_search (WPanel
* panel
, int c_code
)
2615 gboolean wrapped
= FALSE
;
2617 mc_search_t
*search
;
2618 char *reg_exp
, *esc_str
;
2619 gboolean is_found
= FALSE
;
2621 l
= strlen (panel
->search_buffer
);
2622 if (c_code
== KEY_BACKSPACE
)
2626 act
= panel
->search_buffer
+ l
;
2627 str_prev_noncomb_char (&act
, panel
->search_buffer
);
2630 panel
->search_chpoint
= 0;
2634 if (c_code
!= 0 && (gsize
) panel
->search_chpoint
< sizeof (panel
->search_char
))
2636 panel
->search_char
[panel
->search_chpoint
] = c_code
;
2637 panel
->search_chpoint
++;
2640 if (panel
->search_chpoint
> 0)
2642 switch (str_is_valid_char (panel
->search_char
, panel
->search_chpoint
))
2647 panel
->search_chpoint
= 0;
2650 if (l
+ panel
->search_chpoint
< sizeof (panel
->search_buffer
))
2652 memcpy (panel
->search_buffer
+ l
, panel
->search_char
, panel
->search_chpoint
);
2653 l
+= panel
->search_chpoint
;
2654 *(panel
->search_buffer
+ l
) = '\0';
2655 panel
->search_chpoint
= 0;
2661 reg_exp
= g_strdup_printf ("%s*", panel
->search_buffer
);
2662 esc_str
= strutils_escape (reg_exp
, -1, ",|\\{}[]", TRUE
);
2663 search
= mc_search_new (esc_str
, NULL
);
2664 search
->search_type
= MC_SEARCH_T_GLOB
;
2665 search
->is_entire_line
= TRUE
;
2667 switch (panels_options
.qsearch_mode
)
2669 case QSEARCH_CASE_SENSITIVE
:
2670 search
->is_case_sensitive
= TRUE
;
2672 case QSEARCH_CASE_INSENSITIVE
:
2673 search
->is_case_sensitive
= FALSE
;
2676 search
->is_case_sensitive
= panel
->sort_info
.case_sensitive
;
2680 sel
= panel
->selected
;
2682 for (i
= panel
->selected
; !wrapped
|| i
!= panel
->selected
; i
++)
2684 if (i
>= panel
->dir
.len
)
2691 if (mc_search_run (search
, panel
->dir
.list
[i
].fname
, 0, panel
->dir
.list
[i
].fnamelen
, NULL
))
2700 unselect_item (panel
);
2701 panel
->selected
= sel
;
2702 select_item (panel
);
2703 widget_redraw (WIDGET (panel
));
2705 else if (c_code
!= KEY_BACKSPACE
)
2707 act
= panel
->search_buffer
+ l
;
2708 str_prev_noncomb_char (&act
, panel
->search_buffer
);
2711 mc_search_free (search
);
2716 /* --------------------------------------------------------------------------------------------- */
2717 /** Start new search.
2718 * @param panel instance of WPanel structure
2722 start_search (WPanel
* panel
)
2724 if (panel
->searching
)
2726 if (panel
->selected
+ 1 == panel
->dir
.len
)
2727 panel
->selected
= 0;
2731 /* in case if there was no search string we need to recall
2732 previous string, with which we ended previous searching */
2733 if (panel
->search_buffer
[0] == '\0')
2734 g_strlcpy (panel
->search_buffer
, panel
->prev_search_buffer
,
2735 sizeof (panel
->search_buffer
));
2737 do_search (panel
, 0);
2741 panel
->searching
= TRUE
;
2742 panel
->search_buffer
[0] = '\0';
2743 panel
->search_char
[0] = '\0';
2744 panel
->search_chpoint
= 0;
2745 display_mini_info (panel
);
2750 /* --------------------------------------------------------------------------------------------- */
2753 stop_search (WPanel
* panel
)
2755 panel
->searching
= FALSE
;
2757 /* if user had overrdied search string, we need to store it
2758 to the previous_search_buffer */
2759 if (panel
->search_buffer
[0] != '\0')
2760 g_strlcpy (panel
->prev_search_buffer
, panel
->search_buffer
,
2761 sizeof (panel
->prev_search_buffer
));
2763 display_mini_info (panel
);
2766 /* --------------------------------------------------------------------------------------------- */
2767 /** Return TRUE if the Enter key has been processed, FALSE otherwise */
2770 do_enter_on_file_entry (file_entry_t
* fe
)
2772 vfs_path_t
*full_name_vpath
;
2776 * Directory or link to directory - change directory.
2777 * Try the same for the entries on which mc_lstat() has failed.
2779 if (S_ISDIR (fe
->st
.st_mode
) || link_isdir (fe
) || (fe
->st
.st_mode
== 0))
2781 vfs_path_t
*fname_vpath
;
2783 fname_vpath
= vfs_path_from_str (fe
->fname
);
2784 if (!do_cd (fname_vpath
, cd_exact
))
2785 message (D_ERROR
, MSG_ERROR
, _("Cannot change directory"));
2786 vfs_path_free (fname_vpath
);
2790 full_name_vpath
= vfs_path_append_new (current_panel
->cwd_vpath
, fe
->fname
, (char *) NULL
);
2792 /* Try associated command */
2793 ok
= regex_command (full_name_vpath
, "Open") != 0;
2794 vfs_path_free (full_name_vpath
);
2798 /* Check if the file is executable */
2799 full_name_vpath
= vfs_path_append_new (current_panel
->cwd_vpath
, fe
->fname
, (char *) NULL
);
2800 ok
= (is_exe (fe
->st
.st_mode
) && if_link_is_exe (full_name_vpath
, fe
));
2801 vfs_path_free (full_name_vpath
);
2805 if (confirm_execute
)
2808 (_("The Midnight Commander"),
2809 _("Do you really want to execute?"), D_NORMAL
, 2, _("&Yes"), _("&No")) != 0)
2813 if (!vfs_current_is_local ())
2816 vfs_path_t
*tmp_vpath
;
2818 tmp_vpath
= vfs_path_append_new (vfs_get_raw_current_dir (), fe
->fname
, (char *) NULL
);
2819 ret
= mc_setctl (tmp_vpath
, VFS_SETCTL_RUN
, NULL
);
2820 vfs_path_free (tmp_vpath
);
2821 /* We took action only if the dialog was shown or the execution
2823 return confirm_execute
|| (ret
== 0);
2829 tmp
= name_quote (fe
->fname
, FALSE
);
2830 cmd
= g_strconcat (".", PATH_SEP_STR
, tmp
, (char *) NULL
);
2832 shell_execute (cmd
, 0);
2837 mc_global
.source_codepage
= default_source_codepage
;
2843 /* --------------------------------------------------------------------------------------------- */
2845 static inline gboolean
2846 do_enter (WPanel
* panel
)
2848 return do_enter_on_file_entry (selection (panel
));
2851 /* --------------------------------------------------------------------------------------------- */
2854 chdir_other_panel (WPanel
* panel
)
2856 const file_entry_t
*entry
= &panel
->dir
.list
[panel
->selected
];
2858 vfs_path_t
*new_dir_vpath
;
2859 char *sel_entry
= NULL
;
2861 if (get_other_type () != view_listing
)
2862 set_display_type (get_other_index (), view_listing
);
2864 if (S_ISDIR (entry
->st
.st_mode
) || entry
->f
.link_to_dir
)
2865 new_dir_vpath
= vfs_path_append_new (panel
->cwd_vpath
, entry
->fname
, (char *) NULL
);
2868 new_dir_vpath
= vfs_path_append_new (panel
->cwd_vpath
, "..", (char *) NULL
);
2869 sel_entry
= strrchr (vfs_path_get_last_path_str (panel
->cwd_vpath
), PATH_SEP
);
2873 do_cd (new_dir_vpath
, cd_exact
);
2874 vfs_path_free (new_dir_vpath
);
2877 try_to_select (current_panel
, sel_entry
);
2883 /* --------------------------------------------------------------------------------------------- */
2885 * Make the current directory of the current panel also the current
2886 * directory of the other panel. Put the other panel to the listing
2887 * mode if needed. If the current panel is panelized, the other panel
2888 * doesn't become panelized.
2892 panel_sync_other (const WPanel
* panel
)
2894 if (get_other_type () != view_listing
)
2895 set_display_type (get_other_index (), view_listing
);
2897 do_panel_cd (other_panel
, current_panel
->cwd_vpath
, cd_exact
);
2899 /* try to select current filename on the other panel */
2900 if (!panel
->is_panelized
)
2901 try_to_select (other_panel
, selection (panel
)->fname
);
2904 /* --------------------------------------------------------------------------------------------- */
2907 chdir_to_readlink (WPanel
* panel
)
2909 vfs_path_t
*new_dir_vpath
;
2910 char buffer
[MC_MAXPATHLEN
];
2913 vfs_path_t
*panel_fname_vpath
;
2916 if (get_other_type () != view_listing
)
2919 if (!S_ISLNK (panel
->dir
.list
[panel
->selected
].st
.st_mode
))
2922 i
= readlink (selection (panel
)->fname
, buffer
, MC_MAXPATHLEN
- 1);
2926 panel_fname_vpath
= vfs_path_from_str (selection (panel
)->fname
);
2927 ok
= (mc_stat (panel_fname_vpath
, &st
) >= 0);
2928 vfs_path_free (panel_fname_vpath
);
2933 if (!S_ISDIR (st
.st_mode
))
2937 p
= strrchr (buffer
, PATH_SEP
);
2941 p
= strrchr (buffer
, PATH_SEP
);
2947 if (IS_PATH_SEP (*buffer
))
2948 new_dir_vpath
= vfs_path_from_str (buffer
);
2950 new_dir_vpath
= vfs_path_append_new (panel
->cwd_vpath
, buffer
, (char *) NULL
);
2953 do_cd (new_dir_vpath
, cd_exact
);
2954 vfs_path_free (new_dir_vpath
);
2960 /* --------------------------------------------------------------------------------------------- */
2963 panel_get_format_field_count (WPanel
* panel
)
2968 for (lc_index
= 0, format
= panel
->format
; format
!= NULL
; format
= format
->next
, lc_index
++)
2974 /* --------------------------------------------------------------------------------------------- */
2976 function return 0 if not found and REAL_INDEX+1 if found
2980 panel_get_format_field_index_by_name (WPanel
* panel
, const char *name
)
2985 for (lc_index
= 1, format
= panel
->format
;
2986 format
!= NULL
&& strcmp (format
->title
, name
) != 0; format
= format
->next
, lc_index
++)
2995 /* --------------------------------------------------------------------------------------------- */
2998 panel_get_format_field_by_index (WPanel
* panel
, gsize lc_index
)
3002 for (format
= panel
->format
; format
!= NULL
&& lc_index
!= 0; format
= format
->next
, lc_index
--)
3008 /* --------------------------------------------------------------------------------------------- */
3010 static const panel_field_t
*
3011 panel_get_sortable_field_by_format (WPanel
* panel
, gsize lc_index
)
3013 const panel_field_t
*pfield
;
3016 format
= panel_get_format_field_by_index (panel
, lc_index
);
3020 pfield
= panel_get_field_by_title (format
->title
);
3023 if (pfield
->sort_routine
== NULL
)
3028 /* --------------------------------------------------------------------------------------------- */
3031 panel_toggle_sort_order_prev (WPanel
* panel
)
3035 const panel_field_t
*pfield
= NULL
;
3037 title
= panel_get_title_without_hotkey (panel
->sort_field
->title_hotkey
);
3038 lc_index
= panel_get_format_field_index_by_name (panel
, title
);
3042 /* search for prev sortable column in panel format */
3043 for (i
= lc_index
- 1;
3044 i
!= 0 && (pfield
= panel_get_sortable_field_by_format (panel
, i
- 1)) == NULL
; i
--)
3050 /* Sortable field not found. Try to search in each array */
3051 for (i
= panel_get_format_field_count (panel
);
3052 i
!= 0 && (pfield
= panel_get_sortable_field_by_format (panel
, i
- 1)) == NULL
; i
--)
3058 panel
->sort_field
= pfield
;
3059 panel_set_sort_order (panel
, pfield
);
3063 /* --------------------------------------------------------------------------------------------- */
3066 panel_toggle_sort_order_next (WPanel
* panel
)
3069 const panel_field_t
*pfield
= NULL
;
3070 gsize format_field_count
;
3073 format_field_count
= panel_get_format_field_count (panel
);
3074 title
= panel_get_title_without_hotkey (panel
->sort_field
->title_hotkey
);
3075 lc_index
= panel_get_format_field_index_by_name (panel
, title
);
3077 if (lc_index
!= 0 && lc_index
!= format_field_count
)
3079 /* search for prev sortable column in panel format */
3081 i
!= format_field_count
3082 && (pfield
= panel_get_sortable_field_by_format (panel
, i
)) == NULL
; i
++)
3088 /* Sortable field not found. Try to search in each array */
3090 i
!= format_field_count
3091 && (pfield
= panel_get_sortable_field_by_format (panel
, i
)) == NULL
; i
++)
3097 panel
->sort_field
= pfield
;
3098 panel_set_sort_order (panel
, pfield
);
3102 /* --------------------------------------------------------------------------------------------- */
3105 panel_select_sort_order (WPanel
* panel
)
3107 const panel_field_t
*sort_order
;
3109 sort_order
= sort_box (&panel
->sort_info
, panel
->sort_field
);
3110 if (sort_order
!= NULL
)
3112 panel
->sort_field
= sort_order
;
3113 panel_set_sort_order (panel
, sort_order
);
3117 /* --------------------------------------------------------------------------------------------- */
3120 * panel_content_scroll_left:
3121 * @param panel the pointer to the panel on which we operate
3123 * scroll long filename to the left (decrement scroll pointer)
3128 panel_content_scroll_left (WPanel
* panel
)
3130 if (panel
->content_shift
> -1)
3132 if (panel
->content_shift
> panel
->max_shift
)
3133 panel
->content_shift
= panel
->max_shift
;
3135 panel
->content_shift
--;
3141 /* --------------------------------------------------------------------------------------------- */
3144 * panel_content_scroll_right:
3145 * @param panel the pointer to the panel on which we operate
3147 * scroll long filename to the right (increment scroll pointer)
3152 panel_content_scroll_right (WPanel
* panel
)
3154 if (panel
->content_shift
< 0 || panel
->content_shift
< panel
->max_shift
)
3156 panel
->content_shift
++;
3162 /* --------------------------------------------------------------------------------------------- */
3165 panel_set_sort_type_by_id (WPanel
* panel
, const char *name
)
3167 if (strcmp (panel
->sort_field
->id
, name
) != 0)
3169 const panel_field_t
*sort_order
;
3171 sort_order
= panel_get_field_by_id (name
);
3172 if (sort_order
== NULL
)
3175 panel
->sort_field
= sort_order
;
3178 panel
->sort_info
.reverse
= !panel
->sort_info
.reverse
;
3180 panel_set_sort_order (panel
, panel
->sort_field
);
3183 /* --------------------------------------------------------------------------------------------- */
3185 * If we moved to the parent directory move the selection pointer to
3186 * the old directory name; If we leave VFS dir, remove FS specificator.
3188 * You do _NOT_ want to add any vfs aware code here. <pavel@ucw.cz>
3192 get_parent_dir_name (const vfs_path_t
* cwd_vpath
, const vfs_path_t
* lwd_vpath
)
3195 const char *p
, *cwd
, *lwd
;
3197 llen
= vfs_path_len (lwd_vpath
);
3198 clen
= vfs_path_len (cwd_vpath
);
3203 cwd
= vfs_path_as_str (cwd_vpath
);
3204 lwd
= vfs_path_as_str (lwd_vpath
);
3206 p
= g_strrstr (lwd
, VFS_PATH_URL_DELIMITER
);
3210 p
= strrchr (lwd
, PATH_SEP
);
3213 && (strncmp (cwd
, lwd
, (size_t) (p
- lwd
)) == 0)
3214 && (clen
== (size_t) (p
- lwd
) || (p
== lwd
&& IS_PATH_SEP (cwd
[0]) && cwd
[1] == '\0')))
3220 /* skip VFS prefix */
3221 while (--p
> lwd
&& !IS_PATH_SEP (*p
))
3223 /* get last component */
3224 while (--p
> lwd
&& !IS_PATH_SEP (*p
))
3227 /* return last component */
3228 return (p
!= lwd
|| IS_PATH_SEP (*p
)) ? p
+ 1 : p
;
3231 /* --------------------------------------------------------------------------------------------- */
3232 /** Wrapper for do_subshell_chdir, check for availability of subshell */
3235 subshell_chdir (const vfs_path_t
* vpath
)
3237 #ifdef ENABLE_SUBSHELL
3238 if (mc_global
.tty
.use_subshell
&& vfs_current_is_local ())
3239 do_subshell_chdir (vpath
, FALSE
);
3240 #else /* ENABLE_SUBSHELL */
3242 #endif /* ENABLE_SUBSHELL */
3245 /* --------------------------------------------------------------------------------------------- */
3247 * Changes the current directory of the panel.
3248 * Don't record change in the directory history.
3252 _do_panel_cd (WPanel
* panel
, const vfs_path_t
* new_dir_vpath
, enum cd_enum cd_type
)
3254 vfs_path_t
*olddir_vpath
;
3256 /* Convert *new_path to a suitable pathname, handle ~user */
3257 if (cd_type
== cd_parse_command
)
3259 const vfs_path_element_t
*element
;
3261 element
= vfs_path_get_by_index (new_dir_vpath
, 0);
3262 if (strcmp (element
->path
, "-") == 0)
3263 new_dir_vpath
= panel
->lwd_vpath
;
3266 if (mc_chdir (new_dir_vpath
) == -1)
3269 /* Success: save previous directory, shutdown status of previous dir */
3270 olddir_vpath
= vfs_path_clone (panel
->cwd_vpath
);
3271 panel_set_lwd (panel
, panel
->cwd_vpath
);
3272 input_free_completions (cmdline
);
3274 vfs_path_free (panel
->cwd_vpath
);
3276 panel
->cwd_vpath
= vfs_path_clone (vfs_get_raw_current_dir ());
3278 vfs_release_path (olddir_vpath
);
3280 subshell_chdir (panel
->cwd_vpath
);
3282 /* Reload current panel */
3283 panel_clean_dir (panel
);
3285 dir_list_load (&panel
->dir
, panel
->cwd_vpath
, panel
->sort_field
->sort_routine
,
3286 &panel
->sort_info
, panel
->filter
);
3287 try_to_select (panel
, get_parent_dir_name (panel
->cwd_vpath
, olddir_vpath
));
3291 update_xterm_title_path ();
3293 vfs_path_free (olddir_vpath
);
3298 /* --------------------------------------------------------------------------------------------- */
3301 directory_history_next (WPanel
* panel
)
3310 next
= g_list_next (panel
->dir_history_current
);
3313 vfs_path_t
*data_vpath
;
3315 data_vpath
= vfs_path_from_str ((char *) next
->data
);
3316 ok
= _do_panel_cd (panel
, data_vpath
, cd_exact
);
3317 vfs_path_free (data_vpath
);
3318 panel
->dir_history_current
= next
;
3320 /* skip directories that present in history but absent in file system */
3325 /* --------------------------------------------------------------------------------------------- */
3328 directory_history_prev (WPanel
* panel
)
3337 prev
= g_list_previous (panel
->dir_history_current
);
3340 vfs_path_t
*data_vpath
;
3342 data_vpath
= vfs_path_from_str ((char *) prev
->data
);
3343 ok
= _do_panel_cd (panel
, data_vpath
, cd_exact
);
3344 vfs_path_free (data_vpath
);
3345 panel
->dir_history_current
= prev
;
3347 /* skip directories that present in history but absent in file system */
3352 /* --------------------------------------------------------------------------------------------- */
3355 directory_history_list (WPanel
* panel
)
3358 gboolean ok
= FALSE
;
3361 pos
= g_list_position (panel
->dir_history_current
, panel
->dir_history
);
3363 s
= history_show (&panel
->dir_history
, WIDGET (panel
), pos
);
3366 vfs_path_t
*s_vpath
;
3368 s_vpath
= vfs_path_from_str (s
);
3369 ok
= _do_panel_cd (panel
, s_vpath
, cd_exact
);
3371 directory_history_add (panel
, panel
->cwd_vpath
);
3373 message (D_ERROR
, MSG_ERROR
, _("Cannot change directory"));
3374 vfs_path_free (s_vpath
);
3380 /* Since history is fully modified in history_show(), panel->dir_history actually
3381 * points to the invalid place. Try restore current postition here. */
3385 panel
->dir_history_current
= panel
->dir_history
;
3387 for (i
= 0; i
<= pos
; i
++)
3391 prev
= g_list_previous (panel
->dir_history_current
);
3395 panel
->dir_history_current
= prev
;
3400 /* --------------------------------------------------------------------------------------------- */
3403 panel_execute_cmd (WPanel
* panel
, long command
)
3405 int res
= MSG_HANDLED
;
3407 if (command
!= CK_Search
)
3408 stop_search (panel
);
3420 /* reset state of marks flag */
3429 case CK_PanelOtherCd
:
3430 chdir_other_panel (panel
);
3432 case CK_PanelOtherCdLink
:
3433 chdir_to_readlink (panel
);
3438 case CK_DeleteSingle
:
3439 delete_cmd_local ();
3451 rename_cmd_local ();
3453 case CK_SelectInvert
:
3454 panel_select_invert_files (panel
);
3457 panel_select_files (panel
);
3460 panel_select_ext_cmd ();
3463 panel_unselect_files (panel
);
3472 goto_child_dir (panel
);
3475 goto_parent_dir (panel
);
3478 directory_history_list (panel
);
3480 case CK_HistoryNext
:
3481 directory_history_next (panel
);
3483 case CK_HistoryPrev
:
3484 directory_history_prev (panel
);
3486 case CK_BottomOnScreen
:
3487 goto_bottom_file (panel
);
3489 case CK_MiddleOnScreen
:
3490 goto_middle_file (panel
);
3492 case CK_TopOnScreen
:
3493 goto_top_file (panel
);
3499 mark_file_up (panel
);
3502 mark_file_down (panel
);
3505 mark_file_left (panel
);
3508 mark_file_right (panel
);
3510 case CK_CdParentSmart
:
3511 res
= force_maybe_cd ();
3520 res
= move_left (panel
);
3523 res
= move_right (panel
);
3532 case CK_SelectCodepage
:
3533 panel_change_encoding (panel
);
3537 panel_content_scroll_left (panel
);
3539 case CK_ScrollRight
:
3540 panel_content_scroll_right (panel
);
3543 start_search (panel
);
3547 case CK_PanelOtherSync
:
3548 panel_sync_other (panel
);
3551 panel_select_sort_order (panel
);
3554 panel_toggle_sort_order_prev (panel
);
3557 panel_toggle_sort_order_next (panel
);
3559 case CK_SortReverse
:
3560 panel
->sort_info
.reverse
= !panel
->sort_info
.reverse
;
3561 panel_set_sort_order (panel
, panel
->sort_field
);
3564 panel_set_sort_type_by_id (panel
, "name");
3567 panel_set_sort_type_by_id (panel
, "extension");
3570 panel_set_sort_type_by_id (panel
, "size");
3572 case CK_SortByMTime
:
3573 panel_set_sort_type_by_id (panel
, "mtime");
3576 res
= MSG_NOT_HANDLED
;
3583 /* --------------------------------------------------------------------------------------------- */
3586 panel_key (WPanel
* panel
, int key
)
3590 if (is_abort_char (key
))
3592 stop_search (panel
);
3596 if (panel
->searching
&& ((key
>= ' ' && key
<= 255) || key
== KEY_BACKSPACE
))
3598 do_search (panel
, key
);
3602 for (i
= 0; panel_map
[i
].key
!= 0; i
++)
3603 if (key
== panel_map
[i
].key
)
3604 return panel_execute_cmd (panel
, panel_map
[i
].command
);
3606 if (panels_options
.torben_fj_mode
&& key
== ALT ('h'))
3608 goto_middle_file (panel
);
3612 if (!command_prompt
&& ((key
>= ' ' && key
<= 255) || key
== KEY_BACKSPACE
))
3614 start_search (panel
);
3615 do_search (panel
, key
);
3619 return MSG_NOT_HANDLED
;
3622 /* --------------------------------------------------------------------------------------------- */
3625 panel_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
3627 WPanel
*panel
= PANEL (w
);
3633 /* subscribe to "history_load" event */
3634 mc_event_add (w
->owner
->event_group
, MCEVENT_HISTORY_LOAD
, panel_load_history
, w
, NULL
);
3635 /* subscribe to "history_save" event */
3636 mc_event_add (w
->owner
->event_group
, MCEVENT_HISTORY_SAVE
, panel_save_history
, w
, NULL
);
3640 /* Repaint everything, including frame and separator */
3643 panel_print_header (panel
);
3644 adjust_top_file (panel
);
3646 mini_info_separator (panel
);
3647 display_mini_info (panel
);
3653 current_panel
= panel
;
3656 if (mc_chdir (panel
->cwd_vpath
) != 0)
3660 cwd
= vfs_path_to_str_flags (panel
->cwd_vpath
, 0, VPF_STRIP_PASSWORD
);
3661 message (D_ERROR
, MSG_ERROR
, _("Cannot chdir to \"%s\"\n%s"),
3662 cwd
, unix_error_string (errno
));
3666 subshell_chdir (panel
->cwd_vpath
);
3668 update_xterm_title_path ();
3669 select_item (panel
);
3674 bb
= find_buttonbar (w
->owner
);
3675 midnight_set_buttonbar (bb
);
3676 widget_redraw (WIDGET (bb
));
3680 /* Janne: look at this for the multiple panel options */
3681 stop_search (panel
);
3684 unselect_item (panel
);
3688 return panel_key (panel
, parm
);
3691 return panel_execute_cmd (panel
, parm
);
3694 /* unsubscribe from "history_load" event */
3695 mc_event_del (w
->owner
->event_group
, MCEVENT_HISTORY_LOAD
, panel_load_history
, w
);
3696 /* unsubscribe from "history_save" event */
3697 mc_event_del (w
->owner
->event_group
, MCEVENT_HISTORY_SAVE
, panel_save_history
, w
);
3698 panel_destroy (panel
);
3703 return widget_default_callback (w
, sender
, msg
, parm
, data
);
3707 /* --------------------------------------------------------------------------------------------- */
3709 /* Panel mouse events support routines */
3713 mouse_toggle_mark (WPanel
* panel
)
3715 do_mark_file (panel
, MARK_DONT_MOVE
);
3716 mouse_marking
= selection (panel
)->f
.marked
;
3717 mouse_mark_panel
= current_panel
;
3720 /* --------------------------------------------------------------------------------------------- */
3723 mouse_set_mark (WPanel
* panel
)
3725 if (mouse_mark_panel
== panel
)
3727 if (mouse_marking
&& !(selection (panel
)->f
.marked
))
3728 do_mark_file (panel
, MARK_DONT_MOVE
);
3729 else if (!mouse_marking
&& (selection (panel
)->f
.marked
))
3730 do_mark_file (panel
, MARK_DONT_MOVE
);
3734 /* --------------------------------------------------------------------------------------------- */
3737 mark_if_marking (WPanel
* panel
, const mouse_event_t
* event
)
3739 if ((event
->buttons
& GPM_B_RIGHT
) != 0)
3741 if (event
->msg
== MSG_MOUSE_DOWN
)
3742 mouse_toggle_mark (panel
);
3744 mouse_set_mark (panel
);
3751 /* --------------------------------------------------------------------------------------------- */
3752 /** Determine which column was clicked, and sort the panel on
3753 * that column, or reverse sort on that column if already
3754 * sorted on that column.
3758 mouse_sort_col (WPanel
* panel
, int x
)
3761 const char *lc_sort_name
= NULL
;
3762 panel_field_t
*col_sort_format
= NULL
;
3765 for (i
= 0, format
= panel
->format
; format
!= NULL
; format
= format
->next
)
3767 i
+= format
->field_len
;
3771 lc_sort_name
= format
->title
;
3776 if (lc_sort_name
== NULL
)
3779 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
3783 title
= panel_get_title_without_hotkey (panel_fields
[i
].title_hotkey
);
3784 if (strcmp (title
, lc_sort_name
) == 0 && panel_fields
[i
].sort_routine
!= NULL
)
3786 col_sort_format
= &panel_fields
[i
];
3791 if (col_sort_format
== NULL
)
3794 if (panel
->sort_field
== col_sort_format
)
3796 /* reverse the sort if clicked column is already the sorted column */
3797 panel
->sort_info
.reverse
= !panel
->sort_info
.reverse
;
3801 /* new sort is forced to be ascending */
3802 panel
->sort_info
.reverse
= FALSE
;
3804 panel_set_sort_order (panel
, col_sort_format
);
3807 /* --------------------------------------------------------------------------------------------- */
3810 panel_mouse_callback (Widget
* w
, mouse_msg_t msg
, mouse_event_t
* event
)
3812 WPanel
*panel
= PANEL (w
);
3815 is_active
= widget_is_active (w
);
3819 case MSG_MOUSE_DOWN
:
3825 directory_history_prev (panel
);
3826 else if (event
->x
== w
->cols
- 2)
3828 directory_history_next (panel
);
3829 else if (event
->x
>= w
->cols
- 5 && event
->x
<= w
->cols
- 3)
3831 directory_history_list (panel
);
3832 else if (event
->x
== w
->cols
- 6)
3833 /* "." button show/hide hidden files */
3834 send_message (midnight_dlg
, NULL
, MSG_ACTION
, CK_ShowHidden
, NULL
);
3837 /* no other events on 1st line, return MOU_UNHANDLED */
3838 event
->result
.abort
= TRUE
;
3839 /* avoid extra panel redraw */
3847 /* sort on clicked column */
3848 mouse_sort_col (panel
, event
->x
+ 1);
3856 case MSG_MOUSE_DRAG
:
3858 int y
, last
, my_index
;
3860 last
= panel
->dir
.len
- 1;
3863 if (panel
->top_file
+ y
> last
)
3867 my_index
= panel
->top_file
+ y
;
3869 if (panel
->list_type
== list_brief
&& panel
->list_cols
> 1)
3873 width
= (w
->cols
- 2) / panel
->list_cols
;
3874 lines
= panel_lines (panel
);
3875 my_index
+= lines
* (event
->x
/ width
);
3878 if (my_index
> last
)
3882 if (my_index
!= panel
->selected
)
3884 unselect_item (panel
);
3885 panel
->selected
= my_index
;
3886 select_item (panel
);
3889 /* This one is new */
3890 mark_if_marking (panel
, event
);
3897 case MSG_MOUSE_CLICK
:
3898 if ((event
->count
& GPM_DOUBLE
) != 0)
3903 lines
= panel_lines (panel
);
3910 case MSG_MOUSE_MOVE
:
3913 case MSG_MOUSE_SCROLL_UP
:
3916 if (panels_options
.mouse_move_pages
&& panel
->top_file
> 0)
3918 else /* We are in first page */
3923 case MSG_MOUSE_SCROLL_DOWN
:
3926 if (panels_options
.mouse_move_pages
3927 && panel
->top_file
+ panel_items (panel
) < panel
->dir
.len
)
3929 else /* We are in last page */
3942 /* --------------------------------------------------------------------------------------------- */
3945 reload_panelized (WPanel
* panel
)
3948 dir_list
*list
= &panel
->dir
;
3950 /* refresh current VFS directory required for vfs_path_from_str() */
3951 (void) mc_chdir (panel
->cwd_vpath
);
3953 for (i
= 0, j
= 0; i
< list
->len
; i
++)
3957 if (list
->list
[i
].f
.marked
)
3959 /* Unmark the file in advance. In case the following mc_lstat
3960 * fails we are done, else we have to mark the file again
3961 * (Note: do_file_mark depends on a valid "list->list [i].buf").
3962 * IMO that's the best way to update the panel's summary status
3965 do_file_mark (panel
, i
, 0);
3967 vpath
= vfs_path_from_str (list
->list
[i
].fname
);
3968 if (mc_lstat (vpath
, &list
->list
[i
].st
) != 0)
3969 g_free (list
->list
[i
].fname
);
3972 if (list
->list
[i
].f
.marked
)
3973 do_file_mark (panel
, i
, 1);
3975 list
->list
[j
] = list
->list
[i
];
3978 vfs_path_free (vpath
);
3981 dir_list_init (list
);
3985 if (panel
!= current_panel
)
3986 (void) mc_chdir (current_panel
->cwd_vpath
);
3989 /* --------------------------------------------------------------------------------------------- */
3992 update_one_panel_widget (WPanel
* panel
, panel_update_flags_t flags
, const char *current_file
)
3994 gboolean free_pointer
;
3995 char *my_current_file
= NULL
;
3997 if ((flags
& UP_RELOAD
) != 0)
3999 panel
->is_panelized
= FALSE
;
4000 mc_setctl (panel
->cwd_vpath
, VFS_SETCTL_FLUSH
, 0);
4001 memset (&(panel
->dir_stat
), 0, sizeof (panel
->dir_stat
));
4004 /* If current_file == -1 (an invalid pointer) then preserve selection */
4005 free_pointer
= current_file
== UP_KEEPSEL
;
4009 my_current_file
= g_strdup (panel
->dir
.list
[panel
->selected
].fname
);
4010 current_file
= my_current_file
;
4013 if (panel
->is_panelized
)
4014 reload_panelized (panel
);
4016 panel_reload (panel
);
4018 try_to_select (panel
, current_file
);
4022 g_free (my_current_file
);
4025 /* --------------------------------------------------------------------------------------------- */
4028 update_one_panel (int which
, panel_update_flags_t flags
, const char *current_file
)
4030 if (get_display_type (which
) == view_listing
)
4034 panel
= PANEL (get_panel_widget (which
));
4035 if (panel
->is_panelized
)
4036 flags
&= ~UP_RELOAD
;
4037 update_one_panel_widget (panel
, flags
, current_file
);
4041 /* --------------------------------------------------------------------------------------------- */
4044 do_select (WPanel
* panel
, int i
)
4046 if (i
!= panel
->selected
)
4049 panel
->selected
= i
;
4050 panel
->top_file
= panel
->selected
- (WIDGET (panel
)->lines
- 2) / 2;
4051 if (panel
->top_file
< 0)
4052 panel
->top_file
= 0;
4056 /* --------------------------------------------------------------------------------------------- */
4059 do_try_to_select (WPanel
* panel
, const char *name
)
4066 do_select (panel
, 0);
4070 /* We only want the last component of the directory,
4071 * and from this only the name without suffix.
4072 * Cut prefix if the panel is not panelized */
4074 if (panel
->is_panelized
)
4075 subdir
= vfs_strip_suffix_from_filename (name
);
4077 subdir
= vfs_strip_suffix_from_filename (x_basename (name
));
4079 /* Search that subdir or filename without prefix (if not panelized panel), select it if found */
4080 for (i
= 0; i
< panel
->dir
.len
; i
++)
4082 if (strcmp (subdir
, panel
->dir
.list
[i
].fname
) == 0)
4084 do_select (panel
, i
);
4090 /* Try to select a file near the file that is missing */
4091 if (panel
->selected
>= panel
->dir
.len
)
4092 do_select (panel
, panel
->dir
.len
- 1);
4096 /* --------------------------------------------------------------------------------------------- */
4098 /* event callback */
4100 event_update_panels (const gchar
* event_group_name
, const gchar
* event_name
,
4101 gpointer init_data
, gpointer data
)
4103 (void) event_group_name
;
4108 update_panels (UP_RELOAD
, UP_KEEPSEL
);
4113 /* --------------------------------------------------------------------------------------------- */
4115 /* event callback */
4117 panel_save_current_file_to_clip_file (const gchar
* event_group_name
, const gchar
* event_name
,
4118 gpointer init_data
, gpointer data
)
4120 (void) event_group_name
;
4125 if (current_panel
->marked
== 0)
4126 mc_event_raise (MCEVENT_GROUP_CORE
, "clipboard_text_to_file",
4127 (gpointer
) selection (current_panel
)->fname
);
4131 gboolean first
= TRUE
;
4134 for (i
= 0; i
< current_panel
->dir
.len
; i
++)
4135 if (current_panel
->dir
.list
[i
].f
.marked
!= 0)
4136 { /* Skip the unmarked ones */
4139 flist
= g_strdup (current_panel
->dir
.list
[i
].fname
);
4144 /* Add empty lines after the file */
4148 g_strconcat (flist
, "\n", current_panel
->dir
.list
[i
].fname
, (char *) NULL
);
4154 mc_event_raise (MCEVENT_GROUP_CORE
, "clipboard_text_to_file", (gpointer
) flist
);
4160 /* --------------------------------------------------------------------------------------------- */
4163 panel_recursive_cd_to_parent (const vfs_path_t
* vpath
)
4165 vfs_path_t
*cwd_vpath
;
4167 cwd_vpath
= vfs_path_clone (vpath
);
4169 while (mc_chdir (cwd_vpath
) < 0)
4171 const char *panel_cwd_path
;
4172 vfs_path_t
*tmp_vpath
;
4174 /* check if path contains only '/' */
4175 panel_cwd_path
= vfs_path_as_str (cwd_vpath
);
4176 if (IS_PATH_SEP (panel_cwd_path
[0]) && panel_cwd_path
[1] == '\0')
4179 tmp_vpath
= vfs_path_vtokens_get (cwd_vpath
, 0, -1);
4180 vfs_path_free (cwd_vpath
);
4182 vfs_path_build_filename (PATH_SEP_STR
, vfs_path_as_str (tmp_vpath
), (char *) NULL
);
4183 vfs_path_free (tmp_vpath
);
4189 /* --------------------------------------------------------------------------------------------- */
4190 /*** public functions ****************************************************************************/
4191 /* --------------------------------------------------------------------------------------------- */
4194 try_to_select (WPanel
* panel
, const char *name
)
4196 do_try_to_select (panel
, name
);
4197 select_item (panel
);
4200 /* --------------------------------------------------------------------------------------------- */
4203 panel_clean_dir (WPanel
* panel
)
4205 panel
->top_file
= 0;
4206 panel
->selected
= 0;
4208 panel
->dirs_marked
= 0;
4210 panel
->searching
= FALSE
;
4211 panel
->is_panelized
= FALSE
;
4213 panel
->content_shift
= -1;
4214 panel
->max_shift
= -1;
4216 dir_list_clean (&panel
->dir
);
4219 /* --------------------------------------------------------------------------------------------- */
4221 * Set Up panel's current dir object
4223 * @param panel panel object
4224 * @param path_str string contain path
4228 panel_set_cwd (WPanel
* panel
, const vfs_path_t
* vpath
)
4230 if (vpath
!= panel
->cwd_vpath
) /* check if new vpath is not the panel->cwd_vpath object */
4232 vfs_path_free (panel
->cwd_vpath
);
4233 panel
->cwd_vpath
= vfs_path_clone (vpath
);
4237 /* --------------------------------------------------------------------------------------------- */
4239 * Set Up panel's last working dir object
4241 * @param panel panel object
4242 * @param path_str string contain path
4246 panel_set_lwd (WPanel
* panel
, const vfs_path_t
* vpath
)
4248 if (vpath
!= panel
->lwd_vpath
) /* check if new vpath is not the panel->lwd_vpath object */
4250 vfs_path_free (panel
->lwd_vpath
);
4251 panel
->lwd_vpath
= vfs_path_clone (vpath
);
4255 /* --------------------------------------------------------------------------------------------- */
4257 * Panel creation for specified directory.
4259 * @param panel_name specifies the name of the panel for setup retieving
4260 * @param wpath the path of working panel directory. If path is NULL then panel will be created
4261 * for current directory
4263 * @return new instance of WPanel
4267 panel_new_with_dir (const char *panel_name
, const vfs_path_t
* vpath
)
4273 char *curdir
= NULL
;
4275 panel
= g_new0 (WPanel
, 1);
4277 /* No know sizes of the panel at startup */
4278 widget_init (w
, 0, 0, 0, 0, panel_callback
, panel_mouse_callback
);
4279 /* We do not want the cursor */
4280 widget_want_cursor (w
, FALSE
);
4284 curdir
= _vfs_get_cwd ();
4285 panel_set_cwd (panel
, vpath
);
4290 panel
->cwd_vpath
= vfs_path_clone (vfs_get_raw_current_dir ());
4293 panel_set_lwd (panel
, vfs_get_raw_current_dir ());
4295 panel
->hist_name
= g_strconcat ("Dir Hist ", panel_name
, (char *) NULL
);
4296 /* directories history will be get later */
4298 panel
->dir
.size
= DIR_LIST_MIN_SIZE
;
4299 panel
->dir
.list
= g_new (file_entry_t
, panel
->dir
.size
);
4302 panel
->filter
= NULL
;
4303 panel
->list_cols
= 1;
4304 panel
->brief_cols
= 2;
4305 panel
->top_file
= 0;
4306 panel
->selected
= 0;
4310 panel
->searching
= FALSE
;
4311 panel
->dirs_marked
= 0;
4312 panel
->is_panelized
= FALSE
;
4313 panel
->format
= NULL
;
4314 panel
->status_format
= NULL
;
4315 panel
->format_modified
= 1;
4316 panel
->content_shift
= -1;
4317 panel
->max_shift
= -1;
4319 panel
->panel_name
= g_strdup (panel_name
);
4320 panel
->user_format
= g_strdup (DEFAULT_USER_FORMAT
);
4323 panel
->codepage
= SELECT_CHARSET_NO_TRANSLATE
;
4326 for (i
= 0; i
< LIST_TYPES
; i
++)
4327 panel
->user_status_format
[i
] = g_strdup (DEFAULT_USER_FORMAT
);
4329 panel
->search_buffer
[0] = '\0';
4330 panel
->prev_search_buffer
[0] = '\0';
4331 panel
->frame_size
= frame_half
;
4333 section
= g_strconcat ("Temporal:", panel
->panel_name
, (char *) NULL
);
4334 if (!mc_config_has_group (mc_global
.main_config
, section
))
4337 section
= g_strdup (panel
->panel_name
);
4339 panel_load_setup (panel
, section
);
4342 /* Load format strings */
4343 err
= set_panel_formats (panel
);
4345 set_panel_formats (panel
);
4349 const vfs_path_element_t
*path_element
;
4351 path_element
= vfs_path_get_by_index (panel
->cwd_vpath
, -1);
4352 if (path_element
->encoding
!= NULL
)
4353 panel
->codepage
= get_codepage_index (path_element
->encoding
);
4357 if (mc_chdir (panel
->cwd_vpath
) != 0)
4360 panel
->codepage
= SELECT_CHARSET_NO_TRANSLATE
;
4363 vfs_path_free (panel
->cwd_vpath
);
4364 panel
->cwd_vpath
= vfs_path_clone (vfs_get_raw_current_dir ());
4367 /* Load the default format */
4368 dir_list_load (&panel
->dir
, panel
->cwd_vpath
, panel
->sort_field
->sort_routine
,
4369 &panel
->sort_info
, panel
->filter
);
4371 /* Restore old right path */
4374 vfs_path_t
*tmp_vpath
;
4376 tmp_vpath
= vfs_path_from_str (curdir
);
4377 err
= mc_chdir (tmp_vpath
);
4378 vfs_path_free (tmp_vpath
);
4385 /* --------------------------------------------------------------------------------------------- */
4388 panel_reload (WPanel
* panel
)
4390 struct stat current_stat
;
4391 vfs_path_t
*cwd_vpath
;
4393 if (panels_options
.fast_reload
&& stat (vfs_path_as_str (panel
->cwd_vpath
), ¤t_stat
) == 0
4394 && current_stat
.st_ctime
== panel
->dir_stat
.st_ctime
4395 && current_stat
.st_mtime
== panel
->dir_stat
.st_mtime
)
4398 cwd_vpath
= panel_recursive_cd_to_parent (panel
->cwd_vpath
);
4399 vfs_path_free (panel
->cwd_vpath
);
4401 if (cwd_vpath
== NULL
)
4403 panel
->cwd_vpath
= vfs_path_from_str (PATH_SEP_STR
);
4404 panel_clean_dir (panel
);
4405 dir_list_init (&panel
->dir
);
4409 panel
->cwd_vpath
= cwd_vpath
;
4410 memset (&(panel
->dir_stat
), 0, sizeof (panel
->dir_stat
));
4413 dir_list_reload (&panel
->dir
, panel
->cwd_vpath
, panel
->sort_field
->sort_routine
,
4414 &panel
->sort_info
, panel
->filter
);
4417 if (panel
->selected
>= panel
->dir
.len
)
4418 do_select (panel
, panel
->dir
.len
- 1);
4420 recalculate_panel_summary (panel
);
4423 /* --------------------------------------------------------------------------------------------- */
4424 /* Switches the panel to the mode specified in the format */
4425 /* Seting up both format and status string. Return: 0 - on success; */
4426 /* 1 - format error; 2 - status error; 3 - errors in both formats. */
4429 set_panel_formats (WPanel
* p
)
4435 form
= use_display_format (p
, panel_format (p
), &err
, FALSE
);
4444 delete_format (p
->format
);
4448 if (panels_options
.show_mini_info
)
4450 form
= use_display_format (p
, mini_status_format (p
), &err
, TRUE
);
4459 delete_format (p
->status_format
);
4460 p
->status_format
= form
;
4464 panel_format_modified (p
);
4465 panel_update_cols (WIDGET (p
), p
->frame_size
);
4468 message (D_ERROR
, _("Warning"),
4469 _("User supplied format looks invalid, reverting to default."));
4472 g_free (p
->user_format
);
4473 p
->user_format
= g_strdup (DEFAULT_USER_FORMAT
);
4477 g_free (p
->user_status_format
[p
->list_type
]);
4478 p
->user_status_format
[p
->list_type
] = g_strdup (DEFAULT_USER_FORMAT
);
4484 /* --------------------------------------------------------------------------------------------- */
4487 panel_update_cols (Widget
* widget
, panel_display_t frame_size
)
4491 /* don't touch panel if it is not in dialog yet */
4492 /* if panel is not in dialog it is not in widgets list
4493 and cannot be compared with get_panel_widget() result */
4494 if (widget
->owner
== NULL
)
4497 if (panels_layout
.horizontal_split
)
4499 widget
->cols
= COLS
;
4503 if (frame_size
== frame_full
)
4508 else if (widget
== get_panel_widget (0))
4510 cols
= panels_layout
.left_panel_size
;
4515 cols
= COLS
- panels_layout
.left_panel_size
;
4516 origin
= panels_layout
.left_panel_size
;
4519 widget
->cols
= cols
;
4523 /* --------------------------------------------------------------------------------------------- */
4525 /* Select current item and readjust the panel */
4527 select_item (WPanel
* panel
)
4529 /* Although currently all over the code we set the selection and
4530 top file to decent values before calling select_item, I could
4531 forget it someday, so it's better to do the actual fitting here */
4533 if (panel
->selected
< 0)
4534 panel
->selected
= 0;
4536 if (panel
->selected
> panel
->dir
.len
- 1)
4537 panel
->selected
= panel
->dir
.len
- 1;
4539 adjust_top_file (panel
);
4543 execute_hooks (select_file_hook
);
4546 /* --------------------------------------------------------------------------------------------- */
4547 /** Clears all files in the panel, used only when one file was marked */
4549 unmark_files (WPanel
* panel
)
4556 for (i
= 0; i
< panel
->dir
.len
; i
++)
4557 file_mark (panel
, i
, 0);
4559 panel
->dirs_marked
= 0;
4564 /* --------------------------------------------------------------------------------------------- */
4565 /** Recalculate the panels summary information, used e.g. when marked
4566 files might have been removed by an external command */
4569 recalculate_panel_summary (WPanel
* panel
)
4574 panel
->dirs_marked
= 0;
4577 for (i
= 0; i
< panel
->dir
.len
; i
++)
4578 if (panel
->dir
.list
[i
].f
.marked
)
4580 /* do_file_mark will return immediately if newmark == oldmark.
4581 So we have to first unmark it to get panel's summary information
4582 updated. (Norbert) */
4583 panel
->dir
.list
[i
].f
.marked
= 0;
4584 do_file_mark (panel
, i
, 1);
4588 /* --------------------------------------------------------------------------------------------- */
4589 /** This routine marks a file or a directory */
4592 do_file_mark (WPanel
* panel
, int idx
, int mark
)
4594 if (panel
->dir
.list
[idx
].f
.marked
== mark
)
4597 /* Only '..' can't be marked, '.' isn't visible */
4598 if (DIR_IS_DOTDOT (panel
->dir
.list
[idx
].fname
))
4601 file_mark (panel
, idx
, mark
);
4602 if (panel
->dir
.list
[idx
].f
.marked
)
4606 if (S_ISDIR (panel
->dir
.list
[idx
].st
.st_mode
))
4608 if (panel
->dir
.list
[idx
].f
.dir_size_computed
)
4609 panel
->total
+= (uintmax_t) panel
->dir
.list
[idx
].st
.st_size
;
4610 panel
->dirs_marked
++;
4613 panel
->total
+= (uintmax_t) panel
->dir
.list
[idx
].st
.st_size
;
4619 if (S_ISDIR (panel
->dir
.list
[idx
].st
.st_mode
))
4621 if (panel
->dir
.list
[idx
].f
.dir_size_computed
)
4622 panel
->total
-= (uintmax_t) panel
->dir
.list
[idx
].st
.st_size
;
4623 panel
->dirs_marked
--;
4626 panel
->total
-= (uintmax_t) panel
->dir
.list
[idx
].st
.st_size
;
4632 /* --------------------------------------------------------------------------------------------- */
4634 * Changes the current directory of the panel.
4635 * Record change in the directory history.
4638 do_panel_cd (WPanel
* panel
, const vfs_path_t
* new_dir_vpath
, enum cd_enum cd_type
)
4642 r
= _do_panel_cd (panel
, new_dir_vpath
, cd_type
);
4644 directory_history_add (panel
, panel
->cwd_vpath
);
4648 /* --------------------------------------------------------------------------------------------- */
4651 file_mark (WPanel
* panel
, int lc_index
, int val
)
4653 if (panel
->dir
.list
[lc_index
].f
.marked
!= val
)
4655 panel
->dir
.list
[lc_index
].f
.marked
= val
;
4660 /* --------------------------------------------------------------------------------------------- */
4663 panel_re_sort (WPanel
* panel
)
4671 filename
= g_strdup (selection (panel
)->fname
);
4672 unselect_item (panel
);
4673 dir_list_sort (&panel
->dir
, panel
->sort_field
->sort_routine
, &panel
->sort_info
);
4674 panel
->selected
= -1;
4676 for (i
= panel
->dir
.len
; i
!= 0; i
--)
4677 if (strcmp (panel
->dir
.list
[i
- 1].fname
, filename
) == 0)
4679 panel
->selected
= i
- 1;
4684 panel
->top_file
= panel
->selected
- panel_items (panel
) / 2;
4685 select_item (panel
);
4689 /* --------------------------------------------------------------------------------------------- */
4692 panel_set_sort_order (WPanel
* panel
, const panel_field_t
* sort_order
)
4694 if (sort_order
== NULL
)
4697 panel
->sort_field
= sort_order
;
4699 /* The directory is already sorted, we have to load the unsorted stuff */
4700 if (sort_order
->sort_routine
== (GCompareFunc
) unsorted
)
4704 current_file
= g_strdup (panel
->dir
.list
[panel
->selected
].fname
);
4705 panel_reload (panel
);
4706 try_to_select (panel
, current_file
);
4707 g_free (current_file
);
4709 panel_re_sort (panel
);
4712 /* --------------------------------------------------------------------------------------------- */
4717 * Change panel encoding.
4718 * @param panel WPanel object
4722 panel_change_encoding (WPanel
* panel
)
4724 const char *encoding
= NULL
;
4728 r
= select_charset (-1, -1, panel
->codepage
, FALSE
);
4730 if (r
== SELECT_CHARSET_CANCEL
)
4731 return; /* Cancel */
4733 panel
->codepage
= r
;
4735 if (panel
->codepage
== SELECT_CHARSET_NO_TRANSLATE
)
4737 /* No translation */
4738 vfs_path_t
*cd_path_vpath
;
4740 g_free (init_translation_table (mc_global
.display_codepage
, mc_global
.display_codepage
));
4741 cd_path_vpath
= remove_encoding_from_path (panel
->cwd_vpath
);
4742 do_panel_cd (panel
, cd_path_vpath
, cd_parse_command
);
4744 vfs_path_free (cd_path_vpath
);
4748 errmsg
= init_translation_table (panel
->codepage
, mc_global
.display_codepage
);
4751 message (D_ERROR
, MSG_ERROR
, "%s", errmsg
);
4756 encoding
= get_codepage_id (panel
->codepage
);
4757 if (encoding
!= NULL
)
4759 vfs_path_change_encoding (panel
->cwd_vpath
, encoding
);
4761 if (!do_panel_cd (panel
, panel
->cwd_vpath
, cd_parse_command
))
4762 message (D_ERROR
, MSG_ERROR
, _("Cannot chdir to \"%s\""),
4763 vfs_path_as_str (panel
->cwd_vpath
));
4767 /* --------------------------------------------------------------------------------------------- */
4770 * Remove encode info from last path element.
4774 remove_encoding_from_path (const vfs_path_t
* vpath
)
4776 vfs_path_t
*ret_vpath
;
4780 ret_vpath
= vfs_path_new ();
4782 tmp_conv
= g_string_new ("");
4784 for (indx
= 0; indx
< vfs_path_elements_count (vpath
); indx
++)
4787 vfs_path_element_t
*path_element
;
4789 path_element
= vfs_path_element_clone (vfs_path_get_by_index (vpath
, indx
));
4791 if (path_element
->encoding
== NULL
)
4793 vfs_path_add_element (ret_vpath
, path_element
);
4797 converter
= str_crt_conv_to (path_element
->encoding
);
4798 if (converter
== INVALID_CONV
)
4800 vfs_path_add_element (ret_vpath
, path_element
);
4804 MC_PTR_FREE (path_element
->encoding
);
4806 str_vfs_convert_from (converter
, path_element
->path
, tmp_conv
);
4808 g_free (path_element
->path
);
4809 path_element
->path
= g_strndup (tmp_conv
->str
, tmp_conv
->len
);
4811 g_string_set_size (tmp_conv
, 0);
4813 str_close_conv (converter
);
4814 str_close_conv (path_element
->dir
.converter
);
4815 path_element
->dir
.converter
= INVALID_CONV
;
4816 vfs_path_add_element (ret_vpath
, path_element
);
4818 g_string_free (tmp_conv
, TRUE
);
4821 #endif /* HAVE_CHARSET */
4823 /* --------------------------------------------------------------------------------------------- */
4826 * This routine reloads the directory in both panels. It tries to
4827 * select current_file in current_panel and other_file in other_panel.
4828 * If current_file == -1 then it automatically sets current_file and
4829 * other_file to the currently selected files in the panels.
4831 * If flags has the UP_ONLY_CURRENT bit toggled on, then it
4832 * will not reload the other panel.
4834 * @param flags for reload panel
4835 * @param current_file name of the current file
4839 update_panels (panel_update_flags_t flags
, const char *current_file
)
4843 /* first, update other panel... */
4844 if ((flags
& UP_ONLY_CURRENT
) == 0)
4845 update_one_panel (get_other_index (), flags
, UP_KEEPSEL
);
4846 /* ...then current one */
4847 update_one_panel (get_current_index (), flags
, current_file
);
4849 if (get_current_type () == view_listing
)
4850 panel
= PANEL (get_panel_widget (get_current_index ()));
4852 panel
= PANEL (get_panel_widget (get_other_index ()));
4854 if (!panel
->is_panelized
)
4855 (void) mc_chdir (panel
->cwd_vpath
);
4858 /* --------------------------------------------------------------------------------------------- */
4861 panel_get_num_of_sortable_fields (void)
4863 gsize ret
= 0, lc_index
;
4865 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
4866 if (panel_fields
[lc_index
].is_user_choice
)
4871 /* --------------------------------------------------------------------------------------------- */
4874 panel_get_sortable_fields (gsize
* array_size
)
4879 lc_index
= panel_get_num_of_sortable_fields ();
4881 ret
= g_try_new0 (char *, lc_index
+ 1);
4885 if (array_size
!= NULL
)
4886 *array_size
= lc_index
;
4890 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
4891 if (panel_fields
[i
].is_user_choice
)
4892 ret
[lc_index
++] = g_strdup (_(panel_fields
[i
].title_hotkey
));
4897 /* --------------------------------------------------------------------------------------------- */
4899 const panel_field_t
*
4900 panel_get_field_by_id (const char *name
)
4904 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
4905 if (panel_fields
[lc_index
].id
!= NULL
&& strcmp (name
, panel_fields
[lc_index
].id
) == 0)
4906 return &panel_fields
[lc_index
];
4911 /* --------------------------------------------------------------------------------------------- */
4913 const panel_field_t
*
4914 panel_get_field_by_title_hotkey (const char *name
)
4918 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
4919 if (panel_fields
[lc_index
].title_hotkey
!= NULL
&&
4920 strcmp (name
, _(panel_fields
[lc_index
].title_hotkey
)) == 0)
4921 return &panel_fields
[lc_index
];
4926 /* --------------------------------------------------------------------------------------------- */
4928 const panel_field_t
*
4929 panel_get_field_by_title (const char *name
)
4933 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
4937 title
= panel_get_title_without_hotkey (panel_fields
[lc_index
].title_hotkey
);
4938 if (strcmp (title
, name
) == 0)
4939 return &panel_fields
[lc_index
];
4945 /* --------------------------------------------------------------------------------------------- */
4948 panel_get_num_of_user_possible_fields (void)
4950 gsize ret
= 0, lc_index
;
4952 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
4953 if (panel_fields
[lc_index
].use_in_user_format
)
4959 /* --------------------------------------------------------------------------------------------- */
4962 panel_get_user_possible_fields (gsize
* array_size
)
4967 lc_index
= panel_get_num_of_user_possible_fields ();
4969 ret
= g_try_new0 (char *, lc_index
+ 1);
4973 if (array_size
!= NULL
)
4974 *array_size
= lc_index
;
4978 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
4979 if (panel_fields
[i
].use_in_user_format
)
4980 ret
[lc_index
++] = g_strdup (_(panel_fields
[i
].title_hotkey
));
4985 /* --------------------------------------------------------------------------------------------- */
4990 panel_sort_up_sign
= mc_skin_get ("widget-common", "sort-sign-up", "'");
4991 panel_sort_down_sign
= mc_skin_get ("widget-common", "sort-sign-down", ".");
4993 panel_hiddenfiles_sign_show
= mc_skin_get ("widget-panel", "hiddenfiles-sign-show", ".");
4994 panel_hiddenfiles_sign_hide
= mc_skin_get ("widget-panel", "hiddenfiles-sign-hide", ".");
4995 panel_history_prev_item_sign
= mc_skin_get ("widget-panel", "history-prev-item-sign", "<");
4996 panel_history_next_item_sign
= mc_skin_get ("widget-panel", "history-next-item-sign", ">");
4997 panel_history_show_list_sign
= mc_skin_get ("widget-panel", "history-show-list-sign", "^");
4998 panel_filename_scroll_left_char
=
4999 mc_skin_get ("widget-panel", "filename-scroll-left-char", "{");
5000 panel_filename_scroll_right_char
=
5001 mc_skin_get ("widget-panel", "filename-scroll-right-char", "}");
5003 mc_event_add (MCEVENT_GROUP_FILEMANAGER
, "update_panels", event_update_panels
, NULL
, NULL
);
5004 mc_event_add (MCEVENT_GROUP_FILEMANAGER
, "panel_save_current_file_to_clip_file",
5005 panel_save_current_file_to_clip_file
, NULL
, NULL
);
5008 /* --------------------------------------------------------------------------------------------- */
5013 g_free (panel_sort_up_sign
);
5014 g_free (panel_sort_down_sign
);
5016 g_free (panel_hiddenfiles_sign_show
);
5017 g_free (panel_hiddenfiles_sign_hide
);
5018 g_free (panel_history_prev_item_sign
);
5019 g_free (panel_history_next_item_sign
);
5020 g_free (panel_history_show_list_sign
);
5021 g_free (panel_filename_scroll_left_char
);
5022 g_free (panel_filename_scroll_right_char
);
5025 /* --------------------------------------------------------------------------------------------- */
5028 do_cd (const vfs_path_t
* new_dir_vpath
, enum cd_enum exact
)
5031 const vfs_path_t
*_new_dir_vpath
= new_dir_vpath
;
5033 if (current_panel
->is_panelized
)
5035 size_t new_vpath_len
;
5037 new_vpath_len
= vfs_path_len (new_dir_vpath
);
5038 if (vfs_path_equal_len (new_dir_vpath
, panelized_panel
.root_vpath
, new_vpath_len
))
5039 _new_dir_vpath
= panelized_panel
.root_vpath
;
5042 res
= do_panel_cd (current_panel
, _new_dir_vpath
, exact
);
5047 const vfs_path_element_t
*path_element
;
5049 path_element
= vfs_path_get_by_index (current_panel
->cwd_vpath
, -1);
5050 if (path_element
->encoding
!= NULL
)
5051 current_panel
->codepage
= get_codepage_index (path_element
->encoding
);
5053 current_panel
->codepage
= SELECT_CHARSET_NO_TRANSLATE
;
5055 #endif /* HAVE_CHARSET */
5060 /* --------------------------------------------------------------------------------------------- */