2 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 Written by: 1995 Miguel de Icaza
16 1997, 1999 Timur Bakeyev
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
23 * \brief Source: panel managin module
34 #include "lib/global.h"
36 #include "lib/tty/tty.h"
37 #include "lib/tty/mouse.h" /* For Gpm_Event */
38 #include "lib/tty/key.h" /* XCTRL and ALT macros */
40 #include "lib/strescape.h"
41 #include "lib/filehighlight.h"
42 #include "lib/mcconfig.h"
43 #include "lib/vfs/mc-vfs/vfs.h"
44 #include "lib/unixcompat.h"
50 #include "ext.h" /* regexp_command */
51 #include "layout.h" /* Most layout variables are here */
52 #include "wtools.h" /* for message (...) */
54 #include "command.h" /* cmdline */
55 #include "setup.h" /* For loading/saving panel options */
59 #include "menu.h" /* menubar_visible */
60 #include "main-widgets.h"
62 #include "mountlist.h" /* my_statfs */
63 #include "selcodepage.h" /* select_charset (), SELECT_CHARSET_NO_TRANSLATE */
65 #include "charsets.h" /* get_codepage_id () */
67 #include "cmddef.h" /* CK_ cmd name const */
68 #include "keybind.h" /* global_keymap_t */
70 #define ELEMENTS(arr) ( sizeof(arr) / sizeof((arr)[0]) )
75 #define MARKED_SELECTED 3
87 * This describes a format item. The parse_display_format routine parses
88 * the user specified format and creates a linked list of format_e structures.
90 typedef struct format_e
92 struct format_e
*next
;
93 int requested_field_len
;
95 align_crt_t just_mode
;
97 const char *(*string_fn
) (file_entry
*, int len
);
102 /* If true, show the mini-info on the panel */
103 int show_mini_info
= 1;
105 /* If true, use some usability hacks by Torben */
106 int torben_fj_mode
= 0;
108 /* The hook list for the select file function */
109 Hook
*select_file_hook
= 0;
111 static cb_ret_t
panel_callback (Widget
*, widget_msg_t msg
, int parm
);
112 static int panel_event (Gpm_Event
* event
, void *);
113 static void paint_frame (WPanel
* panel
);
114 static const char *panel_format (WPanel
* panel
);
115 static const char *mini_status_format (WPanel
* panel
);
117 static char *panel_sort_up_sign
= NULL
;
118 static char *panel_sort_down_sign
= NULL
;
120 static char *panel_hiddenfiles_sign_show
= NULL
;
121 static char *panel_hiddenfiles_sign_hide
= NULL
;
122 static char *panel_history_prev_item_sign
= NULL
;
123 static char *panel_history_next_item_sign
= NULL
;
124 static char *panel_history_show_list_sign
= NULL
;
126 /* This macro extracts the number of available lines in a panel */
127 #define llines(p) (p->widget.lines-3 - (show_mini_info ? 2 : 0))
130 set_colors (WPanel
* panel
)
133 tty_set_normal_attrs ();
134 tty_setcolor (NORMAL_COLOR
);
137 /* Delete format string, it is a linked list */
139 delete_format (format_e
* format
)
141 while (format
!= NULL
)
143 format_e
*next
= format
->next
;
144 g_free (format
->title
);
150 /* This code relies on the default justification!!! */
152 add_permission_string (char *dest
, int width
, file_entry
* fe
, int attr
, int color
, int is_octal
)
156 l
= get_user_permissions (&fe
->st
);
160 /* Place of the access bit in octal mode */
166 /* The same to the triplet in string mode */
171 for (i
= 0; i
< width
; i
++)
175 if (attr
== SELECTED
|| attr
== MARKED_SELECTED
)
176 tty_setcolor (MARKED_SELECTED_COLOR
);
178 tty_setcolor (MARKED_COLOR
);
181 tty_setcolor (color
);
183 tty_lowlevel_setcolor (-color
);
185 tty_print_char (dest
[i
]);
189 /* String representations of various file attributes */
192 string_file_name (file_entry
* fe
, int len
)
194 static char buffer
[MC_MAXPATHLEN
* MB_LEN_MAX
+ 1];
197 g_strlcpy (buffer
, fe
->fname
, sizeof (buffer
));
204 unsigned int digits
= 0;
214 format_device_number (char *buf
, size_t bufsize
, dev_t dev
)
216 dev_t major_dev
= major (dev
);
217 dev_t minor_dev
= minor (dev
);
218 unsigned int major_digits
= ilog10 (major_dev
);
219 unsigned int minor_digits
= ilog10 (minor_dev
);
221 g_assert (bufsize
>= 1);
222 if (major_digits
+ 1 + minor_digits
+ 1 <= bufsize
)
224 g_snprintf (buf
, bufsize
, "%lu,%lu", (unsigned long) major_dev
, (unsigned long) minor_dev
);
228 g_strlcpy (buf
, _("[dev]"), bufsize
);
234 string_file_size (file_entry
* fe
, int len
)
236 static char buffer
[BUF_TINY
];
238 /* Don't ever show size of ".." since we don't calculate it */
239 if (!strcmp (fe
->fname
, ".."))
244 #ifdef HAVE_STRUCT_STAT_ST_RDEV
245 if (S_ISBLK (fe
->st
.st_mode
) || S_ISCHR (fe
->st
.st_mode
))
246 format_device_number (buffer
, len
+ 1, fe
->st
.st_rdev
);
250 size_trunc_len (buffer
, (unsigned int) len
, fe
->st
.st_size
, 0, panels_options
.kilobyte_si
);
257 string_file_size_brief (file_entry
* fe
, int len
)
259 if (S_ISLNK (fe
->st
.st_mode
) && !fe
->f
.link_to_dir
)
264 if ((S_ISDIR (fe
->st
.st_mode
) || fe
->f
.link_to_dir
) && strcmp (fe
->fname
, ".."))
269 return string_file_size (fe
, len
);
272 /* This functions return a string representation of a file entry */
275 string_file_type (file_entry
* fe
, int len
)
277 static char buffer
[2];
280 if (S_ISDIR (fe
->st
.st_mode
))
281 buffer
[0] = PATH_SEP
;
282 else if (S_ISLNK (fe
->st
.st_mode
))
284 if (fe
->f
.link_to_dir
)
286 else if (fe
->f
.stale_link
)
291 else if (S_ISCHR (fe
->st
.st_mode
))
293 else if (S_ISSOCK (fe
->st
.st_mode
))
295 else if (S_ISDOOR (fe
->st
.st_mode
))
297 else if (S_ISBLK (fe
->st
.st_mode
))
299 else if (S_ISFIFO (fe
->st
.st_mode
))
301 else if (S_ISNAM (fe
->st
.st_mode
))
303 else if (!S_ISREG (fe
->st
.st_mode
))
304 buffer
[0] = '?'; /* non-regular of unknown kind */
305 else if (is_exe (fe
->st
.st_mode
))
315 string_file_mtime (file_entry
* fe
, int len
)
318 return file_date (fe
->st
.st_mtime
);
323 string_file_atime (file_entry
* fe
, int len
)
326 return file_date (fe
->st
.st_atime
);
331 string_file_ctime (file_entry
* fe
, int len
)
334 return file_date (fe
->st
.st_ctime
);
339 string_file_permission (file_entry
* fe
, int len
)
342 return string_perm (fe
->st
.st_mode
);
347 string_file_perm_octal (file_entry
* fe
, int len
)
349 static char buffer
[10];
352 g_snprintf (buffer
, sizeof (buffer
), "0%06lo", (unsigned long) fe
->st
.st_mode
);
358 string_file_nlinks (file_entry
* fe
, int len
)
360 static char buffer
[BUF_TINY
];
363 g_snprintf (buffer
, sizeof (buffer
), "%16d", (int) fe
->st
.st_nlink
);
369 string_inode (file_entry
* fe
, int len
)
371 static char buffer
[10];
374 g_snprintf (buffer
, sizeof (buffer
), "%lu", (unsigned long) fe
->st
.st_ino
);
380 string_file_nuid (file_entry
* fe
, int len
)
382 static char buffer
[10];
385 g_snprintf (buffer
, sizeof (buffer
), "%lu", (unsigned long) fe
->st
.st_uid
);
391 string_file_ngid (file_entry
* fe
, int len
)
393 static char buffer
[10];
396 g_snprintf (buffer
, sizeof (buffer
), "%lu", (unsigned long) fe
->st
.st_gid
);
402 string_file_owner (file_entry
* fe
, int len
)
405 return get_owner (fe
->st
.st_uid
);
410 string_file_group (file_entry
* fe
, int len
)
413 return get_group (fe
->st
.st_gid
);
418 string_marked (file_entry
* fe
, int len
)
421 return fe
->f
.marked
? "*" : " ";
426 string_space (file_entry
* fe
, int len
)
435 string_dot (file_entry
* fe
, int len
)
445 panel_field_t panel_fields
[] = {
447 "unsorted", 12, 1, J_LEFT_FIT
,
448 /* TRANSLATORS: one single character to represent 'unsorted' sort mode */
449 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
451 N_("&Unsorted"), TRUE
, FALSE
,
457 "name", 12, 1, J_LEFT_FIT
,
458 /* TRANSLATORS: one single character to represent 'name' sort mode */
459 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
461 N_("&Name"), TRUE
, TRUE
,
467 "version", 12, 1, J_LEFT_FIT
,
468 /* TRANSLATORS: one single character to represent 'version' sort mode */
469 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
471 N_("&Version"), TRUE
, FALSE
,
477 "extension", 12, 1, J_LEFT_FIT
,
478 /* TRANSLATORS: one single character to represent 'extension' sort mode */
479 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
481 N_("&Extension"), TRUE
, FALSE
,
482 string_file_name
, /* TODO: string_file_ext */
487 "size", 7, 0, J_RIGHT
,
488 /* TRANSLATORS: one single character to represent 'size' sort mode */
489 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
491 N_("&Size"), TRUE
, TRUE
,
497 "bsize", 7, 0, J_RIGHT
,
499 N_("Block Size"), FALSE
, FALSE
,
500 string_file_size_brief
,
505 "type", GT
, 0, J_LEFT
,
513 "mtime", 12, 0, J_RIGHT
,
514 /* TRANSLATORS: one single character to represent 'Modify time' sort mode */
515 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
517 N_("&Modify time"), TRUE
, TRUE
,
523 "atime", 12, 0, J_RIGHT
,
524 /* TRANSLATORS: one single character to represent 'Access time' sort mode */
525 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
527 N_("&Access time"), TRUE
, TRUE
,
529 (sortfn
*) sort_atime
533 "ctime", 12, 0, J_RIGHT
,
534 /* TRANSLATORS: one single character to represent 'Change time' sort mode */
535 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
537 N_("C&hange time"), TRUE
, TRUE
,
539 (sortfn
*) sort_ctime
543 "perm", 10, 0, J_LEFT
,
545 N_("Permission"), FALSE
, TRUE
,
546 string_file_permission
,
551 "mode", 6, 0, J_RIGHT
,
553 N_("Perm"), FALSE
, TRUE
,
554 string_file_perm_octal
,
559 "nlink", 2, 0, J_RIGHT
,
561 N_("Nl"), FALSE
, TRUE
,
562 string_file_nlinks
, NULL
566 "inode", 5, 0, J_RIGHT
,
567 /* TRANSLATORS: one single character to represent 'inode' sort mode */
568 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
570 N_("&Inode"), TRUE
, TRUE
,
572 (sortfn
*) sort_inode
576 "nuid", 5, 0, J_RIGHT
,
578 N_("UID"), FALSE
, FALSE
,
584 "ngid", 5, 0, J_RIGHT
,
586 N_("GID"), FALSE
, FALSE
,
592 "owner", 8, 0, J_LEFT_FIT
,
594 N_("Owner"), FALSE
, TRUE
,
600 "group", 8, 0, J_LEFT_FIT
,
602 N_("Group"), FALSE
, TRUE
,
608 "mark", 1, 0, J_RIGHT
,
624 "space", 1, 0, J_RIGHT
,
632 "dot", 1, 0, J_RIGHT
,
640 NULL
, 0, 0, J_RIGHT
, NULL
, NULL
, FALSE
, FALSE
, NULL
, NULL
646 file_compute_color (int attr
, file_entry
* fe
)
651 return (SELECTED_COLOR
);
653 return (MARKED_COLOR
);
654 case MARKED_SELECTED
:
655 return (MARKED_SELECTED_COLOR
);
657 return (NORMAL_COLOR
);
660 if (!panels_options
.filetype_mode
)
661 return (NORMAL_COLOR
);
664 return mc_fhl_get_color (mc_filehighlight
, fe
);
667 /* Formats the file number file_index of panel in the buffer dest */
669 format_file (char *dest
, int limit
, WPanel
* panel
, int file_index
, int width
, int attr
,
672 int color
, length
, empty_line
;
674 format_e
*format
, *home
;
680 empty_line
= (file_index
>= panel
->count
);
681 home
= (isstatus
) ? panel
->status_format
: panel
->format
;
682 fe
= &panel
->dir
.list
[file_index
];
685 color
= file_compute_color (attr
, fe
);
687 color
= NORMAL_COLOR
;
689 for (format
= home
; format
; format
= format
->next
)
694 if (format
->string_fn
)
702 txt
= (*format
->string_fn
) (fe
, format
->field_len
);
704 len
= format
->field_len
;
705 if (len
+ length
> width
)
706 len
= width
- length
;
711 if (panels_options
.permission_mode
)
713 if (!strcmp (format
->id
, "perm"))
715 else if (!strcmp (format
->id
, "mode"))
720 tty_setcolor (color
);
722 tty_lowlevel_setcolor (-color
);
724 preperad_text
= (char *) str_fit_to_term (txt
, len
, format
->just_mode
);
726 add_permission_string (preperad_text
, format
->field_len
, fe
, attr
, color
, perm
- 1);
728 tty_print_string (preperad_text
);
734 if (attr
== SELECTED
|| attr
== MARKED_SELECTED
)
735 tty_setcolor (SELECTED_COLOR
);
737 tty_setcolor (NORMAL_COLOR
);
738 tty_print_one_vline (TRUE
);
744 tty_draw_hline (-1, -1, ' ', width
- length
);
748 repaint_file (WPanel
* panel
, int file_index
, int mv
, int attr
, int isstatus
)
750 int second_column
= 0;
753 char buffer
[BUF_MEDIUM
];
755 gboolean panel_is_split
= !isstatus
&& panel
->split
;
757 width
= panel
->widget
.cols
- 2;
761 second_column
= (file_index
- panel
->top_file
) / llines (panel
);
762 width
= width
/ 2 - 1;
764 if (second_column
!= 0)
767 /*width = (panel->widget.cols-2) - (panel->widget.cols-2)/2 - 1; */
768 width
= panel
->widget
.cols
- offset
- 2;
772 /* Nothing to paint */
779 widget_move (&panel
->widget
,
780 (file_index
- panel
->top_file
) % llines (panel
) + 2, offset
+ 1);
782 widget_move (&panel
->widget
, file_index
- panel
->top_file
+ 2, 1);
785 format_file (buffer
, sizeof (buffer
), panel
, file_index
, width
, attr
, isstatus
);
790 tty_print_char (' ');
793 tty_setcolor (NORMAL_COLOR
);
794 tty_print_one_vline (TRUE
);
800 display_mini_info (WPanel
* panel
)
805 widget_move (&panel
->widget
, llines (panel
) + 3, 1);
807 if (panel
->searching
)
809 tty_setcolor (INPUT_COLOR
);
810 tty_print_char ('/');
811 tty_print_string (str_fit_to_term (panel
->search_buffer
, panel
->widget
.cols
- 3, J_LEFT
));
815 /* Status resolves links and show them */
818 if (S_ISLNK (panel
->dir
.list
[panel
->selected
].st
.st_mode
))
820 char *lc_link
, link_target
[MC_MAXPATHLEN
];
823 lc_link
= concat_dir_and_file (panel
->cwd
, panel
->dir
.list
[panel
->selected
].fname
);
824 len
= mc_readlink (lc_link
, link_target
, MC_MAXPATHLEN
- 1);
828 link_target
[len
] = 0;
829 tty_print_string ("-> ");
830 tty_print_string (str_fit_to_term (link_target
, panel
->widget
.cols
- 5, J_LEFT_FIT
));
833 tty_print_string (str_fit_to_term (_("<readlink failed>"),
834 panel
->widget
.cols
- 2, J_LEFT
));
836 else if (strcmp (panel
->dir
.list
[panel
->selected
].fname
, "..") == 0)
839 * while loading directory (do_load_dir() and do_reload_dir()),
840 * the actual stat info about ".." directory isn't got;
841 * so just don't display incorrect info about ".." directory */
842 tty_print_string (str_fit_to_term (_("UP--DIR"), panel
->widget
.cols
- 2, J_LEFT
));
845 /* Default behavior */
846 repaint_file (panel
, panel
->selected
, 0, STATUS
, 1);
850 paint_dir (WPanel
* panel
)
853 int color
; /* Color value of the line */
854 int items
; /* Number of items */
856 items
= llines (panel
) * (panel
->split
? 2 : 1);
858 for (i
= 0; i
< items
; i
++)
860 if (i
+ panel
->top_file
>= panel
->count
)
864 color
= 2 * (panel
->dir
.list
[i
+ panel
->top_file
].f
.marked
);
865 color
+= (panel
->selected
== i
+ panel
->top_file
&& panel
->active
);
867 repaint_file (panel
, i
+ panel
->top_file
, 1, color
, 0);
869 tty_set_normal_attrs ();
873 display_total_marked_size (WPanel
* panel
, int y
, int x
, gboolean size_only
)
875 char buffer
[BUF_SMALL
], b_bytes
[BUF_SMALL
], *buf
;
878 if (panel
->marked
<= 0)
881 buf
= size_only
? b_bytes
: buffer
;
882 cols
= panel
->widget
.cols
- 2;
885 * This is a trick to use two ngettext() calls in one sentence.
886 * First make "N bytes", then insert it into "X in M files".
888 g_snprintf (b_bytes
, sizeof (b_bytes
),
889 ngettext ("%s byte", "%s bytes", (unsigned long) panel
->total
),
890 size_trunc_sep (panel
->total
, panels_options
.kilobyte_si
));
892 g_snprintf (buffer
, sizeof (buffer
),
893 ngettext ("%s in %d file", "%s in %d files", panel
->marked
),
894 b_bytes
, panel
->marked
);
896 /* don't forget spaces around buffer content */
897 buf
= (char *) str_trunc (buf
, cols
- 4);
900 /* center in panel */
901 x
= (panel
->widget
.cols
- str_term_width1 (buf
)) / 2 - 1;
904 * y == llines (panel) + 2 for mini_info_separator
905 * y == panel->widget.lines - 1 for panel bottom frame
907 widget_move (&panel
->widget
, y
, x
);
908 tty_setcolor (MARKED_COLOR
);
909 tty_printf (" %s ", buf
);
913 mini_info_separator (WPanel
* panel
)
917 const int y
= llines (panel
) + 2;
919 tty_setcolor (NORMAL_COLOR
);
920 tty_draw_hline (panel
->widget
.y
+ y
, panel
->widget
.x
+ 1,
921 ACS_HLINE
, panel
->widget
.cols
- 2);
922 /* Status displays total marked size.
923 * Centered in panel, full format. */
924 display_total_marked_size (panel
, y
, -1, FALSE
);
929 show_free_space (WPanel
* panel
)
931 /* Used to figure out how many free space we have */
932 static struct my_statfs myfs_stats
;
933 /* Old current working directory for displaying free space */
934 static char *old_cwd
= NULL
;
936 /* Don't try to stat non-local fs */
937 if (!vfs_file_is_local (panel
->cwd
) || !free_space
)
940 if (old_cwd
== NULL
|| strcmp (old_cwd
, panel
->cwd
) != 0)
942 char rpath
[PATH_MAX
];
946 old_cwd
= g_strdup (panel
->cwd
);
948 if (mc_realpath (panel
->cwd
, rpath
) == NULL
)
951 my_statfs (&myfs_stats
, rpath
);
954 if (myfs_stats
.avail
> 0 || myfs_stats
.total
> 0)
956 char buffer1
[6], buffer2
[6], tmp
[BUF_SMALL
];
957 size_trunc_len (buffer1
, sizeof (buffer1
) - 1, myfs_stats
.avail
, 1, panels_options
.kilobyte_si
);
958 size_trunc_len (buffer2
, sizeof (buffer2
) - 1, myfs_stats
.total
, 1, panels_options
.kilobyte_si
);
959 g_snprintf (tmp
, sizeof (tmp
), " %s/%s (%d%%) ", buffer1
, buffer2
,
960 myfs_stats
.total
> 0 ?
961 (int) (100 * (double) myfs_stats
.avail
/ myfs_stats
.total
) : 0);
962 widget_move (&panel
->widget
, panel
->widget
.lines
- 1,
963 panel
->widget
.cols
- 2 - (int) strlen (tmp
));
964 tty_setcolor (NORMAL_COLOR
);
965 tty_print_string (tmp
);
970 show_dir (WPanel
* panel
)
974 draw_box (panel
->widget
.owner
,
975 panel
->widget
.y
, panel
->widget
.x
, panel
->widget
.lines
, panel
->widget
.cols
, FALSE
);
979 widget_move (&panel
->widget
, llines (panel
) + 2, 0);
980 tty_print_alt_char (ACS_LTEE
, FALSE
);
981 widget_move (&panel
->widget
, llines (panel
) + 2, panel
->widget
.cols
- 1);
982 tty_print_alt_char (ACS_RTEE
, FALSE
);
985 widget_move (&panel
->widget
, 0, 1);
986 tty_print_string (panel_history_prev_item_sign
);
988 tmp
= panels_options
.show_dot_files
? panel_hiddenfiles_sign_show
: panel_hiddenfiles_sign_hide
;
989 tmp
= g_strdup_printf ("%s[%s]%s", tmp
, panel_history_show_list_sign
,
990 panel_history_next_item_sign
);
992 widget_move (&panel
->widget
, 0, panel
->widget
.cols
- 6);
993 tty_print_string (tmp
);
998 tty_setcolor (REVERSE_COLOR
);
1000 widget_move (&panel
->widget
, 0, 3);
1003 str_term_trim (strip_home_and_password (panel
->cwd
),
1004 min (max (panel
->widget
.cols
- 12, 0), panel
->widget
.cols
)));
1006 if (!show_mini_info
)
1008 if (panel
->marked
== 0)
1010 /* Show size of curret file in the bottom of panel */
1011 if (S_ISREG (panel
->dir
.list
[panel
->selected
].st
.st_mode
))
1013 char buffer
[BUF_SMALL
];
1015 g_snprintf (buffer
, sizeof (buffer
), " %s ",
1016 size_trunc_sep (panel
->dir
.list
[panel
->selected
].st
.st_size
,
1017 panels_options
.kilobyte_si
));
1018 tty_setcolor (NORMAL_COLOR
);
1019 widget_move (&panel
->widget
, panel
->widget
.lines
- 1, 4);
1020 tty_print_string (buffer
);
1025 /* Show total size of marked files
1026 * In the bottom of panel, display size only. */
1027 display_total_marked_size (panel
, panel
->widget
.lines
- 1, 2, TRUE
);
1031 show_free_space (panel
);
1034 tty_set_normal_attrs ();
1037 /* To be used only by long_frame and full_frame to adjust top_file */
1039 adjust_top_file (WPanel
* panel
)
1041 int old_top
= panel
->top_file
;
1043 if (panel
->selected
- old_top
> llines (panel
))
1044 panel
->top_file
= panel
->selected
;
1045 if (old_top
- panel
->count
> llines (panel
))
1046 panel
->top_file
= panel
->count
- llines (panel
);
1049 /* Repaint everything, including frame and separator */
1051 paint_panel (WPanel
* panel
)
1053 paint_frame (panel
); /* including show_dir */
1055 mini_info_separator (panel
);
1056 display_mini_info (panel
);
1060 /* add "#enc:encodning" to end of path */
1061 /* if path end width a previous #enc:, only encoding is changed no additional
1066 add_encoding_to_path (const char *path
, const char *encoding
)
1072 semi
= g_strrstr (path
, VFS_ENCODING_PREFIX
);
1076 slash
= strchr (semi
, PATH_SEP
);
1079 result
= g_strconcat (path
, PATH_SEP_STR VFS_ENCODING_PREFIX
, encoding
, (char *) NULL
);
1084 result
= g_strconcat (path
, PATH_SEP_STR VFS_ENCODING_PREFIX
, encoding
, (char *) NULL
);
1090 result
= g_strconcat (path
, PATH_SEP_STR VFS_ENCODING_PREFIX
, encoding
, (char *) NULL
);
1097 remove_encoding_from_path (const char *path
)
1100 GString
*tmp_path
, *tmp_conv
;
1105 ret
= g_string_new ("");
1106 tmp_conv
= g_string_new ("");
1108 tmp_path
= g_string_new (path
);
1110 while ((tmp
= g_strrstr (tmp_path
->str
, PATH_SEP_STR VFS_ENCODING_PREFIX
)) != NULL
)
1112 enc
= vfs_get_encoding ((const char *) tmp
);
1113 converter
= enc
? str_crt_conv_to (enc
) : str_cnv_to_term
;
1114 if (converter
== INVALID_CONV
)
1115 converter
= str_cnv_to_term
;
1118 while (*tmp2
&& *tmp2
!= PATH_SEP
)
1123 str_vfs_convert_from (converter
, tmp2
, tmp_conv
);
1124 g_string_prepend (ret
, tmp_conv
->str
);
1125 g_string_set_size (tmp_conv
, 0);
1127 g_string_set_size (tmp_path
, tmp
- tmp_path
->str
);
1128 str_close_conv (converter
);
1130 g_string_prepend (ret
, tmp_path
->str
);
1131 g_string_free (tmp_path
, TRUE
);
1132 g_string_free (tmp_conv
, TRUE
);
1135 g_string_free (ret
, FALSE
);
1140 * Repaint the contents of the panels without frames. To schedule panel
1141 * for repainting, set panel->dirty to 1. There are many reasons why
1142 * the panels need to be repainted, and this is a costly operation, so
1143 * it's done once per event.
1146 update_dirty_panels (void)
1148 if (current_panel
->dirty
)
1149 paint_panel (current_panel
);
1151 if ((get_other_type () == view_listing
) && other_panel
->dirty
)
1152 paint_panel (other_panel
);
1156 do_select (WPanel
* panel
, int i
)
1158 if (i
!= panel
->selected
)
1161 panel
->selected
= i
;
1162 panel
->top_file
= panel
->selected
- (panel
->widget
.lines
- 2) / 2;
1163 if (panel
->top_file
< 0)
1164 panel
->top_file
= 0;
1169 do_try_to_select (WPanel
* panel
, const char *name
)
1176 do_select (panel
, 0);
1180 /* We only want the last component of the directory,
1181 * and from this only the name without suffix. */
1182 subdir
= vfs_strip_suffix_from_filename (x_basename (name
));
1184 /* Search that subdirectory, if found select it */
1185 for (i
= 0; i
< panel
->count
; i
++)
1187 if (strcmp (subdir
, panel
->dir
.list
[i
].fname
) == 0)
1189 do_select (panel
, i
);
1195 /* Try to select a file near the file that is missing */
1196 if (panel
->selected
>= panel
->count
)
1197 do_select (panel
, panel
->count
- 1);
1202 try_to_select (WPanel
* panel
, const char *name
)
1204 do_try_to_select (panel
, name
);
1205 select_item (panel
);
1209 panel_update_cols (Widget
* widget
, int frame_size
)
1213 if (horizontal_split
)
1215 widget
->cols
= COLS
;
1219 if (frame_size
== frame_full
)
1226 if (widget
== get_panel_widget (0))
1228 cols
= first_panel_size
;
1233 cols
= COLS
- first_panel_size
;
1234 origin
= first_panel_size
;
1238 widget
->cols
= cols
;
1242 extern int saving_setup
;
1244 panel_save_name (WPanel
* panel
)
1246 /* If the program is shuting down */
1247 if ((midnight_shutdown
&& auto_save_setup
) || saving_setup
)
1248 return g_strdup (panel
->panel_name
);
1250 return g_strconcat ("Temporal:", panel
->panel_name
, (char *) NULL
);
1254 panel_clean_dir (WPanel
* panel
)
1256 int count
= panel
->count
;
1259 panel
->top_file
= 0;
1260 panel
->selected
= 0;
1262 panel
->dirs_marked
= 0;
1264 panel
->searching
= FALSE
;
1265 panel
->is_panelized
= 0;
1268 clean_dir (&panel
->dir
, count
);
1272 panel_destroy (WPanel
* p
)
1276 char *name
= panel_save_name (p
);
1278 panel_save_setup (p
, name
);
1279 panel_clean_dir (p
);
1281 /* save and clean history */
1284 history_put (p
->hist_name
, p
->dir_history
);
1286 p
->dir_history
= g_list_first (p
->dir_history
);
1287 g_list_foreach (p
->dir_history
, (GFunc
) g_free
, NULL
);
1288 g_list_free (p
->dir_history
);
1291 g_free (p
->hist_name
);
1293 delete_format (p
->format
);
1294 delete_format (p
->status_format
);
1296 g_free (p
->user_format
);
1297 for (i
= 0; i
< LIST_TYPES
; i
++)
1298 g_free (p
->user_status_format
[i
]);
1299 g_free (p
->dir
.list
);
1300 g_free (p
->panel_name
);
1305 panel_format_modified (WPanel
* panel
)
1307 panel
->format_modified
= 1;
1311 * @param panel_name the name of the panel for setup retieving
1312 * @returns new instance of WPanel
1315 panel_new (const char *panel_name
)
1317 return panel_new_with_dir (panel_name
, NULL
);
1320 /** Panel creation for specified directory.
1321 * @param panel_name specifies the name of the panel for setup retieving
1322 * @param the path of working panel directory. If path is NULL then panel will be created for current directory
1323 * @returns new instance of WPanel
1326 panel_new_with_dir (const char *panel_name
, const char *wpath
)
1331 char curdir
[MC_MAXPATHLEN
] = "\0";
1333 panel
= g_new0 (WPanel
, 1);
1335 /* No know sizes of the panel at startup */
1336 init_widget (&panel
->widget
, 0, 0, 0, 0, panel_callback
, panel_event
);
1338 /* We do not want the cursor */
1339 widget_want_cursor (panel
->widget
, 0);
1343 g_strlcpy (panel
->cwd
, wpath
, sizeof (panel
->cwd
));
1344 mc_get_current_wd (curdir
, sizeof (curdir
) - 2);
1347 mc_get_current_wd (panel
->cwd
, sizeof (panel
->cwd
) - 2);
1349 strcpy (panel
->lwd
, ".");
1351 panel
->hist_name
= g_strconcat ("Dir Hist ", panel_name
, (char *) NULL
);
1352 panel
->dir_history
= history_get (panel
->hist_name
);
1353 directory_history_add (panel
, panel
->cwd
);
1355 panel
->dir
.list
= g_new (file_entry
, MIN_FILES
);
1356 panel
->dir
.size
= MIN_FILES
;
1360 panel
->top_file
= 0;
1361 panel
->selected
= 0;
1366 panel
->searching
= FALSE
;
1367 panel
->dirs_marked
= 0;
1368 panel
->is_panelized
= 0;
1370 panel
->status_format
= 0;
1371 panel
->format_modified
= 1;
1373 panel
->panel_name
= g_strdup (panel_name
);
1374 panel
->user_format
= g_strdup (DEFAULT_USER_FORMAT
);
1376 panel
->codepage
= SELECT_CHARSET_NO_TRANSLATE
;
1378 for (i
= 0; i
< LIST_TYPES
; i
++)
1379 panel
->user_status_format
[i
] = g_strdup (DEFAULT_USER_FORMAT
);
1381 panel
->search_buffer
[0] = '\0';
1382 panel
->prev_search_buffer
[0] = '\0';
1383 panel
->frame_size
= frame_half
;
1385 section
= g_strconcat ("Temporal:", panel
->panel_name
, (char *) NULL
);
1386 if (!mc_config_has_group (mc_main_config
, section
))
1389 section
= g_strdup (panel
->panel_name
);
1391 panel_load_setup (panel
, section
);
1394 /* Load format strings */
1395 err
= set_panel_formats (panel
);
1397 set_panel_formats (panel
);
1401 const char *enc
= vfs_get_encoding (panel
->cwd
);
1403 panel
->codepage
= get_codepage_index (enc
);
1407 if (mc_chdir (panel
->cwd
) != 0)
1409 panel
->codepage
= SELECT_CHARSET_NO_TRANSLATE
;
1410 mc_get_current_wd (panel
->cwd
, sizeof (panel
->cwd
) - 2);
1413 /* Load the default format */
1415 do_load_dir (panel
->cwd
, &panel
->dir
, panel
->current_sort_field
->sort_routine
,
1416 panel
->reverse
, panel
->case_sensitive
, panel
->exec_first
, panel
->filter
);
1418 /* Restore old right path */
1419 if (curdir
[0] != '\0')
1420 err
= mc_chdir (curdir
);
1426 panel_reload (WPanel
* panel
)
1428 struct stat current_stat
;
1430 if (panels_options
.fast_reload
&& !stat (panel
->cwd
, ¤t_stat
)
1431 && current_stat
.st_ctime
== panel
->dir_stat
.st_ctime
1432 && current_stat
.st_mtime
== panel
->dir_stat
.st_mtime
)
1435 while (mc_chdir (panel
->cwd
) == -1)
1439 if (panel
->cwd
[0] == PATH_SEP
&& panel
->cwd
[1] == 0)
1441 panel_clean_dir (panel
);
1442 panel
->count
= set_zero_dir (&panel
->dir
) ? 1 : 0;
1445 last_slash
= strrchr (panel
->cwd
, PATH_SEP
);
1446 if (!last_slash
|| last_slash
== panel
->cwd
)
1447 strcpy (panel
->cwd
, PATH_SEP_STR
);
1450 memset (&(panel
->dir_stat
), 0, sizeof (panel
->dir_stat
));
1455 do_reload_dir (panel
->cwd
, &panel
->dir
, panel
->current_sort_field
->sort_routine
,
1456 panel
->count
, panel
->reverse
, panel
->case_sensitive
,
1457 panel
->exec_first
, panel
->filter
);
1460 if (panel
->selected
>= panel
->count
)
1461 do_select (panel
, panel
->count
- 1);
1463 recalculate_panel_summary (panel
);
1467 panel_paint_sort_info (WPanel
* panel
)
1469 const char *sort_sign
= (panel
->reverse
) ? panel_sort_down_sign
: panel_sort_up_sign
;
1472 if (*panel
->current_sort_field
->hotkey
== '\0')
1475 str
= g_strdup_printf ("%s%s", sort_sign
, Q_ (panel
->current_sort_field
->hotkey
));
1477 widget_move (&panel
->widget
, 1, 1);
1478 tty_print_string (str
);
1483 panel_get_title_without_hotkey (const char *title
)
1485 char *translated_title
;
1490 if (title
[0] == '\0')
1491 return g_strdup ("");
1493 translated_title
= g_strdup (_(title
));
1495 hkey
= strchr (translated_title
, '&');
1496 if ((hkey
!= NULL
) && (hkey
[1] != '\0'))
1497 memmove ((void *) hkey
, (void *) hkey
+ 1, strlen (hkey
));
1499 return translated_title
;
1503 paint_frame (WPanel
* panel
)
1506 GString
*format_txt
;
1509 adjust_top_file (panel
);
1511 widget_erase (&panel
->widget
);
1514 widget_move (&panel
->widget
, 1, 1);
1516 for (side
= 0; side
<= panel
->split
; side
++)
1522 tty_setcolor (NORMAL_COLOR
);
1523 tty_print_one_vline (TRUE
);
1524 width
= panel
->widget
.cols
- panel
->widget
.cols
/ 2 - 1;
1526 else if (panel
->split
)
1527 width
= panel
->widget
.cols
/ 2 - 3;
1529 width
= panel
->widget
.cols
- 2;
1531 format_txt
= g_string_new ("");
1532 for (format
= panel
->format
; format
; format
= format
->next
)
1534 if (format
->string_fn
)
1536 g_string_set_size (format_txt
, 0);
1538 if (panel
->list_type
== list_long
1539 && strcmp (format
->id
, panel
->current_sort_field
->id
) == 0)
1540 g_string_append (format_txt
,
1541 (panel
->reverse
) ? panel_sort_down_sign
: panel_sort_up_sign
);
1543 g_string_append (format_txt
, format
->title
);
1544 if (strcmp (format
->id
, "name") == 0 && panel
->filter
&& *panel
->filter
)
1546 g_string_append (format_txt
, " [");
1547 g_string_append (format_txt
, panel
->filter
);
1548 g_string_append (format_txt
, "]");
1551 tty_setcolor (HEADER_COLOR
);
1552 tty_print_string (str_fit_to_term (format_txt
->str
, format
->field_len
,
1554 width
-= format
->field_len
;
1558 tty_setcolor (NORMAL_COLOR
);
1559 tty_print_one_vline (TRUE
);
1563 g_string_free (format_txt
, TRUE
);
1566 tty_draw_hline (-1, -1, ' ', width
);
1569 if (panel
->list_type
!= list_long
)
1570 panel_paint_sort_info (panel
);
1574 parse_panel_size (WPanel
* panel
, const char *format
, int isstatus
)
1576 int frame
= frame_half
;
1577 format
= skip_separators (format
);
1579 if (!strncmp (format
, "full", 4))
1584 else if (!strncmp (format
, "half", 4))
1592 panel
->frame_size
= frame
;
1596 /* Now, the optional column specifier */
1597 format
= skip_separators (format
);
1599 if (*format
== '1' || *format
== '2')
1602 panel
->split
= *format
== '2';
1607 panel_update_cols (&(panel
->widget
), panel
->frame_size
);
1609 return skip_separators (format
);
1614 all := panel_format? format
1615 panel_format := [full|half] [1|2]
1616 format := one_format_e
1617 | format , one_format_e
1619 one_format_e := just format.id [opt_size]
1621 opt_size := : size [opt_expand]
1628 parse_display_format (WPanel
* panel
, const char *format
, char **error
, int isstatus
,
1629 int *res_total_cols
)
1631 format_e
*darr
, *old
= 0, *home
= 0; /* The formats we return */
1632 int total_cols
= 0; /* Used columns by the format */
1633 int set_justify
; /* flag: set justification mode? */
1634 align_crt_t justify
= J_LEFT
; /* Which mode. */
1637 static size_t i18n_timelength
= 0; /* flag: check ?Time length at startup */
1641 if (i18n_timelength
== 0)
1643 i18n_timelength
= i18n_checktimelength (); /* Musn't be 0 */
1645 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
1646 if (strcmp ("time", panel_fields
[i
].id
+ 1) == 0)
1647 panel_fields
[i
].min_size
= i18n_timelength
;
1651 * This makes sure that the panel and mini status full/half mode
1654 format
= parse_panel_size (panel
, format
, isstatus
);
1657 { /* format can be an empty string */
1660 darr
= g_new0 (format_e
, 1);
1662 /* I'm so ugly, don't look at me :-) */
1670 format
= skip_separators (format
);
1672 if (strchr ("<=>", *format
))
1688 format
= skip_separators (format
+ 1);
1693 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
1695 size_t klen
= strlen (panel_fields
[i
].id
);
1697 if (strncmp (format
, panel_fields
[i
].id
, klen
) != 0)
1702 darr
->requested_field_len
= panel_fields
[i
].min_size
;
1703 darr
->string_fn
= panel_fields
[i
].string_fn
;
1704 darr
->title
= panel_get_title_without_hotkey (panel_fields
[i
].title_hotkey
);
1706 darr
->id
= panel_fields
[i
].id
;
1707 darr
->expand
= panel_fields
[i
].expands
;
1708 darr
->just_mode
= panel_fields
[i
].default_just
;
1712 if (IS_FIT (darr
->just_mode
))
1713 darr
->just_mode
= MAKE_FIT (justify
);
1715 darr
->just_mode
= justify
;
1719 format
= skip_separators (format
);
1721 /* If we have a size specifier */
1726 /* If the size was specified, we don't want
1727 * auto-expansion by default
1731 req_length
= atoi (format
);
1732 darr
->requested_field_len
= req_length
;
1734 format
= skip_numbers (format
);
1736 /* Now, if they insist on expansion */
1749 char *tmp_format
= g_strdup (format
);
1751 int pos
= min (8, strlen (format
));
1752 delete_format (home
);
1753 tmp_format
[pos
] = 0;
1754 *error
= g_strconcat (_("Unknown tag on display format:"), " ", tmp_format
, (char *) NULL
);
1755 g_free (tmp_format
);
1758 total_cols
+= darr
->requested_field_len
;
1761 *res_total_cols
= total_cols
;
1766 use_display_format (WPanel
* panel
, const char *format
, char **error
, int isstatus
)
1768 #define MAX_EXPAND 4
1769 int expand_top
= 0; /* Max used element in expand */
1770 int usable_columns
; /* Usable columns in the panel */
1773 format_e
*darr
, *home
;
1776 format
= DEFAULT_USER_FORMAT
;
1778 home
= parse_display_format (panel
, format
, error
, isstatus
, &total_cols
);
1785 /* Status needn't to be split */
1786 usable_columns
= ((panel
->widget
.cols
- 2) / ((isstatus
)
1788 : (panel
->split
+ 1))) - (!isstatus
1791 /* Look for the expandable fields and set field_len based on the requested field len */
1792 for (darr
= home
; darr
&& expand_top
< MAX_EXPAND
; darr
= darr
->next
)
1794 darr
->field_len
= darr
->requested_field_len
;
1799 /* If we used more columns than the available columns, adjust that */
1800 if (total_cols
> usable_columns
)
1802 int pdif
, dif
= total_cols
- usable_columns
;
1807 for (darr
= home
; darr
; darr
= darr
->next
)
1809 if (dif
&& darr
->field_len
- 1)
1816 /* avoid endless loop if num fields > 40 */
1820 total_cols
= usable_columns
; /* give up, the rest should be truncated */
1823 /* Expand the available space */
1824 if ((usable_columns
> total_cols
) && expand_top
)
1826 int spaces
= (usable_columns
- total_cols
) / expand_top
;
1827 int extra
= (usable_columns
- total_cols
) % expand_top
;
1829 for (i
= 0, darr
= home
; darr
&& (i
< expand_top
); darr
= darr
->next
)
1832 darr
->field_len
+= (spaces
+ ((i
== 0) ? extra
: 0));
1839 /* Switches the panel to the mode specified in the format */
1840 /* Seting up both format and status string. Return: 0 - on success; */
1841 /* 1 - format error; 2 - status error; 3 - errors in both formats. */
1843 set_panel_formats (WPanel
* p
)
1849 form
= use_display_format (p
, panel_format (p
), &err
, 0);
1858 delete_format (p
->format
);
1864 form
= use_display_format (p
, mini_status_format (p
), &err
, 1);
1873 delete_format (p
->status_format
);
1874 p
->status_format
= form
;
1878 panel_format_modified (p
);
1879 panel_update_cols (&(p
->widget
), p
->frame_size
);
1882 message (D_ERROR
, _("Warning"),
1883 _("User supplied format looks invalid, reverting to default."));
1886 g_free (p
->user_format
);
1887 p
->user_format
= g_strdup (DEFAULT_USER_FORMAT
);
1891 g_free (p
->user_status_format
[p
->list_type
]);
1892 p
->user_status_format
[p
->list_type
] = g_strdup (DEFAULT_USER_FORMAT
);
1898 /* Given the panel->view_type returns the format string to be parsed */
1900 panel_format (WPanel
* panel
)
1902 switch (panel
->list_type
)
1906 return "full perm space nlink space owner space group space size space mtime space name";
1909 return "half 2 type name";
1912 return panel
->user_format
;
1916 return "half type name | size | mtime";
1921 mini_status_format (WPanel
* panel
)
1923 if (panel
->user_mini_status
)
1924 return panel
->user_status_format
[panel
->list_type
];
1926 switch (panel
->list_type
)
1930 return "full perm space nlink space owner space group space size space mtime space name";
1933 return "half type name space bsize space perm space";
1936 return "half type name";
1940 return panel
->user_format
;
1945 /* Panel operation commands */
1948 /* Used to emulate Lynx's entering leaving a directory with the arrow keys */
1950 maybe_cd (int move_up_dir
)
1952 if (panels_options
.navigate_with_arrows
&& (cmdline
->buffer
[0] == '\0'))
1956 do_cd ("..", cd_exact
);
1960 if (S_ISDIR (selection (current_panel
)->st
.st_mode
)
1961 || link_isdir (selection (current_panel
)))
1963 do_cd (selection (current_panel
)->fname
, cd_exact
);
1967 return MSG_NOT_HANDLED
;
1970 /* Returns the number of items in the given panel */
1975 return llines (p
) * 2;
1980 /* Select current item and readjust the panel */
1982 select_item (WPanel
* panel
)
1984 int items
= ITEMS (panel
);
1986 /* Although currently all over the code we set the selection and
1987 top file to decent values before calling select_item, I could
1988 forget it someday, so it's better to do the actual fitting here */
1990 if (panel
->top_file
< 0)
1991 panel
->top_file
= 0;
1993 if (panel
->selected
< 0)
1994 panel
->selected
= 0;
1996 if (panel
->selected
> panel
->count
- 1)
1997 panel
->selected
= panel
->count
- 1;
1999 if (panel
->top_file
> panel
->count
- 1)
2000 panel
->top_file
= panel
->count
- 1;
2002 if ((panel
->count
- panel
->top_file
) < items
)
2004 panel
->top_file
= panel
->count
- items
;
2005 if (panel
->top_file
< 0)
2006 panel
->top_file
= 0;
2009 if (panel
->selected
< panel
->top_file
)
2010 panel
->top_file
= panel
->selected
;
2012 if ((panel
->selected
- panel
->top_file
) >= items
)
2013 panel
->top_file
= panel
->selected
- items
+ 1;
2017 execute_hooks (select_file_hook
);
2020 /* Clears all files in the panel, used only when one file was marked */
2022 unmark_files (WPanel
* panel
)
2028 for (i
= 0; i
< panel
->count
; i
++)
2029 file_mark (panel
, i
, 0);
2031 panel
->dirs_marked
= 0;
2037 unselect_item (WPanel
* panel
)
2039 repaint_file (panel
, panel
->selected
, 1, 2 * selection (panel
)->f
.marked
, 0);
2043 move_down (WPanel
* panel
)
2045 if (panel
->selected
+ 1 == panel
->count
)
2048 unselect_item (panel
);
2050 if (panels_options
.scroll_pages
&& panel
->selected
- panel
->top_file
== ITEMS (panel
))
2052 /* Scroll window half screen */
2053 panel
->top_file
+= ITEMS (panel
) / 2;
2054 if (panel
->top_file
> panel
->count
- ITEMS (panel
))
2055 panel
->top_file
= panel
->count
- ITEMS (panel
);
2058 select_item (panel
);
2062 move_up (WPanel
* panel
)
2064 if (panel
->selected
== 0)
2067 unselect_item (panel
);
2069 if (panels_options
.scroll_pages
&& panel
->selected
< panel
->top_file
)
2071 /* Scroll window half screen */
2072 panel
->top_file
-= ITEMS (panel
) / 2;
2073 if (panel
->top_file
< 0)
2074 panel
->top_file
= 0;
2077 select_item (panel
);
2080 /* Changes the selection by lines (may be negative) */
2082 move_selection (WPanel
* panel
, int lines
)
2087 new_pos
= panel
->selected
+ lines
;
2088 if (new_pos
>= panel
->count
)
2089 new_pos
= panel
->count
- 1;
2094 unselect_item (panel
);
2095 panel
->selected
= new_pos
;
2097 if (panel
->selected
- panel
->top_file
>= ITEMS (panel
))
2099 panel
->top_file
+= lines
;
2103 if (panel
->selected
- panel
->top_file
< 0)
2105 panel
->top_file
+= lines
;
2111 if (panel
->top_file
> panel
->selected
)
2112 panel
->top_file
= panel
->selected
;
2113 if (panel
->top_file
< 0)
2114 panel
->top_file
= 0;
2117 select_item (panel
);
2121 move_left (WPanel
* panel
)
2125 move_selection (panel
, -llines (panel
));
2129 return maybe_cd (1); /* cd .. */
2133 move_right (WPanel
* panel
)
2137 move_selection (panel
, llines (panel
));
2141 return maybe_cd (0); /* cd (selection) */
2145 prev_page (WPanel
* panel
)
2149 if (!panel
->selected
&& !panel
->top_file
)
2151 unselect_item (panel
);
2152 items
= ITEMS (panel
);
2153 if (panel
->top_file
< items
)
2154 items
= panel
->top_file
;
2156 panel
->selected
= 0;
2158 panel
->selected
-= items
;
2159 panel
->top_file
-= items
;
2161 select_item (panel
);
2166 ctrl_prev_page (WPanel
* panel
)
2169 do_cd ("..", cd_exact
);
2173 next_page (WPanel
* panel
)
2177 if (panel
->selected
== panel
->count
- 1)
2179 unselect_item (panel
);
2180 items
= ITEMS (panel
);
2181 if (panel
->top_file
> panel
->count
- 2 * items
)
2182 items
= panel
->count
- items
- panel
->top_file
;
2183 if (panel
->top_file
+ items
< 0)
2184 items
= -panel
->top_file
;
2186 panel
->selected
= panel
->count
- 1;
2188 panel
->selected
+= items
;
2189 panel
->top_file
+= items
;
2191 select_item (panel
);
2196 ctrl_next_page (WPanel
* panel
)
2198 if ((S_ISDIR (selection (panel
)->st
.st_mode
) || link_isdir (selection (panel
))))
2200 do_cd (selection (panel
)->fname
, cd_exact
);
2205 goto_top_file (WPanel
* panel
)
2207 unselect_item (panel
);
2208 panel
->selected
= panel
->top_file
;
2209 select_item (panel
);
2213 goto_middle_file (WPanel
* panel
)
2215 unselect_item (panel
);
2216 panel
->selected
= panel
->top_file
+ (ITEMS (panel
) / 2);
2217 select_item (panel
);
2221 goto_bottom_file (WPanel
* panel
)
2223 unselect_item (panel
);
2224 panel
->selected
= panel
->top_file
+ ITEMS (panel
) - 1;
2225 select_item (panel
);
2229 move_home (WPanel
* panel
)
2231 if (panel
->selected
== 0)
2233 unselect_item (panel
);
2237 int middle_pos
= panel
->top_file
+ (ITEMS (panel
) / 2);
2239 if (panel
->selected
> middle_pos
)
2241 goto_middle_file (panel
);
2244 if (panel
->selected
!= panel
->top_file
)
2246 goto_top_file (panel
);
2251 panel
->top_file
= 0;
2252 panel
->selected
= 0;
2255 select_item (panel
);
2259 move_end (WPanel
* panel
)
2261 if (panel
->selected
== panel
->count
- 1)
2263 unselect_item (panel
);
2266 int middle_pos
= panel
->top_file
+ (ITEMS (panel
) / 2);
2268 if (panel
->selected
< middle_pos
)
2270 goto_middle_file (panel
);
2273 if (panel
->selected
!= (panel
->top_file
+ ITEMS (panel
) - 1))
2275 goto_bottom_file (panel
);
2280 panel
->selected
= panel
->count
- 1;
2282 select_item (panel
);
2285 /* Recalculate the panels summary information, used e.g. when marked
2286 files might have been removed by an external command */
2288 recalculate_panel_summary (WPanel
* panel
)
2293 panel
->dirs_marked
= 0;
2296 for (i
= 0; i
< panel
->count
; i
++)
2297 if (panel
->dir
.list
[i
].f
.marked
)
2299 /* do_file_mark will return immediately if newmark == oldmark.
2300 So we have to first unmark it to get panel's summary information
2301 updated. (Norbert) */
2302 panel
->dir
.list
[i
].f
.marked
= 0;
2303 do_file_mark (panel
, i
, 1);
2307 /* This routine marks a file or a directory */
2309 do_file_mark (WPanel
* panel
, int idx
, int mark
)
2311 if (panel
->dir
.list
[idx
].f
.marked
== mark
)
2314 /* Only '..' can't be marked, '.' isn't visible */
2315 if (!strcmp (panel
->dir
.list
[idx
].fname
, ".."))
2318 file_mark (panel
, idx
, mark
);
2319 if (panel
->dir
.list
[idx
].f
.marked
)
2322 if (S_ISDIR (panel
->dir
.list
[idx
].st
.st_mode
))
2324 if (panel
->dir
.list
[idx
].f
.dir_size_computed
)
2325 panel
->total
+= panel
->dir
.list
[idx
].st
.st_size
;
2326 panel
->dirs_marked
++;
2329 panel
->total
+= panel
->dir
.list
[idx
].st
.st_size
;
2334 if (S_ISDIR (panel
->dir
.list
[idx
].st
.st_mode
))
2336 if (panel
->dir
.list
[idx
].f
.dir_size_computed
)
2337 panel
->total
-= panel
->dir
.list
[idx
].st
.st_size
;
2338 panel
->dirs_marked
--;
2341 panel
->total
-= panel
->dir
.list
[idx
].st
.st_size
;
2347 do_mark_file (WPanel
* panel
, mark_act_t do_move
)
2349 do_file_mark (panel
, panel
->selected
, selection (panel
)->f
.marked
? 0 : 1);
2350 if ((panels_options
.mark_moves_down
&& do_move
== MARK_DOWN
) || do_move
== MARK_FORCE_DOWN
)
2352 else if (do_move
== MARK_FORCE_UP
)
2357 mark_file (WPanel
* panel
)
2359 do_mark_file (panel
, MARK_DOWN
);
2363 mark_file_up (WPanel
* panel
)
2365 do_mark_file (panel
, MARK_FORCE_UP
);
2369 mark_file_down (WPanel
* panel
)
2371 do_mark_file (panel
, MARK_FORCE_DOWN
);
2374 /** Incremental search of a file name in the panel.
2375 * @param panel instance of WPanel structure
2376 * @param c_code key code
2379 do_search (WPanel
* panel
, int c_code
)
2383 gboolean wrapped
= FALSE
;
2385 mc_search_t
*search
;
2386 char *reg_exp
, *esc_str
;
2387 gboolean is_found
= FALSE
;
2389 l
= strlen (panel
->search_buffer
);
2390 if (c_code
== KEY_BACKSPACE
)
2394 act
= panel
->search_buffer
+ l
;
2395 str_prev_noncomb_char (&act
, panel
->search_buffer
);
2398 panel
->search_chpoint
= 0;
2402 if (c_code
!= 0 && (gsize
) panel
->search_chpoint
< sizeof (panel
->search_char
))
2404 panel
->search_char
[panel
->search_chpoint
] = c_code
;
2405 panel
->search_chpoint
++;
2408 if (panel
->search_chpoint
> 0)
2410 switch (str_is_valid_char (panel
->search_char
, panel
->search_chpoint
))
2415 panel
->search_chpoint
= 0;
2418 if (l
+ panel
->search_chpoint
< sizeof (panel
->search_buffer
))
2420 memcpy (panel
->search_buffer
+ l
, panel
->search_char
, panel
->search_chpoint
);
2421 l
+= panel
->search_chpoint
;
2422 *(panel
->search_buffer
+ l
) = '\0';
2423 panel
->search_chpoint
= 0;
2429 reg_exp
= g_strdup_printf ("%s*", panel
->search_buffer
);
2430 esc_str
= strutils_escape (reg_exp
, -1, ",|\\{}[]", TRUE
);
2431 search
= mc_search_new (esc_str
, -1);
2432 search
->search_type
= MC_SEARCH_T_GLOB
;
2433 search
->is_entire_line
= TRUE
;
2434 switch (panels_options
.qsearch_mode
)
2436 case QSEARCH_CASE_SENSITIVE
:
2437 search
->is_case_sensitive
= TRUE
;
2439 case QSEARCH_CASE_INSENSITIVE
:
2440 search
->is_case_sensitive
= FALSE
;
2443 search
->is_case_sensitive
= panel
->case_sensitive
;
2446 sel
= panel
->selected
;
2447 for (i
= panel
->selected
; !wrapped
|| i
!= panel
->selected
; i
++)
2449 if (i
>= panel
->count
)
2456 if (mc_search_run (search
, panel
->dir
.list
[i
].fname
, 0, panel
->dir
.list
[i
].fnamelen
, NULL
))
2465 unselect_item (panel
);
2466 panel
->selected
= sel
;
2467 select_item (panel
);
2468 paint_panel (panel
);
2470 else if (c_code
!= KEY_BACKSPACE
)
2472 act
= panel
->search_buffer
+ l
;
2473 str_prev_noncomb_char (&act
, panel
->search_buffer
);
2476 mc_search_free (search
);
2481 /** Start new search.
2482 * @param panel instance of WPanel structure
2485 start_search (WPanel
* panel
)
2487 if (panel
->searching
)
2489 if (panel
->selected
+ 1 == panel
->count
)
2490 panel
->selected
= 0;
2494 /* in case if there was no search string we need to recall
2495 previous string, with which we ended previous searching */
2496 if (panel
->search_buffer
[0] == '\0')
2497 g_strlcpy (panel
->search_buffer
, panel
->prev_search_buffer
,
2498 sizeof (panel
->search_buffer
));
2500 do_search (panel
, 0);
2504 panel
->searching
= TRUE
;
2505 panel
->search_buffer
[0] = '\0';
2506 panel
->search_char
[0] = '\0';
2507 panel
->search_chpoint
= 0;
2508 display_mini_info (panel
);
2514 stop_search (WPanel
* panel
)
2516 panel
->searching
= FALSE
;
2518 /* if user had overrdied search string, we need to store it
2519 to the previous_search_buffer */
2520 if (panel
->search_buffer
[0] != '\0')
2521 g_strlcpy (panel
->prev_search_buffer
, panel
->search_buffer
,
2522 sizeof (panel
->prev_search_buffer
));
2524 display_mini_info (panel
);
2527 /* Return 1 if the Enter key has been processed, 0 otherwise */
2529 do_enter_on_file_entry (file_entry
* fe
)
2534 * Directory or link to directory - change directory.
2535 * Try the same for the entries on which mc_lstat() has failed.
2537 if (S_ISDIR (fe
->st
.st_mode
) || link_isdir (fe
) || (fe
->st
.st_mode
== 0))
2539 if (!do_cd (fe
->fname
, cd_exact
))
2540 message (D_ERROR
, MSG_ERROR
, _("Cannot change directory"));
2544 /* Try associated command */
2545 if (regex_command (fe
->fname
, "Open", NULL
) != 0)
2548 /* Check if the file is executable */
2549 full_name
= concat_dir_and_file (current_panel
->cwd
, fe
->fname
);
2550 if (!is_exe (fe
->st
.st_mode
) || !if_link_is_exe (full_name
, fe
))
2557 if (confirm_execute
)
2560 (_("The Midnight Commander"),
2561 _("Do you really want to execute?"), D_NORMAL
, 2, _("&Yes"), _("&No")) != 0)
2565 if (!vfs_current_is_local ())
2570 tmp
= concat_dir_and_file (vfs_get_current_dir (), fe
->fname
);
2571 ret
= mc_setctl (tmp
, VFS_SETCTL_RUN
, NULL
);
2573 /* We took action only if the dialog was shown or the execution
2575 return confirm_execute
|| (ret
== 0);
2579 char *tmp
= name_quote (fe
->fname
, 0);
2580 char *cmd
= g_strconcat (".", PATH_SEP_STR
, tmp
, (char *) NULL
);
2582 shell_execute (cmd
, 0);
2587 source_codepage
= default_source_codepage
;
2594 do_enter (WPanel
* panel
)
2596 return do_enter_on_file_entry (selection (panel
));
2600 chdir_other_panel (WPanel
* panel
)
2603 char *sel_entry
= NULL
;
2605 if (get_other_type () != view_listing
)
2607 set_display_type (get_other_index (), view_listing
);
2610 if (!S_ISDIR (panel
->dir
.list
[panel
->selected
].st
.st_mode
))
2612 new_dir
= concat_dir_and_file (panel
->cwd
, "..");
2613 sel_entry
= strrchr (panel
->cwd
, PATH_SEP
);
2616 new_dir
= concat_dir_and_file (panel
->cwd
, panel
->dir
.list
[panel
->selected
].fname
);
2619 do_cd (new_dir
, cd_exact
);
2621 try_to_select (current_panel
, sel_entry
);
2630 * Make the current directory of the current panel also the current
2631 * directory of the other panel. Put the other panel to the listing
2632 * mode if needed. If the current panel is panelized, the other panel
2633 * doesn't become panelized.
2636 sync_other_panel (WPanel
* panel
)
2638 if (get_other_type () != view_listing
)
2640 set_display_type (get_other_index (), view_listing
);
2643 do_panel_cd (other_panel
, current_panel
->cwd
, cd_exact
);
2645 /* try to select current filename on the other panel */
2646 if (!panel
->is_panelized
)
2648 try_to_select (other_panel
, selection (panel
)->fname
);
2653 chdir_to_readlink (WPanel
* panel
)
2657 if (get_other_type () != view_listing
)
2660 if (S_ISLNK (panel
->dir
.list
[panel
->selected
].st
.st_mode
))
2662 char buffer
[MC_MAXPATHLEN
], *p
;
2666 i
= readlink (selection (panel
)->fname
, buffer
, MC_MAXPATHLEN
- 1);
2669 if (mc_stat (selection (panel
)->fname
, &st
) < 0)
2672 if (!S_ISDIR (st
.st_mode
))
2674 p
= strrchr (buffer
, PATH_SEP
);
2678 p
= strrchr (buffer
, PATH_SEP
);
2684 if (*buffer
== PATH_SEP
)
2685 new_dir
= g_strdup (buffer
);
2687 new_dir
= concat_dir_and_file (panel
->cwd
, buffer
);
2690 do_cd (new_dir
, cd_exact
);
2700 panel_get_format_field_count (WPanel
* panel
)
2704 for (lc_index
= 0, format
= panel
->format
; format
!= NULL
; format
= format
->next
, lc_index
++);
2709 function return 0 if not found and REAL_INDEX+1 if found
2712 panel_get_format_field_index_by_name (WPanel
* panel
, const char *name
)
2717 for (lc_index
= 1, format
= panel
->format
;
2718 !(format
== NULL
|| strcmp (format
->title
, name
) == 0); format
= format
->next
, lc_index
++);
2726 panel_get_format_field_by_index (WPanel
* panel
, gsize lc_index
)
2729 for (format
= panel
->format
;
2730 !(format
== NULL
|| lc_index
== 0); format
= format
->next
, lc_index
--);
2734 static const panel_field_t
*
2735 panel_get_sortable_field_by_format (WPanel
* panel
, gsize lc_index
)
2737 const panel_field_t
*pfield
;
2740 format
= panel_get_format_field_by_index (panel
, lc_index
);
2743 pfield
= panel_get_field_by_title (format
->title
);
2746 if (pfield
->sort_routine
== NULL
)
2752 panel_toggle_sort_order_prev (WPanel
* panel
)
2757 const panel_field_t
*pfield
= NULL
;
2759 title
= panel_get_title_without_hotkey (panel
->current_sort_field
->title_hotkey
);
2760 lc_index
= panel_get_format_field_index_by_name (panel
, title
);
2765 /* search for prev sortable column in panel format */
2766 for (i
= lc_index
- 1;
2767 i
!= 0 && (pfield
= panel_get_sortable_field_by_format (panel
, i
- 1)) == NULL
; i
--);
2772 /* Sortable field not found. Try to search in each array */
2773 for (i
= panel_get_format_field_count (panel
);
2774 i
!= 0 && (pfield
= panel_get_sortable_field_by_format (panel
, i
- 1)) == NULL
; i
--);
2778 panel
->current_sort_field
= pfield
;
2779 panel_set_sort_order (panel
, panel
->current_sort_field
);
2784 panel_toggle_sort_order_next (WPanel
* panel
)
2787 const panel_field_t
*pfield
= NULL
;
2788 gsize format_field_count
= panel_get_format_field_count (panel
);
2791 title
= panel_get_title_without_hotkey (panel
->current_sort_field
->title_hotkey
);
2792 lc_index
= panel_get_format_field_index_by_name (panel
, title
);
2795 if (lc_index
!= 0 && lc_index
!= format_field_count
)
2797 /* search for prev sortable column in panel format */
2799 i
!= format_field_count
2800 && (pfield
= panel_get_sortable_field_by_format (panel
, i
)) == NULL
; i
++);
2805 /* Sortable field not found. Try to search in each array */
2807 i
!= format_field_count
2808 && (pfield
= panel_get_sortable_field_by_format (panel
, i
)) == NULL
; i
++);
2812 panel
->current_sort_field
= pfield
;
2813 panel_set_sort_order (panel
, panel
->current_sort_field
);
2817 panel_select_sort_order (WPanel
* panel
)
2819 const panel_field_t
*sort_order
;
2820 sort_order
= sort_box (panel
->current_sort_field
, &panel
->reverse
,
2821 &panel
->case_sensitive
, &panel
->exec_first
);
2822 if (sort_order
== NULL
)
2824 panel
->current_sort_field
= sort_order
;
2825 panel_set_sort_order (panel
, panel
->current_sort_field
);
2830 panel_set_sort_type_by_id (WPanel
* panel
, const char *name
)
2832 const panel_field_t
*sort_order
;
2834 if (strcmp (panel
->current_sort_field
->id
, name
) != 0)
2836 sort_order
= panel_get_field_by_id (name
);
2837 if (sort_order
== NULL
)
2839 panel
->current_sort_field
= sort_order
;
2843 panel
->reverse
= !panel
->reverse
;
2845 panel_set_sort_order (panel
, panel
->current_sort_field
);
2849 * If we moved to the parent directory move the selection pointer to
2850 * the old directory name; If we leave VFS dir, remove FS specificator.
2852 * You do _NOT_ want to add any vfs aware code here. <pavel@ucw.cz>
2855 get_parent_dir_name (const char *cwd
, const char *lwd
)
2859 llen
= strlen (lwd
);
2860 clen
= strlen (cwd
);
2866 p
= strrchr (lwd
, PATH_SEP
);
2869 && (strncmp (cwd
, lwd
, (size_t) (p
- lwd
)) == 0)
2870 && (clen
== (size_t) (p
- lwd
)
2871 || ((p
== lwd
) && (cwd
[0] == PATH_SEP
) && (cwd
[1] == '\0'))))
2879 * Changes the current directory of the panel.
2880 * Don't record change in the directory history.
2883 _do_panel_cd (WPanel
* panel
, const char *new_dir
, enum cd_enum cd_type
)
2885 const char *directory
;
2887 char temp
[MC_MAXPATHLEN
];
2888 char *translated_url
;
2890 if (cd_type
== cd_parse_command
)
2892 while (*new_dir
== ' ')
2896 olddir
= g_strdup (panel
->cwd
);
2897 new_dir
= translated_url
= vfs_translate_url (new_dir
);
2899 /* Convert *new_path to a suitable pathname, handle ~user */
2901 if (cd_type
== cd_parse_command
)
2903 if (!strcmp (new_dir
, "-"))
2905 strcpy (temp
, panel
->lwd
);
2909 directory
= *new_dir
? new_dir
: home_dir
;
2911 if (mc_chdir (directory
) == -1)
2913 strcpy (panel
->cwd
, olddir
);
2915 g_free (translated_url
);
2918 g_free (translated_url
);
2920 /* Success: save previous directory, shutdown status of previous dir */
2921 strcpy (panel
->lwd
, olddir
);
2922 free_completions (cmdline
);
2924 mc_get_current_wd (panel
->cwd
, sizeof (panel
->cwd
) - 2);
2926 vfs_release_path (olddir
);
2928 subshell_chdir (panel
->cwd
);
2930 /* Reload current panel */
2931 panel_clean_dir (panel
);
2933 do_load_dir (panel
->cwd
, &panel
->dir
, panel
->current_sort_field
->sort_routine
,
2934 panel
->reverse
, panel
->case_sensitive
, panel
->exec_first
, panel
->filter
);
2935 try_to_select (panel
, get_parent_dir_name (panel
->cwd
, olddir
));
2938 update_xterm_title_path ();
2946 * Changes the current directory of the panel.
2947 * Record change in the directory history.
2950 do_panel_cd (struct WPanel
*panel
, const char *new_dir
, enum cd_enum cd_type
)
2954 r
= _do_panel_cd (panel
, new_dir
, cd_type
);
2956 directory_history_add (panel
, panel
->cwd
);
2961 directory_history_next (WPanel
* panel
)
2965 nextdir
= g_list_next (panel
->dir_history
);
2967 if ((nextdir
!= NULL
) && (_do_panel_cd (panel
, (char *) nextdir
->data
, cd_exact
)))
2968 panel
->dir_history
= nextdir
;
2972 directory_history_prev (WPanel
* panel
)
2976 prevdir
= g_list_previous (panel
->dir_history
);
2978 if ((prevdir
!= NULL
) && (_do_panel_cd (panel
, (char *) prevdir
->data
, cd_exact
)))
2979 panel
->dir_history
= prevdir
;
2983 directory_history_list (WPanel
* panel
)
2987 s
= show_hist (&panel
->dir_history
, &panel
->widget
);
2991 if (_do_panel_cd (panel
, s
, cd_exact
))
2992 directory_history_add (panel
, panel
->cwd
);
2994 message (D_ERROR
, MSG_ERROR
, _("Cannot change directory"));
3000 panel_execute_cmd (WPanel
* panel
, unsigned long command
)
3002 int res
= MSG_HANDLED
;
3004 if (command
!= CK_PanelStartSearch
)
3005 stop_search (panel
);
3009 case CK_PanelChdirOtherPanel
:
3010 chdir_other_panel (panel
);
3012 case CK_PanelChdirToReadlink
:
3013 chdir_to_readlink (panel
);
3015 case CK_PanelCmdCopyLocal
:
3018 case CK_PanelCmdDeleteLocal
:
3019 delete_cmd_local ();
3021 case CK_PanelCmdDoEnter
:
3024 case CK_PanelCmdViewSimple
:
3027 case CK_PanelCmdEditNew
:
3030 case CK_PanelCmdRenameLocal
:
3031 rename_cmd_local ();
3033 case CK_PanelCmdReverseSelection
:
3034 reverse_selection_cmd ();
3036 case CK_PanelCmdSelect
:
3039 case CK_PanelCmdUnselect
:
3042 case CK_PanelNextPage
:
3045 case CK_PanelPrevPage
:
3048 case CK_PanelCtrlNextPage
:
3049 ctrl_next_page (panel
);
3051 case CK_PanelCtrlPrevPage
:
3052 ctrl_prev_page (panel
);
3054 case CK_PanelDirectoryHistoryList
:
3055 directory_history_list (panel
);
3057 case CK_PanelDirectoryHistoryNext
:
3058 directory_history_next (panel
);
3060 case CK_PanelDirectoryHistoryPrev
:
3061 directory_history_prev (panel
);
3063 case CK_PanelGotoBottomFile
:
3064 goto_bottom_file (panel
);
3066 case CK_PanelGotoMiddleFile
:
3067 goto_middle_file (panel
);
3069 case CK_PanelGotoTopFile
:
3070 goto_top_file (panel
);
3072 case CK_PanelMarkFile
:
3075 case CK_PanelMarkFileUp
:
3076 mark_file_up (panel
);
3078 case CK_PanelMarkFileDown
:
3079 mark_file_down (panel
);
3081 case CK_PanelMoveUp
:
3084 case CK_PanelMoveDown
:
3087 case CK_PanelMoveLeft
:
3088 res
= move_left (panel
);
3090 case CK_PanelMoveRight
:
3091 res
= move_right (panel
);
3093 case CK_PanelMoveEnd
:
3096 case CK_PanelMoveHome
:
3099 case CK_PanelSetPanelEncoding
:
3100 panel_change_encoding (panel
);
3102 case CK_PanelStartSearch
:
3103 start_search (panel
);
3105 case CK_PanelStopSearch
:
3107 case CK_PanelSyncOtherPanel
:
3108 sync_other_panel (panel
);
3110 case CK_PanelSelectSortOrder
:
3111 panel_select_sort_order (panel
);
3113 case CK_PanelToggleSortOrderPrev
:
3114 panel_toggle_sort_order_prev (panel
);
3116 case CK_PanelToggleSortOrderNext
:
3117 panel_toggle_sort_order_next (panel
);
3119 case CK_PanelReverseSort
:
3120 panel
->reverse
= !panel
->reverse
;
3121 panel_set_sort_order (panel
, panel
->current_sort_field
);
3123 case CK_PanelSortOrderByName
:
3124 panel_set_sort_type_by_id (panel
, "name");
3126 case CK_PanelSortOrderByExt
:
3127 panel_set_sort_type_by_id (panel
, "extension");
3129 case CK_PanelSortOrderBySize
:
3130 panel_set_sort_type_by_id (panel
, "size");
3132 case CK_PanelSortOrderByMTime
:
3133 panel_set_sort_type_by_id (panel
, "mtime");
3140 panel_key (WPanel
* panel
, int key
)
3144 for (i
= 0; panel_map
[i
].key
!= 0; i
++)
3145 if (key
== panel_map
[i
].key
)
3146 return panel_execute_cmd (panel
, panel_map
[i
].command
);
3148 if (torben_fj_mode
&& key
== ALT ('h'))
3150 goto_middle_file (panel
);
3154 if (is_abort_char (key
))
3156 stop_search (panel
);
3160 /* Do not eat characters not meant for the panel below ' ' (e.g. C-l). */
3161 if ((key
>= ' ' && key
<= 255) || key
== KEY_BACKSPACE
)
3163 if (panel
->searching
)
3165 do_search (panel
, key
);
3169 if (!command_prompt
)
3171 start_search (panel
);
3172 do_search (panel
, key
);
3177 return MSG_NOT_HANDLED
;
3181 panel_callback (Widget
* w
, widget_msg_t msg
, int parm
)
3183 WPanel
*panel
= (WPanel
*) w
;
3189 paint_panel (panel
);
3193 current_panel
= panel
;
3195 if (mc_chdir (panel
->cwd
) != 0)
3197 char *cwd
= strip_password (g_strdup (panel
->cwd
), 1);
3198 message (D_ERROR
, MSG_ERROR
, _("Cannot chdir to \"%s\"\n%s"),
3199 cwd
, unix_error_string (errno
));
3203 subshell_chdir (panel
->cwd
);
3205 update_xterm_title_path ();
3206 select_item (panel
);
3211 bb
= find_buttonbar (panel
->widget
.owner
);
3212 midnight_set_buttonbar (bb
);
3213 buttonbar_redraw (bb
);
3216 case WIDGET_UNFOCUS
:
3217 /* Janne: look at this for the multiple panel options */
3218 stop_search (panel
);
3221 unselect_item (panel
);
3225 return panel_key (panel
, parm
);
3227 case WIDGET_COMMAND
:
3228 return panel_execute_cmd (panel
, parm
);
3230 case WIDGET_DESTROY
:
3231 panel_destroy (panel
);
3236 return default_proc (msg
, parm
);
3241 file_mark (WPanel
* panel
, int lc_index
, int val
)
3243 if (panel
->dir
.list
[lc_index
].f
.marked
!= val
)
3245 panel
->dir
.list
[lc_index
].f
.marked
= val
;
3251 /* Panel mouse events support routines */
3253 static int mouse_marking
= 0;
3256 mouse_toggle_mark (WPanel
* panel
)
3258 do_mark_file (panel
, MARK_DONT_MOVE
);
3259 mouse_marking
= selection (panel
)->f
.marked
;
3263 mouse_set_mark (WPanel
* panel
)
3265 if (mouse_marking
&& !(selection (panel
)->f
.marked
))
3266 do_mark_file (panel
, MARK_DONT_MOVE
);
3267 else if (!mouse_marking
&& (selection (panel
)->f
.marked
))
3268 do_mark_file (panel
, MARK_DONT_MOVE
);
3272 mark_if_marking (WPanel
* panel
, Gpm_Event
* event
)
3274 if (event
->buttons
& GPM_B_RIGHT
)
3276 if (event
->type
& GPM_DOWN
)
3277 mouse_toggle_mark (panel
);
3279 mouse_set_mark (panel
);
3285 /* Determine which column was clicked, and sort the panel on
3286 * that column, or reverse sort on that column if already
3287 * sorted on that column.
3290 mouse_sort_col (Gpm_Event
* event
, WPanel
* panel
)
3293 const char *lc_sort_name
= NULL
;
3294 panel_field_t
*col_sort_format
= NULL
;
3298 for (i
= 0, format
= panel
->format
; format
!= NULL
; format
= format
->next
)
3300 i
+= format
->field_len
;
3301 if (event
->x
< i
+ 1)
3304 lc_sort_name
= format
->title
;
3309 if (lc_sort_name
== NULL
)
3312 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
3314 title
= panel_get_title_without_hotkey (panel_fields
[i
].title_hotkey
);
3315 if (!strcmp (lc_sort_name
, title
) && panel_fields
[i
].sort_routine
)
3317 col_sort_format
= &panel_fields
[i
];
3324 if (!col_sort_format
)
3327 if (panel
->current_sort_field
== col_sort_format
)
3329 /* reverse the sort if clicked column is already the sorted column */
3330 panel
->reverse
= !panel
->reverse
;
3334 /* new sort is forced to be ascending */
3337 panel_set_sort_order (panel
, col_sort_format
);
3342 * Mouse callback of the panel minus repainting.
3343 * If the event is redirected to the menu, *redir is set to TRUE.
3346 do_panel_event (Gpm_Event
* event
, WPanel
* panel
, gboolean
* redir
)
3348 const int lines
= llines (panel
);
3349 const gboolean is_active
= dlg_widget_active (panel
);
3350 const gboolean mouse_down
= (event
->type
& GPM_DOWN
) != 0;
3355 if (mouse_down
&& event
->y
== 1)
3360 directory_history_prev (panel
);
3364 /* "." button show/hide hidden files */
3365 if (event
->x
== panel
->widget
.cols
- 5)
3367 toggle_show_hidden ();
3373 if (event
->x
== panel
->widget
.cols
- 1)
3375 directory_history_next (panel
);
3380 if (event
->x
>= panel
->widget
.cols
- 4 && event
->x
<= panel
->widget
.cols
- 2)
3382 directory_history_list (panel
);
3386 /* rest of the upper frame, the menu is invisible - call menu */
3387 if (!menubar_visible
)
3390 event
->x
+= panel
->widget
.x
;
3391 return the_menubar
->widget
.mouse (event
, the_menubar
);
3394 /* no other events on 1st line */
3398 /* sort on clicked column; don't handle wheel events */
3399 if (mouse_down
&& (event
->buttons
& (GPM_B_UP
| GPM_B_DOWN
)) == 0 && event
->y
== 2)
3401 mouse_sort_col (event
, panel
);
3405 /* Mouse wheel events */
3406 if (mouse_down
&& (event
->buttons
& GPM_B_UP
))
3410 if (panels_options
.mouse_move_pages
&& (panel
->top_file
> 0))
3412 else /* We are in first page */
3418 if (mouse_down
&& (event
->buttons
& GPM_B_DOWN
))
3422 if (panels_options
.mouse_move_pages
3423 && (panel
->top_file
+ ITEMS (panel
) < panel
->count
))
3425 else /* We are in last page */
3432 if ((event
->type
& (GPM_DOWN
| GPM_DRAG
)))
3439 if (panel
->top_file
+ event
->y
> panel
->count
)
3440 my_index
= panel
->count
- 1;
3443 my_index
= panel
->top_file
+ event
->y
- 1;
3444 if (panel
->split
&& (event
->x
> ((panel
->widget
.cols
- 2) / 2)))
3445 my_index
+= llines (panel
);
3447 if (my_index
>= panel
->count
)
3448 my_index
= panel
->count
- 1;
3451 if (my_index
!= panel
->selected
)
3453 unselect_item (panel
);
3454 panel
->selected
= my_index
;
3455 select_item (panel
);
3458 /* This one is new */
3459 mark_if_marking (panel
, event
);
3461 else if ((event
->type
& (GPM_UP
| GPM_DOUBLE
)) == (GPM_UP
| GPM_DOUBLE
))
3463 if (event
->y
> 0 && event
->y
<= lines
)
3469 /* Mouse callback of the panel */
3471 panel_event (Gpm_Event
* event
, void *data
)
3473 WPanel
*panel
= data
;
3477 ret
= do_panel_event (event
, panel
, &redir
);
3479 paint_panel (panel
);
3485 panel_re_sort (WPanel
* panel
)
3493 filename
= g_strdup (selection (panel
)->fname
);
3494 unselect_item (panel
);
3495 do_sort (&panel
->dir
, panel
->current_sort_field
->sort_routine
, panel
->count
- 1, panel
->reverse
,
3496 panel
->case_sensitive
, panel
->exec_first
);
3497 panel
->selected
= -1;
3498 for (i
= panel
->count
; i
; i
--)
3500 if (!strcmp (panel
->dir
.list
[i
- 1].fname
, filename
))
3502 panel
->selected
= i
- 1;
3507 panel
->top_file
= panel
->selected
- ITEMS (panel
) / 2;
3508 select_item (panel
);
3513 panel_set_sort_order (WPanel
* panel
, const panel_field_t
* sort_order
)
3515 if (sort_order
== 0)
3518 panel
->current_sort_field
= sort_order
;
3520 /* The directory is already sorted, we have to load the unsorted stuff */
3521 if (sort_order
->sort_routine
== (sortfn
*) unsorted
)
3525 current_file
= g_strdup (panel
->dir
.list
[panel
->selected
].fname
);
3526 panel_reload (panel
);
3527 try_to_select (panel
, current_file
);
3528 g_free (current_file
);
3530 panel_re_sort (panel
);
3534 * Change panel encoding.
3535 * @param panel WPanel object
3538 panel_change_encoding (WPanel
* panel
)
3540 const char *encoding
= NULL
;
3546 r
= select_charset (-1, -1, panel
->codepage
, FALSE
);
3548 if (r
== SELECT_CHARSET_CANCEL
)
3549 return; /* Cancel */
3551 panel
->codepage
= r
;
3553 if (panel
->codepage
== SELECT_CHARSET_NO_TRANSLATE
)
3555 /* No translation */
3556 g_free (init_translation_table (display_codepage
, display_codepage
));
3557 cd_path
= remove_encoding_from_path (panel
->cwd
);
3558 do_panel_cd (panel
, cd_path
, cd_parse_command
);
3563 errmsg
= init_translation_table (panel
->codepage
, display_codepage
);
3566 message (D_ERROR
, MSG_ERROR
, "%s", errmsg
);
3571 encoding
= get_codepage_id (panel
->codepage
);
3573 if (encoding
!= NULL
)
3577 enc
= vfs_get_encoding (panel
->cwd
);
3579 /* don't add current encoding */
3580 if ((enc
== NULL
) || (strcmp (encoding
, enc
) != 0))
3582 cd_path
= add_encoding_to_path (panel
->cwd
, encoding
);
3583 if (!do_panel_cd (panel
, cd_path
, cd_parse_command
))
3584 message (D_ERROR
, MSG_ERROR
, _("Cannot chdir to \"%s\""), cd_path
);
3591 reload_panelized (WPanel
* panel
)
3594 dir_list
*list
= &panel
->dir
;
3596 if (panel
!= current_panel
)
3599 ret
= mc_chdir (panel
->cwd
);
3602 for (i
= 0, j
= 0; i
< panel
->count
; i
++)
3604 if (list
->list
[i
].f
.marked
)
3606 /* Unmark the file in advance. In case the following mc_lstat
3607 * fails we are done, else we have to mark the file again
3608 * (Note: do_file_mark depends on a valid "list->list [i].buf").
3609 * IMO that's the best way to update the panel's summary status
3612 do_file_mark (panel
, i
, 0);
3614 if (mc_lstat (list
->list
[i
].fname
, &list
->list
[i
].st
))
3616 g_free (list
->list
[i
].fname
);
3619 if (list
->list
[i
].f
.marked
)
3620 do_file_mark (panel
, i
, 1);
3622 list
->list
[j
] = list
->list
[i
];
3626 panel
->count
= set_zero_dir (list
) ? 1 : 0;
3630 if (panel
!= current_panel
)
3633 ret
= mc_chdir (current_panel
->cwd
);
3638 update_one_panel_widget (WPanel
* panel
, int force_update
, const char *current_file
)
3641 char *my_current_file
= NULL
;
3643 if (force_update
& UP_RELOAD
)
3645 panel
->is_panelized
= 0;
3646 mc_setctl (panel
->cwd
, VFS_SETCTL_FLUSH
, 0);
3647 memset (&(panel
->dir_stat
), 0, sizeof (panel
->dir_stat
));
3650 /* If current_file == -1 (an invalid pointer) then preserve selection */
3651 if (current_file
== UP_KEEPSEL
)
3654 my_current_file
= g_strdup (panel
->dir
.list
[panel
->selected
].fname
);
3655 current_file
= my_current_file
;
3660 if (panel
->is_panelized
)
3661 reload_panelized (panel
);
3663 panel_reload (panel
);
3665 try_to_select (panel
, current_file
);
3669 g_free (my_current_file
);
3673 update_one_panel (int which
, int force_update
, const char *current_file
)
3675 if (get_display_type (which
) == view_listing
)
3678 panel
= (WPanel
*) get_panel_widget (which
);
3679 update_one_panel_widget (panel
, force_update
, current_file
);
3683 /* This routine reloads the directory in both panels. It tries to
3684 * select current_file in current_panel and other_file in other_panel.
3685 * If current_file == -1 then it automatically sets current_file and
3686 * other_file to the currently selected files in the panels.
3688 * if force_update has the UP_ONLY_CURRENT bit toggled on, then it
3689 * will not reload the other panel.
3692 update_panels (int force_update
, const char *current_file
)
3694 int reload_other
= !(force_update
& UP_ONLY_CURRENT
);
3698 update_one_panel (get_current_index (), force_update
, current_file
);
3700 update_one_panel (get_other_index (), force_update
, UP_KEEPSEL
);
3702 if (get_current_type () == view_listing
)
3703 panel
= (WPanel
*) get_panel_widget (get_current_index ());
3705 panel
= (WPanel
*) get_panel_widget (get_other_index ());
3707 ret
= mc_chdir (panel
->cwd
);
3711 directory_history_add (struct WPanel
*panel
, const char *dir
)
3715 tmp
= g_strdup (dir
);
3716 strip_password (tmp
, 1);
3718 panel
->dir_history
= list_append_unique (panel
->dir_history
, tmp
);
3722 panel_get_num_of_sortable_fields (void)
3724 gsize ret
= 0, lc_index
;
3726 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3727 if (panel_fields
[lc_index
].is_user_choice
)
3733 panel_get_sortable_fields (gsize
* array_size
)
3738 lc_index
= panel_get_num_of_sortable_fields ();
3740 ret
= g_try_new0 (char *, lc_index
+ 1);
3744 if (array_size
!= NULL
)
3745 *array_size
= lc_index
;
3749 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
3750 if (panel_fields
[i
].is_user_choice
)
3751 ret
[lc_index
++] = g_strdup (_(panel_fields
[i
].title_hotkey
));
3752 return (const char **) ret
;
3755 const panel_field_t
*
3756 panel_get_field_by_id (const char *name
)
3759 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3760 if (panel_fields
[lc_index
].id
!= NULL
&& strcmp (name
, panel_fields
[lc_index
].id
) == 0)
3761 return &panel_fields
[lc_index
];
3765 const panel_field_t
*
3766 panel_get_field_by_title_hotkey (const char *name
)
3769 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3770 if (panel_fields
[lc_index
].title_hotkey
!= NULL
&&
3771 strcmp (name
, _(panel_fields
[lc_index
].title_hotkey
)) == 0)
3772 return &panel_fields
[lc_index
];
3776 const panel_field_t
*
3777 panel_get_field_by_title (const char *name
)
3780 gchar
*title
= NULL
;
3782 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3784 title
= panel_get_title_without_hotkey (panel_fields
[lc_index
].title_hotkey
);
3785 if (panel_fields
[lc_index
].title_hotkey
!= NULL
&& strcmp (name
, title
) == 0)
3788 return &panel_fields
[lc_index
];
3796 panel_get_num_of_user_possible_fields (void)
3798 gsize ret
= 0, lc_index
;
3800 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3801 if (panel_fields
[lc_index
].use_in_user_format
)
3807 panel_get_user_possible_fields (gsize
* array_size
)
3812 lc_index
= panel_get_num_of_user_possible_fields ();
3814 ret
= g_try_new0 (char *, lc_index
+ 1);
3818 if (array_size
!= NULL
)
3819 *array_size
= lc_index
;
3823 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
3824 if (panel_fields
[i
].use_in_user_format
)
3825 ret
[lc_index
++] = g_strdup (_(panel_fields
[i
].title_hotkey
));
3826 return (const char **) ret
;
3832 panel_sort_up_sign
= mc_skin_get ("widget-common", "sort-sign-up", "'");
3833 panel_sort_down_sign
= mc_skin_get ("widget-common", "sort-sign-down", ",");
3835 panel_hiddenfiles_sign_show
= mc_skin_get ("widget-panel", "hiddenfiles-sign-show", ".");
3836 panel_hiddenfiles_sign_hide
= mc_skin_get ("widget-panel", "hiddenfiles-sign-hide", ".");
3837 panel_history_prev_item_sign
= mc_skin_get ("widget-panel", "history-prev-item-sign", "<");
3838 panel_history_next_item_sign
= mc_skin_get ("widget-panel", "history-next-item-sign", ">");
3839 panel_history_show_list_sign
= mc_skin_get ("widget-panel", "history-show-list-sign", "^");
3846 g_free (panel_sort_up_sign
);
3847 g_free (panel_sort_down_sign
);
3849 g_free (panel_hiddenfiles_sign_show
);
3850 g_free (panel_hiddenfiles_sign_hide
);
3851 g_free (panel_history_prev_item_sign
);
3852 g_free (panel_history_next_item_sign
);
3853 g_free (panel_history_show_list_sign
);