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"
38 #include "lib/strescape.h"
39 #include "lib/tty/mouse.h" /* For Gpm_Event */
40 #include "lib/tty/key.h" /* XCTRL and ALT macros */
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 () */
64 #include "charsets.h" /* get_codepage_id () */
65 #include "cmddef.h" /* CK_ cmd name const */
66 #include "keybind.h" /* global_keymap_t */
68 #define ELEMENTS(arr) ( sizeof(arr) / sizeof((arr)[0]) )
73 #define MARKED_SELECTED 3
77 * This describes a format item. The parse_display_format routine parses
78 * the user specified format and creates a linked list of format_e structures.
80 typedef struct format_e
82 struct format_e
*next
;
83 int requested_field_len
;
85 align_crt_t just_mode
;
87 const char *(*string_fn
) (file_entry
*, int len
);
92 /* If true, show the mini-info on the panel */
93 int show_mini_info
= 1;
95 /* If true, then use stat() on the cwd to determine directory changes */
98 /* If true, use some usability hacks by Torben */
99 int torben_fj_mode
= 0;
101 /* If true, up/down keys scroll the pane listing by pages */
102 int panel_scroll_pages
= 1;
104 /* If 1, we use permission hilighting */
105 int permission_mode
= 0;
107 /* If 1 - then add per file type hilighting */
108 int filetype_mode
= 1;
110 /* The hook list for the select file function */
111 Hook
*select_file_hook
= 0;
113 const global_keymap_t
*panel_map
;
115 static cb_ret_t
panel_callback (Widget
*, widget_msg_t msg
, int parm
);
116 static int panel_event (Gpm_Event
* event
, void *);
117 static void paint_frame (WPanel
* panel
);
118 static const char *panel_format (WPanel
* panel
);
119 static const char *mini_status_format (WPanel
* panel
);
121 static char *panel_sort_up_sign
= NULL
;
122 static char *panel_sort_down_sign
= NULL
;
124 static char *panel_hiddenfiles_sign_show
= NULL
;
125 static char *panel_hiddenfiles_sign_hide
= NULL
;
126 static char *panel_history_prev_item_sign
= NULL
;
127 static char *panel_history_next_item_sign
= NULL
;
128 static char *panel_history_show_list_sign
= NULL
;
130 /* This macro extracts the number of available lines in a panel */
131 #define llines(p) (p->widget.lines-3 - (show_mini_info ? 2 : 0))
134 set_colors (WPanel
* panel
)
137 tty_set_normal_attrs ();
138 tty_setcolor (NORMAL_COLOR
);
141 /* Delete format string, it is a linked list */
143 delete_format (format_e
* format
)
145 while (format
!= NULL
)
147 format_e
*next
= format
->next
;
148 g_free (format
->title
);
154 /* This code relies on the default justification!!! */
156 add_permission_string (char *dest
, int width
, file_entry
* fe
, int attr
, int color
, int is_octal
)
160 l
= get_user_permissions (&fe
->st
);
164 /* Place of the access bit in octal mode */
170 /* The same to the triplet in string mode */
175 for (i
= 0; i
< width
; i
++)
179 if (attr
== SELECTED
|| attr
== MARKED_SELECTED
)
180 tty_setcolor (MARKED_SELECTED_COLOR
);
182 tty_setcolor (MARKED_COLOR
);
185 tty_setcolor (color
);
187 tty_lowlevel_setcolor (-color
);
189 tty_print_char (dest
[i
]);
193 /* String representations of various file attributes */
196 string_file_name (file_entry
* fe
, int len
)
198 static char buffer
[MC_MAXPATHLEN
* MB_LEN_MAX
+ 1];
201 g_strlcpy (buffer
, fe
->fname
, sizeof (buffer
));
208 unsigned int digits
= 0;
218 format_device_number (char *buf
, size_t bufsize
, dev_t dev
)
220 dev_t major_dev
= major (dev
);
221 dev_t minor_dev
= minor (dev
);
222 unsigned int major_digits
= ilog10 (major_dev
);
223 unsigned int minor_digits
= ilog10 (minor_dev
);
225 g_assert (bufsize
>= 1);
226 if (major_digits
+ 1 + minor_digits
+ 1 <= bufsize
)
228 g_snprintf (buf
, bufsize
, "%lu,%lu", (unsigned long) major_dev
, (unsigned long) minor_dev
);
232 g_strlcpy (buf
, _("[dev]"), bufsize
);
238 string_file_size (file_entry
* fe
, int len
)
240 static char buffer
[BUF_TINY
];
242 /* Don't ever show size of ".." since we don't calculate it */
243 if (!strcmp (fe
->fname
, ".."))
248 #ifdef HAVE_STRUCT_STAT_ST_RDEV
249 if (S_ISBLK (fe
->st
.st_mode
) || S_ISCHR (fe
->st
.st_mode
))
250 format_device_number (buffer
, len
+ 1, fe
->st
.st_rdev
);
254 size_trunc_len (buffer
, (unsigned int) len
, fe
->st
.st_size
, 0);
261 string_file_size_brief (file_entry
* fe
, int len
)
263 if (S_ISLNK (fe
->st
.st_mode
) && !fe
->f
.link_to_dir
)
268 if ((S_ISDIR (fe
->st
.st_mode
) || fe
->f
.link_to_dir
) && strcmp (fe
->fname
, ".."))
273 return string_file_size (fe
, len
);
276 /* This functions return a string representation of a file entry */
279 string_file_type (file_entry
* fe
, int len
)
281 static char buffer
[2];
284 if (S_ISDIR (fe
->st
.st_mode
))
285 buffer
[0] = PATH_SEP
;
286 else if (S_ISLNK (fe
->st
.st_mode
))
288 if (fe
->f
.link_to_dir
)
290 else if (fe
->f
.stale_link
)
295 else if (S_ISCHR (fe
->st
.st_mode
))
297 else if (S_ISSOCK (fe
->st
.st_mode
))
299 else if (S_ISDOOR (fe
->st
.st_mode
))
301 else if (S_ISBLK (fe
->st
.st_mode
))
303 else if (S_ISFIFO (fe
->st
.st_mode
))
305 else if (S_ISNAM (fe
->st
.st_mode
))
307 else if (!S_ISREG (fe
->st
.st_mode
))
308 buffer
[0] = '?'; /* non-regular of unknown kind */
309 else if (is_exe (fe
->st
.st_mode
))
319 string_file_mtime (file_entry
* fe
, int len
)
322 return file_date (fe
->st
.st_mtime
);
327 string_file_atime (file_entry
* fe
, int len
)
330 return file_date (fe
->st
.st_atime
);
335 string_file_ctime (file_entry
* fe
, int len
)
338 return file_date (fe
->st
.st_ctime
);
343 string_file_permission (file_entry
* fe
, int len
)
346 return string_perm (fe
->st
.st_mode
);
351 string_file_perm_octal (file_entry
* fe
, int len
)
353 static char buffer
[10];
356 g_snprintf (buffer
, sizeof (buffer
), "0%06lo", (unsigned long) fe
->st
.st_mode
);
362 string_file_nlinks (file_entry
* fe
, int len
)
364 static char buffer
[BUF_TINY
];
367 g_snprintf (buffer
, sizeof (buffer
), "%16d", (int) fe
->st
.st_nlink
);
373 string_inode (file_entry
* fe
, int len
)
375 static char buffer
[10];
378 g_snprintf (buffer
, sizeof (buffer
), "%lu", (unsigned long) fe
->st
.st_ino
);
384 string_file_nuid (file_entry
* fe
, int len
)
386 static char buffer
[10];
389 g_snprintf (buffer
, sizeof (buffer
), "%lu", (unsigned long) fe
->st
.st_uid
);
395 string_file_ngid (file_entry
* fe
, int len
)
397 static char buffer
[10];
400 g_snprintf (buffer
, sizeof (buffer
), "%lu", (unsigned long) fe
->st
.st_gid
);
406 string_file_owner (file_entry
* fe
, int len
)
409 return get_owner (fe
->st
.st_uid
);
414 string_file_group (file_entry
* fe
, int len
)
417 return get_group (fe
->st
.st_gid
);
422 string_marked (file_entry
* fe
, int len
)
425 return fe
->f
.marked
? "*" : " ";
430 string_space (file_entry
* fe
, int len
)
439 string_dot (file_entry
* fe
, int len
)
449 panel_field_t panel_fields
[] = {
451 "unsorted", 12, 1, J_LEFT_FIT
,
452 /* TRANSLATORS: one single character to represent 'unsorted' sort mode */
453 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
455 N_("&Unsorted"), TRUE
, FALSE
,
461 "name", 12, 1, J_LEFT_FIT
,
462 /* TRANSLATORS: one single character to represent 'name' sort mode */
463 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
465 N_("&Name"), TRUE
, TRUE
,
471 "version", 12, 1, J_LEFT_FIT
,
472 /* TRANSLATORS: one single character to represent 'version' sort mode */
473 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
475 N_("&Version"), TRUE
, FALSE
,
481 "extension", 12, 1, J_LEFT_FIT
,
482 /* TRANSLATORS: one single character to represent 'extension' sort mode */
483 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
485 N_("&Extension"), TRUE
, FALSE
,
486 string_file_name
, /* TODO: string_file_ext */
491 "size", 7, 0, J_RIGHT
,
492 /* TRANSLATORS: one single character to represent 'size' sort mode */
493 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
495 N_("&Size"), TRUE
, TRUE
,
501 "bsize", 7, 0, J_RIGHT
,
503 N_("Block Size"), FALSE
, FALSE
,
504 string_file_size_brief
,
509 "type", GT
, 0, J_LEFT
,
517 "mtime", 12, 0, J_RIGHT
,
518 /* TRANSLATORS: one single character to represent 'Modify time' sort mode */
519 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
521 N_("&Modify time"), TRUE
, TRUE
,
527 "atime", 12, 0, J_RIGHT
,
528 /* TRANSLATORS: one single character to represent 'Access time' sort mode */
529 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
531 N_("&Access time"), TRUE
, TRUE
,
533 (sortfn
*) sort_atime
537 "ctime", 12, 0, J_RIGHT
,
538 /* TRANSLATORS: one single character to represent 'Change time' sort mode */
539 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
541 N_("C&Hange time"), TRUE
, TRUE
,
543 (sortfn
*) sort_ctime
547 "perm", 10, 0, J_LEFT
,
549 N_("Permission"), FALSE
, TRUE
,
550 string_file_permission
,
555 "mode", 6, 0, J_RIGHT
,
557 N_("Perm"), FALSE
, TRUE
,
558 string_file_perm_octal
,
563 "nlink", 2, 0, J_RIGHT
,
565 N_("Nl"), FALSE
, TRUE
,
566 string_file_nlinks
, NULL
570 "inode", 5, 0, J_RIGHT
,
571 /* TRANSLATORS: one single character to represent 'inode' sort mode */
572 /* TRANSLATORS: no need to translate 'sort', it's just a context prefix */
574 N_("&Inode"), TRUE
, TRUE
,
576 (sortfn
*) sort_inode
580 "nuid", 5, 0, J_RIGHT
,
582 N_("UID"), FALSE
, FALSE
,
588 "ngid", 5, 0, J_RIGHT
,
590 N_("GID"), FALSE
, FALSE
,
596 "owner", 8, 0, J_LEFT_FIT
,
598 N_("Owner"), FALSE
, TRUE
,
604 "group", 8, 0, J_LEFT_FIT
,
606 N_("Group"), FALSE
, TRUE
,
612 "mark", 1, 0, J_RIGHT
,
628 "space", 1, 0, J_RIGHT
,
636 "dot", 1, 0, J_RIGHT
,
644 NULL
, 0, 0, J_RIGHT
, NULL
, NULL
, FALSE
, FALSE
, NULL
, NULL
650 file_compute_color (int attr
, file_entry
* fe
)
655 return (SELECTED_COLOR
);
657 return (MARKED_COLOR
);
658 case MARKED_SELECTED
:
659 return (MARKED_SELECTED_COLOR
);
661 return (NORMAL_COLOR
);
665 return (NORMAL_COLOR
);
668 return mc_fhl_get_color (mc_filehighlight
, fe
);
671 /* Formats the file number file_index of panel in the buffer dest */
673 format_file (char *dest
, int limit
, WPanel
* panel
, int file_index
, int width
, int attr
,
676 int color
, length
, empty_line
;
678 format_e
*format
, *home
;
684 empty_line
= (file_index
>= panel
->count
);
685 home
= (isstatus
) ? panel
->status_format
: panel
->format
;
686 fe
= &panel
->dir
.list
[file_index
];
689 color
= file_compute_color (attr
, fe
);
691 color
= NORMAL_COLOR
;
693 for (format
= home
; format
; format
= format
->next
)
698 if (format
->string_fn
)
706 txt
= (*format
->string_fn
) (fe
, format
->field_len
);
708 len
= format
->field_len
;
709 if (len
+ length
> width
)
710 len
= width
- length
;
717 if (!strcmp (format
->id
, "perm"))
719 else if (!strcmp (format
->id
, "mode"))
724 tty_setcolor (color
);
726 tty_lowlevel_setcolor (-color
);
728 preperad_text
= (char *) str_fit_to_term (txt
, len
, format
->just_mode
);
730 add_permission_string (preperad_text
, format
->field_len
, fe
, attr
, color
, perm
- 1);
732 tty_print_string (preperad_text
);
738 if (attr
== SELECTED
|| attr
== MARKED_SELECTED
)
739 tty_setcolor (SELECTED_COLOR
);
741 tty_setcolor (NORMAL_COLOR
);
742 tty_print_one_vline ();
748 tty_draw_hline (-1, -1, ' ', width
- length
);
752 repaint_file (WPanel
* panel
, int file_index
, int mv
, int attr
, int isstatus
)
754 int second_column
= 0;
757 char buffer
[BUF_MEDIUM
];
759 gboolean panel_is_split
= !isstatus
&& panel
->split
;
761 width
= panel
->widget
.cols
- 2;
765 second_column
= (file_index
- panel
->top_file
) / llines (panel
);
766 width
= width
/ 2 - 1;
768 if (second_column
!= 0)
771 /*width = (panel->widget.cols-2) - (panel->widget.cols-2)/2 - 1; */
772 width
= panel
->widget
.cols
- offset
- 2;
776 /* Nothing to paint */
783 widget_move (&panel
->widget
,
784 (file_index
- panel
->top_file
) % llines (panel
) + 2, offset
+ 1);
786 widget_move (&panel
->widget
, file_index
- panel
->top_file
+ 2, 1);
789 format_file (buffer
, sizeof (buffer
), panel
, file_index
, width
, attr
, isstatus
);
794 tty_print_char (' ');
797 tty_setcolor (NORMAL_COLOR
);
798 tty_print_one_vline ();
804 display_mini_info (WPanel
* panel
)
809 widget_move (&panel
->widget
, llines (panel
) + 3, 1);
811 if (panel
->searching
)
813 tty_setcolor (INPUT_COLOR
);
814 tty_print_char ('/');
815 tty_print_string (str_fit_to_term (panel
->search_buffer
, panel
->widget
.cols
- 3, J_LEFT
));
819 /* Status resolves links and show them */
822 if (S_ISLNK (panel
->dir
.list
[panel
->selected
].st
.st_mode
))
824 char *lc_link
, link_target
[MC_MAXPATHLEN
];
827 lc_link
= concat_dir_and_file (panel
->cwd
, panel
->dir
.list
[panel
->selected
].fname
);
828 len
= mc_readlink (lc_link
, link_target
, MC_MAXPATHLEN
- 1);
832 link_target
[len
] = 0;
833 tty_print_string ("-> ");
834 tty_print_string (str_fit_to_term (link_target
, panel
->widget
.cols
- 5, J_LEFT_FIT
));
837 tty_print_string (str_fit_to_term (_("<readlink failed>"),
838 panel
->widget
.cols
- 2, J_LEFT
));
840 else if (strcmp (panel
->dir
.list
[panel
->selected
].fname
, "..") == 0)
843 * while loading directory (do_load_dir() and do_reload_dir()),
844 * the actual stat info about ".." directory isn't got;
845 * so just don't display incorrect info about ".." directory */
846 tty_print_string (str_fit_to_term (_("UP--DIR"), panel
->widget
.cols
- 2, J_LEFT
));
849 /* Default behavior */
850 repaint_file (panel
, panel
->selected
, 0, STATUS
, 1);
854 paint_dir (WPanel
* panel
)
857 int color
; /* Color value of the line */
858 int items
; /* Number of items */
860 items
= llines (panel
) * (panel
->split
? 2 : 1);
862 for (i
= 0; i
< items
; i
++)
864 if (i
+ panel
->top_file
>= panel
->count
)
868 color
= 2 * (panel
->dir
.list
[i
+ panel
->top_file
].f
.marked
);
869 color
+= (panel
->selected
== i
+ panel
->top_file
&& panel
->active
);
871 repaint_file (panel
, i
+ panel
->top_file
, 1, color
, 0);
873 tty_set_normal_attrs ();
877 display_total_marked_size (WPanel
* panel
, int y
, int x
, gboolean size_only
)
879 char buffer
[BUF_SMALL
], b_bytes
[BUF_SMALL
], *buf
;
882 if (panel
->marked
<= 0)
885 buf
= size_only
? b_bytes
: buffer
;
886 cols
= panel
->widget
.cols
- 2;
889 * This is a trick to use two ngettext() calls in one sentence.
890 * First make "N bytes", then insert it into "X in M files".
892 g_snprintf (b_bytes
, sizeof (b_bytes
),
893 ngettext ("%s byte", "%s bytes", (unsigned long) panel
->total
),
894 size_trunc_sep (panel
->total
));
896 g_snprintf (buffer
, sizeof (buffer
),
897 ngettext ("%s in %d file", "%s in %d files", panel
->marked
),
898 b_bytes
, panel
->marked
);
900 /* don't forget spaces around buffer content */
901 buf
= (char *) str_trunc (buf
, cols
- 4);
904 /* center in panel */
905 x
= (panel
->widget
.cols
- str_term_width1 (buf
)) / 2 - 1;
908 * y == llines (panel) + 2 for mini_info_separator
909 * y == panel->widget.lines - 1 for panel bottom frame
911 widget_move (&panel
->widget
, y
, x
);
912 tty_setcolor (MARKED_COLOR
);
913 tty_printf (" %s ", buf
);
917 mini_info_separator (WPanel
* panel
)
921 const int y
= llines (panel
) + 2;
923 tty_setcolor (NORMAL_COLOR
);
924 tty_draw_hline (panel
->widget
.y
+ y
, panel
->widget
.x
+ 1,
925 ACS_HLINE
, panel
->widget
.cols
- 2);
926 /* Status displays total marked size.
927 * Centered in panel, full format. */
928 display_total_marked_size (panel
, y
, -1, FALSE
);
933 show_free_space (WPanel
* panel
)
935 /* Used to figure out how many free space we have */
936 static struct my_statfs myfs_stats
;
937 /* Old current working directory for displaying free space */
938 static char *old_cwd
= NULL
;
940 /* Don't try to stat non-local fs */
941 if (!vfs_file_is_local (panel
->cwd
) || !free_space
)
944 if (old_cwd
== NULL
|| strcmp (old_cwd
, panel
->cwd
) != 0)
946 char rpath
[PATH_MAX
];
950 old_cwd
= g_strdup (panel
->cwd
);
952 if (mc_realpath (panel
->cwd
, rpath
) == NULL
)
955 my_statfs (&myfs_stats
, rpath
);
958 if (myfs_stats
.avail
> 0 || myfs_stats
.total
> 0)
960 char buffer1
[6], buffer2
[6], tmp
[BUF_SMALL
];
961 size_trunc_len (buffer1
, sizeof (buffer1
) - 1, myfs_stats
.avail
, 1);
962 size_trunc_len (buffer2
, sizeof (buffer2
) - 1, myfs_stats
.total
, 1);
963 g_snprintf (tmp
, sizeof (tmp
), " %s/%s (%d%%) ", buffer1
, buffer2
,
964 myfs_stats
.total
> 0 ?
965 (int) (100 * (double) myfs_stats
.avail
/ myfs_stats
.total
) : 0);
966 widget_move (&panel
->widget
, panel
->widget
.lines
- 1,
967 panel
->widget
.cols
- 2 - (int) strlen (tmp
));
968 tty_setcolor (NORMAL_COLOR
);
969 tty_print_string (tmp
);
974 show_dir (WPanel
* panel
)
978 draw_box (panel
->widget
.parent
,
979 panel
->widget
.y
, panel
->widget
.x
, panel
->widget
.lines
, panel
->widget
.cols
);
983 widget_move (&panel
->widget
, llines (panel
) + 2, 0);
984 tty_print_alt_char (ACS_LTEE
);
985 widget_move (&panel
->widget
, llines (panel
) + 2, panel
->widget
.cols
- 1);
986 tty_print_alt_char (ACS_RTEE
);
989 widget_move (&panel
->widget
, 0, 1);
990 tty_print_string (panel_history_prev_item_sign
);
992 tmp
= (show_dot_files
) ? panel_hiddenfiles_sign_show
: panel_hiddenfiles_sign_hide
;
994 g_strdup_printf ("%s[%s]%s", tmp
, panel_history_show_list_sign
,
995 panel_history_next_item_sign
);
997 widget_move (&panel
->widget
, 0, panel
->widget
.cols
- 6);
998 tty_print_string (tmp
);
1003 tty_setcolor (REVERSE_COLOR
);
1005 widget_move (&panel
->widget
, 0, 3);
1008 str_term_trim (strip_home_and_password (panel
->cwd
),
1009 min (max (panel
->widget
.cols
- 12, 0), panel
->widget
.cols
)));
1011 if (!show_mini_info
)
1013 if (panel
->marked
== 0)
1015 /* Show size of curret file in the bottom of panel */
1016 if (S_ISREG (panel
->dir
.list
[panel
->selected
].st
.st_mode
))
1018 char buffer
[BUF_SMALL
];
1020 g_snprintf (buffer
, sizeof (buffer
), " %s ",
1021 size_trunc_sep (panel
->dir
.list
[panel
->selected
].st
.st_size
));
1022 tty_setcolor (NORMAL_COLOR
);
1023 widget_move (&panel
->widget
, panel
->widget
.lines
- 1, 4);
1024 tty_print_string (buffer
);
1029 /* Show total size of marked files
1030 * In the bottom of panel, display size only. */
1031 display_total_marked_size (panel
, panel
->widget
.lines
- 1, 2, TRUE
);
1035 show_free_space (panel
);
1038 tty_set_normal_attrs ();
1041 /* To be used only by long_frame and full_frame to adjust top_file */
1043 adjust_top_file (WPanel
* panel
)
1045 int old_top
= panel
->top_file
;
1047 if (panel
->selected
- old_top
> llines (panel
))
1048 panel
->top_file
= panel
->selected
;
1049 if (old_top
- panel
->count
> llines (panel
))
1050 panel
->top_file
= panel
->count
- llines (panel
);
1053 /* Repaint everything, including frame and separator */
1055 paint_panel (WPanel
* panel
)
1057 paint_frame (panel
); /* including show_dir */
1059 mini_info_separator (panel
);
1060 display_mini_info (panel
);
1064 /* add "#enc:encodning" to end of path */
1065 /* if path end width a previous #enc:, only encoding is changed no additional
1070 add_encoding_to_path (const char *path
, const char *encoding
)
1076 semi
= g_strrstr (path
, "#enc:");
1080 slash
= strchr (semi
, PATH_SEP
);
1083 result
= g_strconcat (path
, "/#enc:", encoding
, (char *) NULL
);
1088 result
= g_strconcat (path
, "/#enc:", encoding
, (char *) NULL
);
1094 result
= g_strconcat (path
, "/#enc:", encoding
, (char *) NULL
);
1101 remove_encoding_from_path (const char *path
)
1104 GString
*tmp_path
, *tmp_conv
;
1109 ret
= g_string_new ("");
1110 tmp_conv
= g_string_new ("");
1112 tmp_path
= g_string_new (path
);
1114 while ((tmp
= g_strrstr (tmp_path
->str
, "/#enc:")) != NULL
)
1116 enc
= vfs_get_encoding ((const char *) tmp
);
1117 converter
= enc
? str_crt_conv_to (enc
) : str_cnv_to_term
;
1118 if (converter
== INVALID_CONV
)
1119 converter
= str_cnv_to_term
;
1122 while (*tmp2
&& *tmp2
!= '/')
1127 str_vfs_convert_from (converter
, tmp2
, tmp_conv
);
1128 g_string_prepend (ret
, tmp_conv
->str
);
1129 g_string_set_size (tmp_conv
, 0);
1131 g_string_set_size (tmp_path
, tmp
- tmp_path
->str
);
1132 str_close_conv (converter
);
1134 g_string_prepend (ret
, tmp_path
->str
);
1135 g_string_free (tmp_path
, TRUE
);
1136 g_string_free (tmp_conv
, TRUE
);
1139 g_string_free (ret
, FALSE
);
1144 * Repaint the contents of the panels without frames. To schedule panel
1145 * for repainting, set panel->dirty to 1. There are many reasons why
1146 * the panels need to be repainted, and this is a costly operation, so
1147 * it's done once per event.
1150 update_dirty_panels (void)
1152 if (current_panel
->dirty
)
1153 paint_panel (current_panel
);
1155 if ((get_other_type () == view_listing
) && other_panel
->dirty
)
1156 paint_panel (other_panel
);
1160 do_select (WPanel
* panel
, int i
)
1162 if (i
!= panel
->selected
)
1165 panel
->selected
= i
;
1166 panel
->top_file
= panel
->selected
- (panel
->widget
.lines
- 2) / 2;
1167 if (panel
->top_file
< 0)
1168 panel
->top_file
= 0;
1173 do_try_to_select (WPanel
* panel
, const char *name
)
1180 do_select (panel
, 0);
1184 /* We only want the last component of the directory,
1185 * and from this only the name without suffix. */
1186 subdir
= vfs_strip_suffix_from_filename (x_basename (name
));
1188 /* Search that subdirectory, if found select it */
1189 for (i
= 0; i
< panel
->count
; i
++)
1191 if (strcmp (subdir
, panel
->dir
.list
[i
].fname
) == 0)
1193 do_select (panel
, i
);
1199 /* Try to select a file near the file that is missing */
1200 if (panel
->selected
>= panel
->count
)
1201 do_select (panel
, panel
->count
- 1);
1206 try_to_select (WPanel
* panel
, const char *name
)
1208 do_try_to_select (panel
, name
);
1209 select_item (panel
);
1213 panel_update_cols (Widget
* widget
, int frame_size
)
1217 if (horizontal_split
)
1219 widget
->cols
= COLS
;
1223 if (frame_size
== frame_full
)
1230 if (widget
== get_panel_widget (0))
1232 cols
= first_panel_size
;
1237 cols
= COLS
- first_panel_size
;
1238 origin
= first_panel_size
;
1242 widget
->cols
= cols
;
1246 extern int saving_setup
;
1248 panel_save_name (WPanel
* panel
)
1250 /* If the program is shuting down */
1251 if ((midnight_shutdown
&& auto_save_setup
) || saving_setup
)
1252 return g_strdup (panel
->panel_name
);
1254 return g_strconcat ("Temporal:", panel
->panel_name
, (char *) NULL
);
1258 panel_clean_dir (WPanel
* panel
)
1260 int count
= panel
->count
;
1263 panel
->top_file
= 0;
1264 panel
->selected
= 0;
1266 panel
->dirs_marked
= 0;
1268 panel
->searching
= 0;
1269 panel
->is_panelized
= 0;
1272 clean_dir (&panel
->dir
, count
);
1276 panel_destroy (WPanel
* p
)
1280 char *name
= panel_save_name (p
);
1282 panel_save_setup (p
, name
);
1283 panel_clean_dir (p
);
1285 /* save and clean history */
1288 history_put (p
->hist_name
, p
->dir_history
);
1290 p
->dir_history
= g_list_first (p
->dir_history
);
1291 g_list_foreach (p
->dir_history
, (GFunc
) g_free
, NULL
);
1292 g_list_free (p
->dir_history
);
1295 g_free (p
->hist_name
);
1297 delete_format (p
->format
);
1298 delete_format (p
->status_format
);
1300 g_free (p
->user_format
);
1301 for (i
= 0; i
< LIST_TYPES
; i
++)
1302 g_free (p
->user_status_format
[i
]);
1303 g_free (p
->dir
.list
);
1304 g_free (p
->panel_name
);
1309 panel_format_modified (WPanel
* panel
)
1311 panel
->format_modified
= 1;
1314 /* Panel creation */
1315 /* The parameter specifies the name of the panel for setup retieving */
1317 panel_new (const char *panel_name
)
1319 return panel_new_with_dir (panel_name
, NULL
);
1322 /* Panel creation for specified directory */
1323 /* The parameter specifies the name of the panel for setup retieving */
1324 /* and the path of working panel directory. If path is NULL then */
1325 /* panel will be created for current directory */
1327 panel_new_with_dir (const char *panel_name
, const char *wpath
)
1332 char curdir
[MC_MAXPATHLEN
];
1334 panel
= g_new0 (WPanel
, 1);
1336 /* No know sizes of the panel at startup */
1337 init_widget (&panel
->widget
, 0, 0, 0, 0, panel_callback
, panel_event
);
1339 /* We do not want the cursor */
1340 widget_want_cursor (panel
->widget
, 0);
1344 g_strlcpy (panel
->cwd
, wpath
, sizeof (panel
->cwd
));
1345 mc_get_current_wd (curdir
, sizeof (curdir
) - 2);
1348 mc_get_current_wd (panel
->cwd
, sizeof (panel
->cwd
) - 2);
1350 strcpy (panel
->lwd
, ".");
1352 panel
->hist_name
= g_strconcat ("Dir Hist ", panel_name
, (char *) NULL
);
1353 panel
->dir_history
= history_get (panel
->hist_name
);
1354 directory_history_add (panel
, panel
->cwd
);
1356 panel
->dir
.list
= g_new (file_entry
, MIN_FILES
);
1357 panel
->dir
.size
= MIN_FILES
;
1361 panel
->top_file
= 0;
1362 panel
->selected
= 0;
1367 panel
->searching
= 0;
1368 panel
->dirs_marked
= 0;
1369 panel
->is_panelized
= 0;
1371 panel
->status_format
= 0;
1372 panel
->format_modified
= 1;
1374 panel
->panel_name
= g_strdup (panel_name
);
1375 panel
->user_format
= g_strdup (DEFAULT_USER_FORMAT
);
1377 for (i
= 0; i
< LIST_TYPES
; i
++)
1378 panel
->user_status_format
[i
] = g_strdup (DEFAULT_USER_FORMAT
);
1380 panel
->search_buffer
[0] = 0;
1381 panel
->frame_size
= frame_half
;
1382 section
= g_strconcat ("Temporal:", panel
->panel_name
, (char *) NULL
);
1383 if (!mc_config_has_group (mc_main_config
, section
))
1386 section
= g_strdup (panel
->panel_name
);
1388 panel_load_setup (panel
, section
);
1391 /* Load format strings */
1392 err
= set_panel_formats (panel
);
1394 set_panel_formats (panel
);
1396 /* Because do_load_dir lists files in current directory */
1400 /* Load the default format */
1402 do_load_dir (panel
->cwd
, &panel
->dir
, panel
->current_sort_field
->sort_routine
,
1403 panel
->reverse
, panel
->case_sensitive
, panel
->exec_first
, panel
->filter
);
1405 /* Restore old right path */
1413 panel_reload (WPanel
* panel
)
1415 struct stat current_stat
;
1417 if (fast_reload
&& !stat (panel
->cwd
, ¤t_stat
)
1418 && current_stat
.st_ctime
== panel
->dir_stat
.st_ctime
1419 && current_stat
.st_mtime
== panel
->dir_stat
.st_mtime
)
1422 while (mc_chdir (panel
->cwd
) == -1)
1426 if (panel
->cwd
[0] == PATH_SEP
&& panel
->cwd
[1] == 0)
1428 panel_clean_dir (panel
);
1429 panel
->count
= set_zero_dir (&panel
->dir
) ? 1 : 0;
1432 last_slash
= strrchr (panel
->cwd
, PATH_SEP
);
1433 if (!last_slash
|| last_slash
== panel
->cwd
)
1434 strcpy (panel
->cwd
, PATH_SEP_STR
);
1437 memset (&(panel
->dir_stat
), 0, sizeof (panel
->dir_stat
));
1442 do_reload_dir (panel
->cwd
, &panel
->dir
, panel
->current_sort_field
->sort_routine
,
1443 panel
->count
, panel
->reverse
, panel
->case_sensitive
,
1444 panel
->exec_first
, panel
->filter
);
1447 if (panel
->selected
>= panel
->count
)
1448 do_select (panel
, panel
->count
- 1);
1450 recalculate_panel_summary (panel
);
1454 panel_paint_sort_info (WPanel
* panel
)
1456 const char *sort_sign
= (panel
->reverse
) ? panel_sort_down_sign
: panel_sort_up_sign
;
1459 if (*panel
->current_sort_field
->hotkey
== '\0')
1462 str
= g_strdup_printf ("%s%s", sort_sign
, Q_ (panel
->current_sort_field
->hotkey
));
1464 widget_move (&panel
->widget
, 1, 1);
1465 tty_print_string (str
);
1470 panel_get_title_without_hotkey (const char *title
)
1472 char *translated_title
;
1477 if (title
[0] == '\0')
1478 return g_strdup ("");
1480 translated_title
= g_strdup (_(title
));
1482 hkey
= strchr (translated_title
, '&');
1483 if ((hkey
!= NULL
) && (hkey
[1] != '\0'))
1484 memmove ((void *) hkey
, (void *) hkey
+ 1, strlen (hkey
));
1486 return translated_title
;
1490 paint_frame (WPanel
* panel
)
1493 GString
*format_txt
;
1496 adjust_top_file (panel
);
1498 widget_erase (&panel
->widget
);
1501 widget_move (&panel
->widget
, 1, 1);
1503 for (side
= 0; side
<= panel
->split
; side
++)
1509 tty_setcolor (NORMAL_COLOR
);
1510 tty_print_one_vline ();
1511 width
= panel
->widget
.cols
- panel
->widget
.cols
/ 2 - 1;
1513 else if (panel
->split
)
1514 width
= panel
->widget
.cols
/ 2 - 3;
1516 width
= panel
->widget
.cols
- 2;
1518 format_txt
= g_string_new ("");
1519 for (format
= panel
->format
; format
; format
= format
->next
)
1521 if (format
->string_fn
)
1523 g_string_set_size (format_txt
, 0);
1525 if (panel
->list_type
== list_long
1526 && strcmp (format
->id
, panel
->current_sort_field
->id
) == 0)
1527 g_string_append (format_txt
,
1528 (panel
->reverse
) ? panel_sort_down_sign
: panel_sort_up_sign
);
1530 g_string_append (format_txt
, format
->title
);
1531 if (strcmp (format
->id
, "name") == 0 && panel
->filter
&& *panel
->filter
)
1533 g_string_append (format_txt
, " [");
1534 g_string_append (format_txt
, panel
->filter
);
1535 g_string_append (format_txt
, "]");
1538 tty_setcolor (MARKED_COLOR
);
1539 tty_print_string (str_fit_to_term (format_txt
->str
, format
->field_len
,
1541 width
-= format
->field_len
;
1545 tty_setcolor (NORMAL_COLOR
);
1546 tty_print_one_vline ();
1550 g_string_free (format_txt
, TRUE
);
1553 tty_draw_hline (-1, -1, ' ', width
);
1556 if (panel
->list_type
!= list_long
)
1557 panel_paint_sort_info (panel
);
1561 parse_panel_size (WPanel
* panel
, const char *format
, int isstatus
)
1563 int frame
= frame_half
;
1564 format
= skip_separators (format
);
1566 if (!strncmp (format
, "full", 4))
1571 else if (!strncmp (format
, "half", 4))
1579 panel
->frame_size
= frame
;
1583 /* Now, the optional column specifier */
1584 format
= skip_separators (format
);
1586 if (*format
== '1' || *format
== '2')
1589 panel
->split
= *format
== '2';
1594 panel_update_cols (&(panel
->widget
), panel
->frame_size
);
1596 return skip_separators (format
);
1601 all := panel_format? format
1602 panel_format := [full|half] [1|2]
1603 format := one_format_e
1604 | format , one_format_e
1606 one_format_e := just format.id [opt_size]
1608 opt_size := : size [opt_expand]
1615 parse_display_format (WPanel
* panel
, const char *format
, char **error
, int isstatus
,
1616 int *res_total_cols
)
1618 format_e
*darr
, *old
= 0, *home
= 0; /* The formats we return */
1619 int total_cols
= 0; /* Used columns by the format */
1620 int set_justify
; /* flag: set justification mode? */
1621 align_crt_t justify
= J_LEFT
; /* Which mode. */
1624 static size_t i18n_timelength
= 0; /* flag: check ?Time length at startup */
1628 if (i18n_timelength
== 0)
1630 i18n_timelength
= i18n_checktimelength (); /* Musn't be 0 */
1632 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
1633 if (strcmp ("time", panel_fields
[i
].id
+ 1) == 0)
1634 panel_fields
[i
].min_size
= i18n_timelength
;
1638 * This makes sure that the panel and mini status full/half mode
1641 format
= parse_panel_size (panel
, format
, isstatus
);
1644 { /* format can be an empty string */
1647 darr
= g_new0 (format_e
, 1);
1649 /* I'm so ugly, don't look at me :-) */
1657 format
= skip_separators (format
);
1659 if (strchr ("<=>", *format
))
1675 format
= skip_separators (format
+ 1);
1680 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
1682 size_t klen
= strlen (panel_fields
[i
].id
);
1684 if (strncmp (format
, panel_fields
[i
].id
, klen
) != 0)
1689 darr
->requested_field_len
= panel_fields
[i
].min_size
;
1690 darr
->string_fn
= panel_fields
[i
].string_fn
;
1691 darr
->title
= panel_get_title_without_hotkey (panel_fields
[i
].title_hotkey
);
1693 darr
->id
= panel_fields
[i
].id
;
1694 darr
->expand
= panel_fields
[i
].expands
;
1695 darr
->just_mode
= panel_fields
[i
].default_just
;
1699 if (IS_FIT (darr
->just_mode
))
1700 darr
->just_mode
= MAKE_FIT (justify
);
1702 darr
->just_mode
= justify
;
1706 format
= skip_separators (format
);
1708 /* If we have a size specifier */
1713 /* If the size was specified, we don't want
1714 * auto-expansion by default
1718 req_length
= atoi (format
);
1719 darr
->requested_field_len
= req_length
;
1721 format
= skip_numbers (format
);
1723 /* Now, if they insist on expansion */
1736 char *tmp_format
= g_strdup (format
);
1738 int pos
= min (8, strlen (format
));
1739 delete_format (home
);
1740 tmp_format
[pos
] = 0;
1741 *error
= g_strconcat (_("Unknown tag on display format: "), tmp_format
, (char *) NULL
);
1742 g_free (tmp_format
);
1745 total_cols
+= darr
->requested_field_len
;
1748 *res_total_cols
= total_cols
;
1753 use_display_format (WPanel
* panel
, const char *format
, char **error
, int isstatus
)
1755 #define MAX_EXPAND 4
1756 int expand_top
= 0; /* Max used element in expand */
1757 int usable_columns
; /* Usable columns in the panel */
1760 format_e
*darr
, *home
;
1763 format
= DEFAULT_USER_FORMAT
;
1765 home
= parse_display_format (panel
, format
, error
, isstatus
, &total_cols
);
1772 /* Status needn't to be split */
1773 usable_columns
= ((panel
->widget
.cols
- 2) / ((isstatus
)
1775 : (panel
->split
+ 1))) - (!isstatus
1778 /* Look for the expandable fields and set field_len based on the requested field len */
1779 for (darr
= home
; darr
&& expand_top
< MAX_EXPAND
; darr
= darr
->next
)
1781 darr
->field_len
= darr
->requested_field_len
;
1786 /* If we used more columns than the available columns, adjust that */
1787 if (total_cols
> usable_columns
)
1789 int pdif
, dif
= total_cols
- usable_columns
;
1794 for (darr
= home
; darr
; darr
= darr
->next
)
1796 if (dif
&& darr
->field_len
- 1)
1803 /* avoid endless loop if num fields > 40 */
1807 total_cols
= usable_columns
; /* give up, the rest should be truncated */
1810 /* Expand the available space */
1811 if ((usable_columns
> total_cols
) && expand_top
)
1813 int spaces
= (usable_columns
- total_cols
) / expand_top
;
1814 int extra
= (usable_columns
- total_cols
) % expand_top
;
1816 for (i
= 0, darr
= home
; darr
&& (i
< expand_top
); darr
= darr
->next
)
1819 darr
->field_len
+= (spaces
+ ((i
== 0) ? extra
: 0));
1826 /* Switches the panel to the mode specified in the format */
1827 /* Seting up both format and status string. Return: 0 - on success; */
1828 /* 1 - format error; 2 - status error; 3 - errors in both formats. */
1830 set_panel_formats (WPanel
* p
)
1836 form
= use_display_format (p
, panel_format (p
), &err
, 0);
1845 delete_format (p
->format
);
1851 form
= use_display_format (p
, mini_status_format (p
), &err
, 1);
1860 delete_format (p
->status_format
);
1861 p
->status_format
= form
;
1865 panel_format_modified (p
);
1866 panel_update_cols (&(p
->widget
), p
->frame_size
);
1869 message (D_ERROR
, _("Warning"),
1870 _("User supplied format looks invalid, reverting to default."));
1873 g_free (p
->user_format
);
1874 p
->user_format
= g_strdup (DEFAULT_USER_FORMAT
);
1878 g_free (p
->user_status_format
[p
->list_type
]);
1879 p
->user_status_format
[p
->list_type
] = g_strdup (DEFAULT_USER_FORMAT
);
1885 /* Given the panel->view_type returns the format string to be parsed */
1887 panel_format (WPanel
* panel
)
1889 switch (panel
->list_type
)
1893 return "full perm space nlink space owner space group space size space mtime space name";
1896 return "half 2 type name";
1899 return panel
->user_format
;
1903 return "half type name | size | mtime";
1908 mini_status_format (WPanel
* panel
)
1910 if (panel
->user_mini_status
)
1911 return panel
->user_status_format
[panel
->list_type
];
1913 switch (panel
->list_type
)
1917 return "full perm space nlink space owner space group space size space mtime space name";
1920 return "half type name space bsize space perm space";
1923 return "half type name";
1927 return panel
->user_format
;
1932 /* Panel operation commands */
1935 /* Used to emulate Lynx's entering leaving a directory with the arrow keys */
1937 maybe_cd (int move_up_dir
)
1939 if (navigate_with_arrows
)
1941 if (!cmdline
->buffer
[0])
1945 do_cd ("..", cd_exact
);
1948 if (S_ISDIR (selection (current_panel
)->st
.st_mode
)
1949 || link_isdir (selection (current_panel
)))
1951 do_cd (selection (current_panel
)->fname
, cd_exact
);
1956 return MSG_NOT_HANDLED
;
1959 /* Returns the number of items in the given panel */
1964 return llines (p
) * 2;
1969 /* Select current item and readjust the panel */
1971 select_item (WPanel
* panel
)
1973 int items
= ITEMS (panel
);
1975 /* Although currently all over the code we set the selection and
1976 top file to decent values before calling select_item, I could
1977 forget it someday, so it's better to do the actual fitting here */
1979 if (panel
->top_file
< 0)
1980 panel
->top_file
= 0;
1982 if (panel
->selected
< 0)
1983 panel
->selected
= 0;
1985 if (panel
->selected
> panel
->count
- 1)
1986 panel
->selected
= panel
->count
- 1;
1988 if (panel
->top_file
> panel
->count
- 1)
1989 panel
->top_file
= panel
->count
- 1;
1991 if ((panel
->count
- panel
->top_file
) < items
)
1993 panel
->top_file
= panel
->count
- items
;
1994 if (panel
->top_file
< 0)
1995 panel
->top_file
= 0;
1998 if (panel
->selected
< panel
->top_file
)
1999 panel
->top_file
= panel
->selected
;
2001 if ((panel
->selected
- panel
->top_file
) >= items
)
2002 panel
->top_file
= panel
->selected
- items
+ 1;
2006 execute_hooks (select_file_hook
);
2009 /* Clears all files in the panel, used only when one file was marked */
2011 unmark_files (WPanel
* panel
)
2017 for (i
= 0; i
< panel
->count
; i
++)
2018 file_mark (panel
, i
, 0);
2020 panel
->dirs_marked
= 0;
2026 unselect_item (WPanel
* panel
)
2028 repaint_file (panel
, panel
->selected
, 1, 2 * selection (panel
)->f
.marked
, 0);
2032 move_down (WPanel
* panel
)
2034 if (panel
->selected
+ 1 == panel
->count
)
2037 unselect_item (panel
);
2039 if (panel
->selected
- panel
->top_file
== ITEMS (panel
) && panel_scroll_pages
)
2041 /* Scroll window half screen */
2042 panel
->top_file
+= ITEMS (panel
) / 2;
2043 if (panel
->top_file
> panel
->count
- ITEMS (panel
))
2044 panel
->top_file
= panel
->count
- ITEMS (panel
);
2047 select_item (panel
);
2051 move_up (WPanel
* panel
)
2053 if (panel
->selected
== 0)
2056 unselect_item (panel
);
2058 if (panel
->selected
< panel
->top_file
&& panel_scroll_pages
)
2060 /* Scroll window half screen */
2061 panel
->top_file
-= ITEMS (panel
) / 2;
2062 if (panel
->top_file
< 0)
2063 panel
->top_file
= 0;
2066 select_item (panel
);
2069 /* Changes the selection by lines (may be negative) */
2071 move_selection (WPanel
* panel
, int lines
)
2076 new_pos
= panel
->selected
+ lines
;
2077 if (new_pos
>= panel
->count
)
2078 new_pos
= panel
->count
- 1;
2083 unselect_item (panel
);
2084 panel
->selected
= new_pos
;
2086 if (panel
->selected
- panel
->top_file
>= ITEMS (panel
))
2088 panel
->top_file
+= lines
;
2092 if (panel
->selected
- panel
->top_file
< 0)
2094 panel
->top_file
+= lines
;
2100 if (panel
->top_file
> panel
->selected
)
2101 panel
->top_file
= panel
->selected
;
2102 if (panel
->top_file
< 0)
2103 panel
->top_file
= 0;
2106 select_item (panel
);
2110 move_left (WPanel
* panel
)
2114 move_selection (panel
, -llines (panel
));
2118 return maybe_cd (1); /* cd .. */
2122 move_right (WPanel
* panel
)
2126 move_selection (panel
, llines (panel
));
2130 return maybe_cd (0); /* cd (selection) */
2134 prev_page (WPanel
* panel
)
2138 if (!panel
->selected
&& !panel
->top_file
)
2140 unselect_item (panel
);
2141 items
= ITEMS (panel
);
2142 if (panel
->top_file
< items
)
2143 items
= panel
->top_file
;
2145 panel
->selected
= 0;
2147 panel
->selected
-= items
;
2148 panel
->top_file
-= items
;
2150 select_item (panel
);
2155 ctrl_prev_page (WPanel
* panel
)
2158 do_cd ("..", cd_exact
);
2162 next_page (WPanel
* panel
)
2166 if (panel
->selected
== panel
->count
- 1)
2168 unselect_item (panel
);
2169 items
= ITEMS (panel
);
2170 if (panel
->top_file
> panel
->count
- 2 * items
)
2171 items
= panel
->count
- items
- panel
->top_file
;
2172 if (panel
->top_file
+ items
< 0)
2173 items
= -panel
->top_file
;
2175 panel
->selected
= panel
->count
- 1;
2177 panel
->selected
+= items
;
2178 panel
->top_file
+= items
;
2180 select_item (panel
);
2185 ctrl_next_page (WPanel
* panel
)
2187 if ((S_ISDIR (selection (panel
)->st
.st_mode
) || link_isdir (selection (panel
))))
2189 do_cd (selection (panel
)->fname
, cd_exact
);
2194 goto_top_file (WPanel
* panel
)
2196 unselect_item (panel
);
2197 panel
->selected
= panel
->top_file
;
2198 select_item (panel
);
2202 goto_middle_file (WPanel
* panel
)
2204 unselect_item (panel
);
2205 panel
->selected
= panel
->top_file
+ (ITEMS (panel
) / 2);
2206 select_item (panel
);
2210 goto_bottom_file (WPanel
* panel
)
2212 unselect_item (panel
);
2213 panel
->selected
= panel
->top_file
+ ITEMS (panel
) - 1;
2214 select_item (panel
);
2218 move_home (WPanel
* panel
)
2220 if (panel
->selected
== 0)
2222 unselect_item (panel
);
2226 int middle_pos
= panel
->top_file
+ (ITEMS (panel
) / 2);
2228 if (panel
->selected
> middle_pos
)
2230 goto_middle_file (panel
);
2233 if (panel
->selected
!= panel
->top_file
)
2235 goto_top_file (panel
);
2240 panel
->top_file
= 0;
2241 panel
->selected
= 0;
2244 select_item (panel
);
2248 move_end (WPanel
* panel
)
2250 if (panel
->selected
== panel
->count
- 1)
2252 unselect_item (panel
);
2255 int middle_pos
= panel
->top_file
+ (ITEMS (panel
) / 2);
2257 if (panel
->selected
< middle_pos
)
2259 goto_middle_file (panel
);
2262 if (panel
->selected
!= (panel
->top_file
+ ITEMS (panel
) - 1))
2264 goto_bottom_file (panel
);
2269 panel
->selected
= panel
->count
- 1;
2271 select_item (panel
);
2274 /* Recalculate the panels summary information, used e.g. when marked
2275 files might have been removed by an external command */
2277 recalculate_panel_summary (WPanel
* panel
)
2282 panel
->dirs_marked
= 0;
2285 for (i
= 0; i
< panel
->count
; i
++)
2286 if (panel
->dir
.list
[i
].f
.marked
)
2288 /* do_file_mark will return immediately if newmark == oldmark.
2289 So we have to first unmark it to get panel's summary information
2290 updated. (Norbert) */
2291 panel
->dir
.list
[i
].f
.marked
= 0;
2292 do_file_mark (panel
, i
, 1);
2296 /* This routine marks a file or a directory */
2298 do_file_mark (WPanel
* panel
, int idx
, int mark
)
2300 if (panel
->dir
.list
[idx
].f
.marked
== mark
)
2303 /* Only '..' can't be marked, '.' isn't visible */
2304 if (!strcmp (panel
->dir
.list
[idx
].fname
, ".."))
2307 file_mark (panel
, idx
, mark
);
2308 if (panel
->dir
.list
[idx
].f
.marked
)
2311 if (S_ISDIR (panel
->dir
.list
[idx
].st
.st_mode
))
2313 if (panel
->dir
.list
[idx
].f
.dir_size_computed
)
2314 panel
->total
+= panel
->dir
.list
[idx
].st
.st_size
;
2315 panel
->dirs_marked
++;
2318 panel
->total
+= panel
->dir
.list
[idx
].st
.st_size
;
2323 if (S_ISDIR (panel
->dir
.list
[idx
].st
.st_mode
))
2325 if (panel
->dir
.list
[idx
].f
.dir_size_computed
)
2326 panel
->total
-= panel
->dir
.list
[idx
].st
.st_size
;
2327 panel
->dirs_marked
--;
2330 panel
->total
-= panel
->dir
.list
[idx
].st
.st_size
;
2336 do_mark_file (WPanel
* panel
, int do_move
)
2338 do_file_mark (panel
, panel
->selected
, selection (panel
)->f
.marked
? 0 : 1);
2339 if (mark_moves_down
&& do_move
)
2344 mark_file (WPanel
* panel
)
2346 do_mark_file (panel
, 1);
2349 /* Incremental search of a file name in the panel */
2351 do_search (WPanel
* panel
, int c_code
)
2355 gboolean wrapped
= FALSE
;
2357 mc_search_t
*search
;
2358 char *reg_exp
, *esc_str
;
2359 gboolean is_found
= FALSE
;
2361 l
= strlen (panel
->search_buffer
);
2362 if (c_code
== KEY_BACKSPACE
)
2366 act
= panel
->search_buffer
+ l
;
2367 str_prev_noncomb_char (&act
, panel
->search_buffer
);
2370 panel
->search_chpoint
= 0;
2374 if (c_code
!= 0 && (gsize
) panel
->search_chpoint
< sizeof (panel
->search_char
))
2376 panel
->search_char
[panel
->search_chpoint
] = c_code
;
2377 panel
->search_chpoint
++;
2380 if (panel
->search_chpoint
> 0)
2382 switch (str_is_valid_char (panel
->search_char
, panel
->search_chpoint
))
2387 panel
->search_chpoint
= 0;
2390 if (l
+ panel
->search_chpoint
< sizeof (panel
->search_buffer
))
2392 memcpy (panel
->search_buffer
+ l
, panel
->search_char
, panel
->search_chpoint
);
2393 l
+= panel
->search_chpoint
;
2394 (panel
->search_buffer
+ l
)[0] = '\0';
2395 panel
->search_chpoint
= 0;
2401 reg_exp
= g_strdup_printf ("%s*", panel
->search_buffer
);
2402 esc_str
= strutils_escape (reg_exp
, -1, ",|\\{}[]", TRUE
);
2403 search
= mc_search_new (esc_str
, -1);
2404 search
->search_type
= MC_SEARCH_T_GLOB
;
2405 search
->is_entire_line
= TRUE
;
2406 search
->is_case_sentitive
= 0;
2408 sel
= panel
->selected
;
2409 for (i
= panel
->selected
; !wrapped
|| i
!= panel
->selected
; i
++)
2411 if (i
>= panel
->count
)
2418 if (mc_search_run (search
, panel
->dir
.list
[i
].fname
, 0, panel
->dir
.list
[i
].fnamelen
, NULL
))
2427 unselect_item (panel
);
2428 panel
->selected
= sel
;
2429 select_item (panel
);
2430 paint_panel (panel
);
2432 else if (c_code
!= KEY_BACKSPACE
)
2434 act
= panel
->search_buffer
+ l
;
2435 str_prev_noncomb_char (&act
, panel
->search_buffer
);
2438 mc_search_free (search
);
2444 start_search (WPanel
* panel
)
2446 if (panel
->searching
)
2448 if (panel
->selected
+ 1 == panel
->count
)
2449 panel
->selected
= 0;
2452 do_search (panel
, 0);
2456 panel
->searching
= 1;
2457 panel
->search_buffer
[0] = '\0';
2458 panel
->search_char
[0] = '\0';
2459 panel
->search_chpoint
= 0;
2460 display_mini_info (panel
);
2465 /* Return 1 if the Enter key has been processed, 0 otherwise */
2467 do_enter_on_file_entry (file_entry
* fe
)
2472 * Directory or link to directory - change directory.
2473 * Try the same for the entries on which mc_lstat() has failed.
2475 if (S_ISDIR (fe
->st
.st_mode
) || link_isdir (fe
) || (fe
->st
.st_mode
== 0))
2477 if (!do_cd (fe
->fname
, cd_exact
))
2478 message (D_ERROR
, MSG_ERROR
, _("Cannot change directory"));
2482 /* Try associated command */
2483 if (regex_command (fe
->fname
, "Open", 0) != 0)
2486 /* Check if the file is executable */
2487 full_name
= concat_dir_and_file (current_panel
->cwd
, fe
->fname
);
2488 if (!is_exe (fe
->st
.st_mode
) || !if_link_is_exe (full_name
, fe
))
2495 if (confirm_execute
)
2498 (_(" The Midnight Commander "),
2499 _(" Do you really want to execute? "), D_NORMAL
, 2, _("&Yes"), _("&No")) != 0)
2503 if (!vfs_current_is_local ())
2508 tmp
= concat_dir_and_file (vfs_get_current_dir (), fe
->fname
);
2509 ret
= mc_setctl (tmp
, VFS_SETCTL_RUN
, NULL
);
2511 /* We took action only if the dialog was shown or the execution
2513 return confirm_execute
|| (ret
== 0);
2518 char *tmp
= name_quote (fe
->fname
, 0);
2519 char *cmd
= g_strconcat (".", PATH_SEP_STR
, tmp
, (char *) NULL
);
2521 shell_execute (cmd
, 0);
2526 source_codepage
= default_source_codepage
;
2533 do_enter (WPanel
* panel
)
2535 return do_enter_on_file_entry (selection (panel
));
2539 chdir_other_panel (WPanel
* panel
)
2542 char *sel_entry
= NULL
;
2544 if (get_other_type () != view_listing
)
2546 set_display_type (get_other_index (), view_listing
);
2549 if (!S_ISDIR (panel
->dir
.list
[panel
->selected
].st
.st_mode
))
2551 new_dir
= concat_dir_and_file (panel
->cwd
, "..");
2552 sel_entry
= strrchr (panel
->cwd
, PATH_SEP
);
2555 new_dir
= concat_dir_and_file (panel
->cwd
, panel
->dir
.list
[panel
->selected
].fname
);
2558 do_cd (new_dir
, cd_exact
);
2560 try_to_select (current_panel
, sel_entry
);
2569 * Make the current directory of the current panel also the current
2570 * directory of the other panel. Put the other panel to the listing
2571 * mode if needed. If the current panel is panelized, the other panel
2572 * doesn't become panelized.
2575 sync_other_panel (WPanel
* panel
)
2577 if (get_other_type () != view_listing
)
2579 set_display_type (get_other_index (), view_listing
);
2582 do_panel_cd (other_panel
, current_panel
->cwd
, cd_exact
);
2584 /* try to select current filename on the other panel */
2585 if (!panel
->is_panelized
)
2587 try_to_select (other_panel
, selection (panel
)->fname
);
2592 chdir_to_readlink (WPanel
* panel
)
2596 if (get_other_type () != view_listing
)
2599 if (S_ISLNK (panel
->dir
.list
[panel
->selected
].st
.st_mode
))
2601 char buffer
[MC_MAXPATHLEN
], *p
;
2605 i
= readlink (selection (panel
)->fname
, buffer
, MC_MAXPATHLEN
- 1);
2608 if (mc_stat (selection (panel
)->fname
, &st
) < 0)
2611 if (!S_ISDIR (st
.st_mode
))
2613 p
= strrchr (buffer
, PATH_SEP
);
2617 p
= strrchr (buffer
, PATH_SEP
);
2623 if (*buffer
== PATH_SEP
)
2624 new_dir
= g_strdup (buffer
);
2626 new_dir
= concat_dir_and_file (panel
->cwd
, buffer
);
2629 do_cd (new_dir
, cd_exact
);
2639 panel_get_format_field_count (WPanel
* panel
)
2643 for (lc_index
= 0, format
= panel
->format
; format
!= NULL
; format
= format
->next
, lc_index
++);
2648 function return 0 if not found and REAL_INDEX+1 if found
2651 panel_get_format_field_index_by_name (WPanel
* panel
, const char *name
)
2656 for (lc_index
= 1, format
= panel
->format
;
2657 !(format
== NULL
|| strcmp (format
->title
, name
) == 0); format
= format
->next
, lc_index
++);
2665 panel_get_format_field_by_index (WPanel
* panel
, gsize lc_index
)
2668 for (format
= panel
->format
;
2669 !(format
== NULL
|| lc_index
== 0); format
= format
->next
, lc_index
--);
2673 static const panel_field_t
*
2674 panel_get_sortable_field_by_format (WPanel
* panel
, gsize lc_index
)
2676 const panel_field_t
*pfield
;
2679 format
= panel_get_format_field_by_index (panel
, lc_index
);
2682 pfield
= panel_get_field_by_title (format
->title
);
2685 if (pfield
->sort_routine
== NULL
)
2691 panel_toggle_sort_order_prev (WPanel
* panel
)
2696 const panel_field_t
*pfield
= NULL
;
2698 title
= panel_get_title_without_hotkey (panel
->current_sort_field
->title_hotkey
);
2699 lc_index
= panel_get_format_field_index_by_name (panel
, title
);
2704 /* search for prev sortable column in panel format */
2705 for (i
= lc_index
- 1;
2706 i
!= 0 && (pfield
= panel_get_sortable_field_by_format (panel
, i
- 1)) == NULL
; i
--);
2711 /* Sortable field not found. Try to search in each array */
2712 for (i
= panel_get_format_field_count (panel
);
2713 i
!= 0 && (pfield
= panel_get_sortable_field_by_format (panel
, i
- 1)) == NULL
; i
--);
2717 panel
->current_sort_field
= pfield
;
2718 panel_set_sort_order (panel
, panel
->current_sort_field
);
2723 panel_toggle_sort_order_next (WPanel
* panel
)
2726 const panel_field_t
*pfield
= NULL
;
2727 gsize format_field_count
= panel_get_format_field_count (panel
);
2730 title
= panel_get_title_without_hotkey (panel
->current_sort_field
->title_hotkey
);
2731 lc_index
= panel_get_format_field_index_by_name (panel
, title
);
2734 if (lc_index
!= 0 && lc_index
!= format_field_count
)
2736 /* search for prev sortable column in panel format */
2738 i
!= format_field_count
2739 && (pfield
= panel_get_sortable_field_by_format (panel
, i
)) == NULL
; i
++);
2744 /* Sortable field not found. Try to search in each array */
2746 i
!= format_field_count
2747 && (pfield
= panel_get_sortable_field_by_format (panel
, i
)) == NULL
; i
++);
2751 panel
->current_sort_field
= pfield
;
2752 panel_set_sort_order (panel
, panel
->current_sort_field
);
2756 panel_select_sort_order (WPanel
* panel
)
2758 const panel_field_t
*sort_order
;
2759 sort_order
= sort_box (panel
->current_sort_field
, &panel
->reverse
,
2760 &panel
->case_sensitive
, &panel
->exec_first
);
2761 if (sort_order
== NULL
)
2763 panel
->current_sort_field
= sort_order
;
2764 panel_set_sort_order (panel
, panel
->current_sort_field
);
2769 panel_set_sort_type_by_id (WPanel
* panel
, const char *name
)
2771 const panel_field_t
*sort_order
;
2773 if (strcmp (panel
->current_sort_field
->id
, name
) != 0)
2775 sort_order
= panel_get_field_by_id (name
);
2776 if (sort_order
== NULL
)
2778 panel
->current_sort_field
= sort_order
;
2782 panel
->reverse
= !panel
->reverse
;
2784 panel_set_sort_order (panel
, panel
->current_sort_field
);
2787 typedef void (*panel_key_callback
) (WPanel
*);
2790 cmd_do_enter (WPanel
* wp
)
2792 (void) do_enter (wp
);
2795 cmd_view_simple (WPanel
* wp
)
2801 cmd_edit_new (WPanel
* wp
)
2807 cmd_copy_local (WPanel
* wp
)
2813 cmd_rename_local (WPanel
* wp
)
2816 rename_cmd_local ();
2819 cmd_delete_local (WPanel
* wp
)
2822 delete_cmd_local ();
2825 cmd_select (WPanel
* wp
)
2831 cmd_unselect (WPanel
* wp
)
2837 cmd_reverse_selection (WPanel
* wp
)
2840 reverse_selection_cmd ();
2844 panel_execute_cmd (WPanel
* panel
, unsigned long command
)
2846 int res
= MSG_HANDLED
;
2850 case CK_PanelChdirOtherPanel
:
2851 chdir_other_panel (panel
);
2853 case CK_PanelChdirToReadlink
:
2854 chdir_to_readlink (panel
);
2856 case CK_PanelCmdCopyLocal
:
2857 cmd_copy_local (panel
);
2859 case CK_PanelCmdDeleteLocal
:
2860 cmd_delete_local (panel
);
2862 case CK_PanelCmdDoEnter
:
2863 cmd_do_enter (panel
);
2865 case CK_PanelCmdViewSimple
:
2866 cmd_view_simple (panel
);
2868 case CK_PanelCmdEditNew
:
2869 cmd_edit_new (panel
);
2871 case CK_PanelCmdRenameLocal
:
2872 cmd_rename_local (panel
);
2874 case CK_PanelCmdReverseSelection
:
2875 cmd_reverse_selection (panel
);
2877 case CK_PanelCmdSelect
:
2880 case CK_PanelCmdUnselect
:
2881 cmd_unselect (panel
);
2883 case CK_PanelNextPage
:
2886 case CK_PanelPrevPage
:
2889 case CK_PanelCtrlNextPage
:
2890 ctrl_next_page (panel
);
2892 case CK_PanelCtrlPrevPage
:
2893 ctrl_prev_page (panel
);
2895 case CK_PanelDirectoryHistoryList
:
2896 directory_history_list (panel
);
2898 case CK_PanelDirectoryHistoryNext
:
2899 directory_history_next (panel
);
2901 case CK_PanelDirectoryHistoryPrev
:
2902 directory_history_prev (panel
);
2904 case CK_PanelGotoBottomFile
:
2905 goto_bottom_file (panel
);
2907 case CK_PanelGotoMiddleFile
:
2908 goto_middle_file (panel
);
2910 case CK_PanelGotoTopFile
:
2911 goto_top_file (panel
);
2913 case CK_PanelMarkFile
:
2916 case CK_PanelMoveUp
:
2919 case CK_PanelMoveDown
:
2922 case CK_PanelMoveLeft
:
2923 res
= move_left (panel
);
2925 case CK_PanelMoveRight
:
2926 res
= move_right (panel
);
2928 case CK_PanelMoveEnd
:
2931 case CK_PanelMoveHome
:
2934 case CK_PanelSetPanelEncoding
:
2935 set_panel_encoding (panel
);
2937 case CK_PanelStartSearch
:
2938 start_search (panel
);
2940 case CK_PanelSyncOtherPanel
:
2941 sync_other_panel (panel
);
2943 case CK_PanelSelectSortOrder
:
2944 panel_select_sort_order (panel
);
2946 case CK_PanelToggleSortOrderPrev
:
2947 panel_toggle_sort_order_prev (panel
);
2949 case CK_PanelToggleSortOrderNext
:
2950 panel_toggle_sort_order_next (panel
);
2952 case CK_PanelReverseSort
:
2953 panel
->reverse
= !panel
->reverse
;
2954 panel_set_sort_order (panel
, panel
->current_sort_field
);
2956 case CK_PanelSortOrderByName
:
2957 panel_set_sort_type_by_id (panel
, "name");
2959 case CK_PanelSortOrderByExt
:
2960 panel_set_sort_type_by_id (panel
, "extension");
2962 case CK_PanelSortOrderBySize
:
2963 panel_set_sort_type_by_id (panel
, "size");
2965 case CK_PanelSortOrderByMTime
:
2966 panel_set_sort_type_by_id (panel
, "mtime");
2973 panel_key (WPanel
* panel
, int key
)
2976 unsigned long res
, command
;
2978 for (i
= 0; panel_map
[i
].key
!= 0; i
++)
2980 if (key
== panel_map
[i
].key
)
2982 int old_searching
= panel
->searching
;
2984 if (panel_map
[i
].command
!= CK_PanelStartSearch
)
2985 panel
->searching
= 0;
2987 command
= panel_map
[i
].command
;
2988 res
= panel_execute_cmd (panel
, command
);
2990 if (res
== MSG_NOT_HANDLED
)
2993 if (panel
->searching
!= old_searching
)
2994 display_mini_info (panel
);
2999 if (torben_fj_mode
&& key
== ALT ('h'))
3001 goto_middle_file (panel
);
3005 if (is_abort_char (key
))
3007 panel
->searching
= 0;
3008 display_mini_info (panel
);
3012 /* Do not eat characters not meant for the panel below ' ' (e.g. C-l). */
3013 if ((key
>= ' ' && key
<= 255) || key
== KEY_BACKSPACE
)
3015 if (panel
->searching
)
3017 do_search (panel
, key
);
3021 if (!command_prompt
)
3023 start_search (panel
);
3024 do_search (panel
, key
);
3029 return MSG_NOT_HANDLED
;
3033 panel_callback (Widget
* w
, widget_msg_t msg
, int parm
)
3035 WPanel
*panel
= (WPanel
*) w
;
3041 paint_panel (panel
);
3045 current_panel
= panel
;
3047 if (mc_chdir (panel
->cwd
) != 0)
3049 char *cwd
= strip_password (g_strdup (panel
->cwd
), 1);
3050 message (D_ERROR
, MSG_ERROR
, _(" Cannot chdir to \"%s\" \n %s "),
3051 cwd
, unix_error_string (errno
));
3055 subshell_chdir (panel
->cwd
);
3057 update_xterm_title_path ();
3058 select_item (panel
);
3063 bb
= find_buttonbar (panel
->widget
.parent
);
3064 midnight_set_buttonbar (bb
);
3065 buttonbar_redraw (bb
);
3068 case WIDGET_UNFOCUS
:
3069 /* Janne: look at this for the multiple panel options */
3070 if (panel
->searching
)
3072 panel
->searching
= 0;
3073 display_mini_info (panel
);
3077 unselect_item (panel
);
3081 return panel_key (panel
, parm
);
3083 case WIDGET_DESTROY
:
3084 panel_destroy (panel
);
3088 return default_proc (msg
, parm
);
3093 file_mark (WPanel
* panel
, int lc_index
, int val
)
3095 if (panel
->dir
.list
[lc_index
].f
.marked
!= val
)
3097 panel
->dir
.list
[lc_index
].f
.marked
= val
;
3103 /* Panel mouse events support routines */
3105 static int mouse_marking
= 0;
3108 mouse_toggle_mark (WPanel
* panel
)
3110 do_mark_file (panel
, 0);
3111 mouse_marking
= selection (panel
)->f
.marked
;
3115 mouse_set_mark (WPanel
* panel
)
3117 if (mouse_marking
&& !(selection (panel
)->f
.marked
))
3118 do_mark_file (panel
, 0);
3119 else if (!mouse_marking
&& (selection (panel
)->f
.marked
))
3120 do_mark_file (panel
, 0);
3124 mark_if_marking (WPanel
* panel
, Gpm_Event
* event
)
3126 if (event
->buttons
& GPM_B_RIGHT
)
3128 if (event
->type
& GPM_DOWN
)
3129 mouse_toggle_mark (panel
);
3131 mouse_set_mark (panel
);
3137 /* Determine which column was clicked, and sort the panel on
3138 * that column, or reverse sort on that column if already
3139 * sorted on that column.
3142 mouse_sort_col (Gpm_Event
* event
, WPanel
* panel
)
3145 const char *lc_sort_name
= NULL
;
3146 panel_field_t
*col_sort_format
= NULL
;
3150 for (i
= 0, format
= panel
->format
; format
!= NULL
; format
= format
->next
)
3152 i
+= format
->field_len
;
3153 if (event
->x
< i
+ 1)
3156 lc_sort_name
= format
->title
;
3161 if (lc_sort_name
== NULL
)
3164 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
3166 title
= panel_get_title_without_hotkey (panel_fields
[i
].title_hotkey
);
3167 if (!strcmp (lc_sort_name
, title
) && panel_fields
[i
].sort_routine
)
3169 col_sort_format
= &panel_fields
[i
];
3176 if (!col_sort_format
)
3179 if (panel
->current_sort_field
== col_sort_format
)
3181 /* reverse the sort if clicked column is already the sorted column */
3182 panel
->reverse
= !panel
->reverse
;
3186 /* new sort is forced to be ascending */
3189 panel_set_sort_order (panel
, col_sort_format
);
3194 * Mouse callback of the panel minus repainting.
3195 * If the event is redirected to the menu, *redir is set to 1.
3198 do_panel_event (Gpm_Event
* event
, WPanel
* panel
, int *redir
)
3200 const int lines
= llines (panel
);
3201 const gboolean is_active
= dlg_widget_active (panel
);
3202 const gboolean mouse_down
= (event
->type
& GPM_DOWN
) != 0;
3204 /* "." button show/hide hidden files */
3205 if (event
->type
& GPM_DOWN
&& event
->x
== panel
->widget
.cols
- 5 && event
->y
== 1)
3207 toggle_show_hidden ();
3213 if (mouse_down
&& event
->y
== 1 && event
->x
== 2)
3215 directory_history_prev (panel
);
3220 if (mouse_down
&& event
->y
== 1 && event
->x
== panel
->widget
.cols
- 1)
3222 directory_history_next (panel
);
3227 if (mouse_down
&& event
->y
== 1 && event
->x
>= panel
->widget
.cols
- 4
3228 && event
->x
<= panel
->widget
.cols
- 2)
3230 directory_history_list (panel
);
3234 /* sort on clicked column */
3235 if (event
->type
& GPM_DOWN
&& event
->y
== 2)
3237 mouse_sort_col (event
, panel
);
3241 /* rest of the upper frame, the menu is invisible - call menu */
3242 if (mouse_down
&& event
->y
== 1 && !menubar_visible
)
3245 event
->x
+= panel
->widget
.x
;
3246 return the_menubar
->widget
.mouse (event
, the_menubar
);
3249 /* Mouse wheel events */
3250 if (mouse_down
&& (event
->buttons
& GPM_B_UP
))
3254 if (panel
->top_file
> 0)
3256 else /* We are in first page */
3262 if (mouse_down
&& (event
->buttons
& GPM_B_DOWN
))
3266 if (panel
->top_file
+ ITEMS (panel
) < panel
->count
)
3268 else /* We are in last page */
3275 if ((event
->type
& (GPM_DOWN
| GPM_DRAG
)))
3284 mark_if_marking (panel
, event
);
3285 if (mouse_move_pages
)
3292 if (!((panel
->top_file
+ event
->y
<= panel
->count
) && event
->y
<= lines
))
3294 mark_if_marking (panel
, event
);
3295 if (mouse_move_pages
)
3302 my_index
= panel
->top_file
+ event
->y
- 1;
3303 if (panel
->split
&& (event
->x
> ((panel
->widget
.cols
- 2) / 2)))
3304 my_index
+= llines (panel
);
3306 if (my_index
>= panel
->count
)
3307 my_index
= panel
->count
- 1;
3309 if (my_index
!= panel
->selected
)
3311 unselect_item (panel
);
3312 panel
->selected
= my_index
;
3313 select_item (panel
);
3316 /* This one is new */
3317 mark_if_marking (panel
, event
);
3319 else if ((event
->type
& (GPM_UP
| GPM_DOUBLE
)) == (GPM_UP
| GPM_DOUBLE
))
3321 if (event
->y
> 0 && event
->y
<= lines
)
3327 /* Mouse callback of the panel */
3329 panel_event (Gpm_Event
* event
, void *data
)
3331 WPanel
*panel
= data
;
3333 int redir
= MOU_NORMAL
;
3335 ret
= do_panel_event (event
, panel
, &redir
);
3337 paint_panel (panel
);
3343 panel_re_sort (WPanel
* panel
)
3351 filename
= g_strdup (selection (panel
)->fname
);
3352 unselect_item (panel
);
3353 do_sort (&panel
->dir
, panel
->current_sort_field
->sort_routine
, panel
->count
- 1, panel
->reverse
,
3354 panel
->case_sensitive
, panel
->exec_first
);
3355 panel
->selected
= -1;
3356 for (i
= panel
->count
; i
; i
--)
3358 if (!strcmp (panel
->dir
.list
[i
- 1].fname
, filename
))
3360 panel
->selected
= i
- 1;
3365 panel
->top_file
= panel
->selected
- ITEMS (panel
) / 2;
3366 select_item (panel
);
3371 panel_set_sort_order (WPanel
* panel
, const panel_field_t
* sort_order
)
3373 if (sort_order
== 0)
3376 panel
->current_sort_field
= sort_order
;
3378 /* The directory is already sorted, we have to load the unsorted stuff */
3379 if (sort_order
->sort_routine
== (sortfn
*) unsorted
)
3383 current_file
= g_strdup (panel
->dir
.list
[panel
->selected
].fname
);
3384 panel_reload (panel
);
3385 try_to_select (panel
, current_file
);
3386 g_free (current_file
);
3388 panel_re_sort (panel
);
3392 set_panel_encoding (WPanel
* panel
)
3394 const char *encoding
= NULL
;
3400 r
= select_charset (-1, -1, default_source_codepage
, FALSE
);
3402 if (r
== SELECT_CHARSET_CANCEL
)
3403 return; /* Cancel */
3405 if (r
== SELECT_CHARSET_NO_TRANSLATE
)
3407 /* No translation */
3408 errmsg
= init_translation_table (display_codepage
, display_codepage
);
3409 cd_path
= remove_encoding_from_path (panel
->cwd
);
3410 do_panel_cd (panel
, cd_path
, 0);
3415 source_codepage
= r
;
3417 errmsg
= init_translation_table (source_codepage
, display_codepage
);
3420 message (D_ERROR
, MSG_ERROR
, "%s", errmsg
);
3424 encoding
= get_codepage_id (source_codepage
);
3426 if (encoding
!= NULL
)
3428 cd_path
= add_encoding_to_path (panel
->cwd
, encoding
);
3429 if (!do_panel_cd (panel
, cd_path
, 0))
3430 message (D_ERROR
, MSG_ERROR
, _(" Cannot chdir to %s "), cd_path
);
3436 reload_panelized (WPanel
* panel
)
3439 dir_list
*list
= &panel
->dir
;
3441 if (panel
!= current_panel
)
3442 mc_chdir (panel
->cwd
);
3444 for (i
= 0, j
= 0; i
< panel
->count
; i
++)
3446 if (list
->list
[i
].f
.marked
)
3448 /* Unmark the file in advance. In case the following mc_lstat
3449 * fails we are done, else we have to mark the file again
3450 * (Note: do_file_mark depends on a valid "list->list [i].buf").
3451 * IMO that's the best way to update the panel's summary status
3454 do_file_mark (panel
, i
, 0);
3456 if (mc_lstat (list
->list
[i
].fname
, &list
->list
[i
].st
))
3458 g_free (list
->list
[i
].fname
);
3461 if (list
->list
[i
].f
.marked
)
3462 do_file_mark (panel
, i
, 1);
3464 list
->list
[j
] = list
->list
[i
];
3468 panel
->count
= set_zero_dir (list
) ? 1 : 0;
3472 if (panel
!= current_panel
)
3473 mc_chdir (current_panel
->cwd
);
3477 update_one_panel_widget (WPanel
* panel
, int force_update
, const char *current_file
)
3480 char *my_current_file
= NULL
;
3482 if (force_update
& UP_RELOAD
)
3484 panel
->is_panelized
= 0;
3485 mc_setctl (panel
->cwd
, VFS_SETCTL_FLUSH
, 0);
3486 memset (&(panel
->dir_stat
), 0, sizeof (panel
->dir_stat
));
3489 /* If current_file == -1 (an invalid pointer) then preserve selection */
3490 if (current_file
== UP_KEEPSEL
)
3493 my_current_file
= g_strdup (panel
->dir
.list
[panel
->selected
].fname
);
3494 current_file
= my_current_file
;
3499 if (panel
->is_panelized
)
3500 reload_panelized (panel
);
3502 panel_reload (panel
);
3504 try_to_select (panel
, current_file
);
3508 g_free (my_current_file
);
3512 update_one_panel (int which
, int force_update
, const char *current_file
)
3514 if (get_display_type (which
) == view_listing
)
3517 panel
= (WPanel
*) get_panel_widget (which
);
3518 update_one_panel_widget (panel
, force_update
, current_file
);
3522 /* This routine reloads the directory in both panels. It tries to
3523 * select current_file in current_panel and other_file in other_panel.
3524 * If current_file == -1 then it automatically sets current_file and
3525 * other_file to the currently selected files in the panels.
3527 * if force_update has the UP_ONLY_CURRENT bit toggled on, then it
3528 * will not reload the other panel.
3531 update_panels (int force_update
, const char *current_file
)
3533 int reload_other
= !(force_update
& UP_ONLY_CURRENT
);
3536 update_one_panel (get_current_index (), force_update
, current_file
);
3538 update_one_panel (get_other_index (), force_update
, UP_KEEPSEL
);
3540 if (get_current_type () == view_listing
)
3541 panel
= (WPanel
*) get_panel_widget (get_current_index ());
3543 panel
= (WPanel
*) get_panel_widget (get_other_index ());
3545 mc_chdir (panel
->cwd
);
3549 panel_get_num_of_sortable_fields (void)
3551 gsize ret
= 0, lc_index
;
3553 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3554 if (panel_fields
[lc_index
].is_user_choice
)
3561 panel_get_sortable_fields (gsize
* array_size
)
3566 lc_index
= panel_get_num_of_sortable_fields ();
3568 ret
= g_try_new0 (char *, lc_index
+ 1);
3572 if (array_size
!= NULL
)
3573 *array_size
= lc_index
;
3577 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
3578 if (panel_fields
[i
].is_user_choice
)
3579 ret
[lc_index
++] = g_strdup (_(panel_fields
[i
].title_hotkey
));
3580 return (const char **) ret
;
3583 const panel_field_t
*
3584 panel_get_field_by_id (const char *name
)
3587 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3588 if (panel_fields
[lc_index
].id
!= NULL
&& strcmp (name
, panel_fields
[lc_index
].id
) == 0)
3589 return &panel_fields
[lc_index
];
3593 const panel_field_t
*
3594 panel_get_field_by_title_hotkey (const char *name
)
3597 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3598 if (panel_fields
[lc_index
].title_hotkey
!= NULL
&&
3599 strcmp (name
, _(panel_fields
[lc_index
].title_hotkey
)) == 0)
3600 return &panel_fields
[lc_index
];
3604 const panel_field_t
*
3605 panel_get_field_by_title (const char *name
)
3608 gchar
*title
= NULL
;
3610 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3612 title
= panel_get_title_without_hotkey (panel_fields
[lc_index
].title_hotkey
);
3613 if (panel_fields
[lc_index
].title_hotkey
!= NULL
&& strcmp (name
, title
) == 0)
3616 return &panel_fields
[lc_index
];
3624 panel_get_num_of_user_possible_fields (void)
3626 gsize ret
= 0, lc_index
;
3628 for (lc_index
= 0; panel_fields
[lc_index
].id
!= NULL
; lc_index
++)
3629 if (panel_fields
[lc_index
].use_in_user_format
)
3635 panel_get_user_possible_fields (gsize
* array_size
)
3640 lc_index
= panel_get_num_of_user_possible_fields ();
3642 ret
= g_try_new0 (char *, lc_index
+ 1);
3646 if (array_size
!= NULL
)
3647 *array_size
= lc_index
;
3651 for (i
= 0; panel_fields
[i
].id
!= NULL
; i
++)
3652 if (panel_fields
[i
].use_in_user_format
)
3653 ret
[lc_index
++] = g_strdup (_(panel_fields
[i
].title_hotkey
));
3654 return (const char **) ret
;
3660 panel_sort_up_sign
= mc_skin_get ("widget-common", "sort-sign-up", "'");
3661 panel_sort_down_sign
= mc_skin_get ("widget-common", "sort-sign-down", ",");
3663 panel_hiddenfiles_sign_show
= mc_skin_get ("widget-panel", "hiddenfiles-sign-show", ".");
3664 panel_hiddenfiles_sign_hide
= mc_skin_get ("widget-panel", "hiddenfiles-sign-hide", ".");
3665 panel_history_prev_item_sign
= mc_skin_get ("widget-panel", "history-prev-item-sign", "<");
3666 panel_history_next_item_sign
= mc_skin_get ("widget-panel", "history-next-item-sign", ">");
3667 panel_history_show_list_sign
= mc_skin_get ("widget-panel", "history-show-list-sign", "^");
3674 g_free (panel_sort_up_sign
);
3675 g_free (panel_sort_down_sign
);
3677 g_free (panel_hiddenfiles_sign_show
);
3678 g_free (panel_hiddenfiles_sign_hide
);
3679 g_free (panel_history_prev_item_sign
);
3680 g_free (panel_history_next_item_sign
);
3681 g_free (panel_history_show_list_sign
);