1 /* Routines invoked by a function key
2 They normally operate on the current panel.
4 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
22 * \brief Source: routines invoked by a function key
24 * They normally operate on the current panel.
33 #include <sys/types.h>
36 # include <sys/mman.h>
48 #include "lib/global.h"
50 #include "lib/tty/tty.h" /* LINES, tty_touch_screen() */
51 #include "lib/tty/key.h" /* ALT() macro */
52 #include "lib/tty/win.h" /* do_enter_ca_mode() */
53 #include "lib/mcconfig.h"
54 #include "lib/search.h"
55 #include "src/viewer/mcviewer.h"
56 #include "lib/filehighlight.h" /* MC_FHL_INI_FILE */
57 #include "lib/vfs/mc-vfs/vfs.h"
58 #include "lib/fileloc.h"
59 #include "lib/strutil.h"
61 #include "cmd.h" /* Our definitions */
62 #include "fileopctx.h"
63 #include "file.h" /* file operation routines */
64 #include "find.h" /* do_find() */
65 #include "hotlist.h" /* hotlist_cmd() */
66 #include "tree.h" /* tree_chdir() */
67 #include "subshell.h" /* use_subshell */
68 #include "consaver/cons.saver.h" /* console_flag */
69 #include "dialog.h" /* Widget */
70 #include "wtools.h" /* message() */
71 #include "main.h" /* change_panel() */
72 #include "panel.h" /* current_panel */
73 #include "help.h" /* interactive_display() */
74 #include "user.h" /* MC_GLOBAL_MENU */
75 #include "command.h" /* cmdline */
76 #include "layout.h" /* get_current_type() */
77 #include "ext.h" /* regex_command() */
78 #include "boxes.h" /* cd_dialog() */
80 #include "execute.h" /* toggle_panels() */
83 #include "cmddef.h" /* CK_InputHistoryShow */
89 #ifdef USE_INTERNAL_EDIT
90 # include "src/editor/edit.h"
93 /* If set and you don't have subshell support,then C-o will give you a shell */
94 int output_starts_shell
= 0;
96 /* If set, use the builtin editor */
97 int use_internal_edit
= 1;
99 /* Automatically fills name with current selected item name on mkdir */
100 int auto_fill_mkdir_name
= 1;
102 /* if set, only selection of files is inverted */
103 int reverse_files_only
= 1;
105 /* selection flags */
107 SELECT_FILES_ONLY
= 1 << 0,
108 SELECT_MATCH_CASE
= 1 << 1,
109 SELECT_SHELL_PATTERNS
= 1 << 2
112 int select_flags
= SELECT_MATCH_CASE
| SELECT_SHELL_PATTERNS
;
115 view_file_at_line (const char *filename
, int plain_view
, int internal
,
118 static const char *viewer
= NULL
;
123 int changed_hex_mode
= 0;
124 int changed_nroff_flag
= 0;
125 int changed_magic_flag
= 0;
127 mcview_altered_hex_mode
= 0;
128 mcview_altered_nroff_flag
= 0;
129 mcview_altered_magic_flag
= 0;
130 if (mcview_default_hex_mode
)
131 changed_hex_mode
= 1;
132 if (mcview_default_nroff_flag
)
133 changed_nroff_flag
= 1;
134 if (mcview_default_magic_flag
)
135 changed_magic_flag
= 1;
136 mcview_default_hex_mode
= 0;
137 mcview_default_nroff_flag
= 0;
138 mcview_default_magic_flag
= 0;
139 mcview_viewer (NULL
, filename
, &move_dir
, start_line
);
140 if (changed_hex_mode
&& !mcview_altered_hex_mode
)
141 mcview_default_hex_mode
= 1;
142 if (changed_nroff_flag
&& !mcview_altered_nroff_flag
)
143 mcview_default_nroff_flag
= 1;
144 if (changed_magic_flag
&& !mcview_altered_magic_flag
)
145 mcview_default_magic_flag
= 1;
150 char view_entry
[BUF_TINY
];
153 g_snprintf (view_entry
, sizeof (view_entry
), "View:%d",
156 strcpy (view_entry
, "View");
158 if (regex_command (filename
, view_entry
, &move_dir
) == 0) {
159 mcview_viewer (NULL
, filename
, &move_dir
, start_line
);
164 viewer
= getenv ("VIEWER");
166 viewer
= getenv ("PAGER");
170 execute_with_vfs_arg (viewer
, filename
);
175 /* view_file (filename, plain_view, internal)
178 * filename: The file name to view
179 * plain_view: If set does not do any fancy pre-processing (no filtering) and
180 * always invokes the internal viewer.
181 * internal: If set uses the internal viewer, otherwise an external viewer.
184 view_file (const char *filename
, int plain_view
, int internal
)
186 return view_file_at_line (filename
, plain_view
, internal
, 0);
189 /* scan_for_file (panel, idx, direction)
192 * panel: pointer to the panel on which we operate
193 * idx: starting file.
194 * direction: 1, or -1
196 static int scan_for_file (WPanel
*panel
, int idx
, int direction
)
198 int i
= idx
+ direction
;
202 i
= panel
->count
- 1;
203 if (i
== panel
->count
)
205 if (!S_ISDIR (panel
->dir
.list
[i
].st
.st_mode
))
213 * Run viewer (internal or external) on the currently selected file.
214 * If normal is 1, force internal viewer and raw mode (used for F13).
217 do_view_cmd (int normal
)
219 /* Directories are viewed by changing to them */
220 if (S_ISDIR (selection (current_panel
)->st
.st_mode
)
221 || link_isdir (selection (current_panel
))) {
222 if (confirm_view_dir
&& (current_panel
->marked
|| current_panel
->dirs_marked
)) {
224 (_(" Confirmation "), _("Files tagged, want to cd?"), D_NORMAL
, 2,
225 _("&Yes"), _("&No")) != 0) {
229 if (!do_cd (selection (current_panel
)->fname
, cd_exact
))
230 message (D_ERROR
, MSG_ERROR
, _("Cannot change directory"));
235 file_idx
= current_panel
->selected
;
237 filename
= current_panel
->dir
.list
[file_idx
].fname
;
239 dir
= view_file (filename
, normal
, use_internal_view
);
242 file_idx
= scan_for_file (current_panel
, file_idx
, dir
);
249 /* Run user's preferred viewer on the currently selected file */
256 /* Ask for file and run user's preferred viewer on it */
263 input_expand_dialog (_(" View file "), _(" Filename:"),
264 MC_HISTORY_FM_VIEW_FILE
, selection (current_panel
)->fname
);
268 view_file (filename
, 0, use_internal_view
);
272 /* Run plain internal viewer on the currently selected file */
274 view_simple_cmd (void)
280 filtered_view_cmd (void)
285 input_dialog (_(" Filtered view "),
286 _(" Filter command and arguments:"),
287 MC_HISTORY_FM_FILTERED_VIEW
,
288 selection (current_panel
)->fname
);
292 mcview_viewer (command
, "", NULL
, 0);
298 do_edit_at_line (const char *what
, int start_line
)
300 static const char *editor
= NULL
;
302 #ifdef USE_INTERNAL_EDIT
303 if (use_internal_edit
)
304 edit_file (what
, start_line
);
308 #endif /* USE_INTERNAL_EDIT */
310 if (editor
== NULL
) {
311 editor
= getenv ("EDITOR");
313 editor
= get_default_editor ();
315 execute_with_vfs_arg (editor
, what
);
317 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
322 do_edit (const char *what
)
324 do_edit_at_line (what
, 0);
330 if (regex_command (selection (current_panel
)->fname
, "Edit", 0) == 0)
331 do_edit (selection (current_panel
)->fname
);
338 source_codepage
= default_source_codepage
;
343 /* Invoked by F5. Copy, default to the other panel. */
348 if (panel_operate (current_panel
, OP_COPY
, FALSE
)) {
349 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
354 /* Invoked by F6. Move/rename, default to the other panel, ignore marks. */
355 void rename_cmd (void)
358 if (panel_operate (current_panel
, OP_MOVE
, FALSE
)) {
359 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
364 /* Invoked by F15. Copy, default to the same panel, ignore marks. */
365 void copy_cmd_local (void)
368 if (panel_operate (current_panel
, OP_COPY
, TRUE
)) {
369 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
374 /* Invoked by F16. Move/rename, default to the same panel. */
375 void rename_cmd_local (void)
378 if (panel_operate (current_panel
, OP_MOVE
, TRUE
)) {
379 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
388 const char *name
= "";
390 /* If 'on' then automatically fills name with current selected item name */
391 if (auto_fill_mkdir_name
)
392 name
= selection (current_panel
)->fname
;
395 input_expand_dialog (_("Create a new Directory"),
396 _(" Enter directory name:"),
403 if (dir
[0] == '/' || dir
[0] == '~')
404 absdir
= g_strdup (dir
);
406 absdir
= concat_dir_and_file (current_panel
->cwd
, dir
);
409 if (my_mkdir (absdir
, 0777) == 0) {
410 update_panels (UP_OPTIMIZE
, dir
);
412 select_item (current_panel
);
414 message (D_ERROR
, MSG_ERROR
, " %s ", unix_error_string (errno
));
421 void delete_cmd (void)
425 if (panel_operate (current_panel
, OP_DELETE
, FALSE
)) {
426 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
431 /* Invoked by F18. Remove selected file, regardless of marked files. */
432 void delete_cmd_local (void)
436 if (panel_operate (current_panel
, OP_DELETE
, TRUE
)) {
437 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
448 set_panel_filter_to (WPanel
*p
, char *allocated_filter_string
)
453 if (!(allocated_filter_string
[0] == '*' && allocated_filter_string
[1] == 0))
454 p
->filter
= allocated_filter_string
;
456 g_free (allocated_filter_string
);
460 /* Set a given panel filter expression */
462 set_panel_filter (WPanel
*p
)
467 x
= p
->filter
? p
->filter
: easy_patterns
? "*" : ".";
469 reg_exp
= input_dialog_help (_(" Filter "),
470 _(" Set expression for filtering filenames"),
471 "[Filter...]", MC_HISTORY_FM_PANEL_FILTER
, x
);
474 set_panel_filter_to (p
, reg_exp
);
477 /* Invoked from the left/right menus */
478 void filter_cmd (void)
482 if (!SELECTED_IS_PANEL
)
486 set_panel_filter (p
);
489 void reread_cmd (void)
493 if (get_current_type () == view_listing
&&
494 get_other_type () == view_listing
)
495 flag
= strcmp (current_panel
->cwd
, other_panel
->cwd
) ? UP_ONLY_CURRENT
: 0;
497 flag
= UP_ONLY_CURRENT
;
499 update_panels (UP_RELOAD
|flag
, UP_KEEPSEL
);
504 reverse_selection_cmd (void)
509 for (i
= 0; i
< current_panel
->count
; i
++) {
510 file
= ¤t_panel
->dir
.list
[i
];
511 if ((reverse_files_only
== 0) || !S_ISDIR (file
->st
.st_mode
))
512 do_file_mark (current_panel
, i
, !file
->f
.marked
);
517 select_unselect_cmd (const char *title
, const char *history_name
, gboolean do_select
)
523 int files_only
= (select_flags
& SELECT_FILES_ONLY
) != 0;
524 int case_sens
= (select_flags
& SELECT_MATCH_CASE
) != 0;
525 int shell_patterns
= (select_flags
& SELECT_SHELL_PATTERNS
) != 0;
531 QuickWidget quick_widgets
[] =
533 QUICK_CHECKBOX (3, DX
, DY
- 3, DY
, N_("&Using shell patterns"), &shell_patterns
),
534 QUICK_CHECKBOX (DX
/2 + 1, DX
, DY
- 4, DY
, N_("&Case sensitive"), &case_sens
),
535 QUICK_CHECKBOX (3, DX
, DY
- 4, DY
, N_("&Files only"), &files_only
),
536 QUICK_INPUT (3, DX
, DY
- 5, DY
, INPUT_LAST_TEXT
, DX
- 6, 0, history_name
, ®_exp
),
540 QuickDialog quick_dlg
=
542 DX
, DY
, -1, -1, title
,
543 "[Select/Unselect Files]", quick_widgets
, FALSE
546 if (quick_dialog (&quick_dlg
) == B_CANCEL
)
555 search
= mc_search_new (reg_exp
, -1);
556 search
->search_type
= (shell_patterns
!= 0) ? MC_SEARCH_T_GLOB
: MC_SEARCH_T_REGEX
;
557 search
->is_entire_line
= TRUE
;
558 search
->is_case_sentitive
= case_sens
!= 0;
560 for (i
= 0; i
< current_panel
->count
; i
++) {
561 if (strcmp (current_panel
->dir
.list
[i
].fname
, "..") == 0)
563 if (S_ISDIR (current_panel
->dir
.list
[i
].st
.st_mode
) && files_only
!= 0)
566 if (mc_search_run (search
, current_panel
->dir
.list
[i
].fname
,
567 0, current_panel
->dir
.list
[i
].fnamelen
, NULL
))
568 do_file_mark (current_panel
, i
, do_select
);
571 mc_search_free (search
);
577 select_flags
|= SELECT_MATCH_CASE
;
579 select_flags
|= SELECT_FILES_ONLY
;
580 if (shell_patterns
!= 0)
581 select_flags
|= SELECT_SHELL_PATTERNS
;
584 void select_cmd (void)
586 select_unselect_cmd (_(" Select "), ":select_cmd: Select ", TRUE
);
589 void unselect_cmd (void)
591 select_unselect_cmd (_(" Unselect "), ":unselect_cmd: Unselect ", FALSE
);
601 if (geteuid () == 0){
602 dir
= query_dialog (_("Extension file edit"),
603 _(" Which extension file you want to edit? "), D_NORMAL
, 2,
604 _("&User"), _("&System Wide"));
606 extdir
= concat_dir_and_file (mc_home
, MC_LIB_EXT
);
609 buffer
= g_build_filename (home_dir
, MC_USERCONF_DIR
, MC_FILEBIND_FILE
, NULL
);
610 check_for_default (extdir
, buffer
);
613 } else if (dir
== 1) {
614 if (!exist_file(extdir
)) {
616 extdir
= concat_dir_and_file (mc_home_alt
, MC_LIB_EXT
);
621 flush_extension_file ();
624 /* edit file menu for mc */
626 edit_mc_menu_cmd (void)
634 _(" Which menu file do you want to edit? "),
635 D_NORMAL
, geteuid() ? 2 : 3,
636 _("&Local"), _("&User"), _("&System Wide")
639 menufile
= concat_dir_and_file (mc_home
, MC_GLOBAL_MENU
);
641 if (!exist_file(menufile
)) {
643 menufile
= concat_dir_and_file (mc_home_alt
, MC_GLOBAL_MENU
);
648 buffer
= g_strdup (MC_LOCAL_MENU
);
649 check_for_default (menufile
, buffer
);
650 chmod (buffer
, 0600);
654 buffer
= g_build_filename (home_dir
, MC_USERCONF_DIR
, MC_USERMENU_FILE
, NULL
);
655 check_for_default (menufile
, buffer
);
659 buffer
= concat_dir_and_file (mc_home
, MC_GLOBAL_MENU
);
660 if (!exist_file(buffer
)) {
662 buffer
= concat_dir_and_file (mc_home_alt
, MC_GLOBAL_MENU
);
677 void edit_fhl_cmd (void)
680 char *fhlfile
= NULL
;
685 if (geteuid () == 0){
686 dir
= query_dialog (_("Highlighting groups file edit"),
687 _(" Which highlighting file you want to edit? "), D_NORMAL
, 2,
688 _("&User"), _("&System Wide"));
690 fhlfile
= concat_dir_and_file (mc_home
, MC_FHL_INI_FILE
);
693 buffer
= g_build_filename (home_dir
, MC_USERCONF_DIR
, MC_FHL_INI_FILE
, NULL
);
694 check_for_default (fhlfile
, buffer
);
697 } else if (dir
== 1) {
698 if (!exist_file(fhlfile
)) {
700 fhlfile
= concat_dir_and_file (mc_home
, MC_FHL_INI_FILE
);
706 /* refresh highlighting rules */
707 mc_fhl_free (&mc_filehighlight
);
708 mc_filehighlight
= mc_fhl_new (TRUE
);
711 void quick_chdir_cmd (void)
715 target
= hotlist_cmd (LIST_HOTLIST
);
719 if (get_current_type () == view_tree
)
720 tree_chdir (the_tree
, target
);
722 char *cmd
= g_strconcat ("cd ", target
, (char *) NULL
);
730 void reselect_vfs (void)
734 target
= hotlist_cmd (LIST_VFSLIST
);
738 if (!do_cd (target
, cd_exact
))
739 message (D_ERROR
, MSG_ERROR
, _("Cannot change directory") );
742 #endif /* ENABLE_VFS */
744 static int compare_files (char *name1
, char *name2
, off_t size
)
747 int result
= -1; /* Different by default */
752 file1
= open (name1
, O_RDONLY
);
754 file2
= open (name2
, O_RDONLY
);
759 data1
= mmap (0, size
, PROT_READ
, MAP_FILE
| MAP_PRIVATE
, file1
, 0);
760 if (data1
!= (char*) -1){
761 data2
= mmap (0, size
, PROT_READ
, MAP_FILE
| MAP_PRIVATE
, file2
, 0);
762 if (data2
!= (char*) -1){
764 result
= memcmp (data1
, data2
, size
);
765 munmap (data2
, size
);
767 munmap (data1
, size
);
770 /* Don't have mmap() :( Even more ugly :) */
771 char buf1
[BUFSIZ
], buf2
[BUFSIZ
];
776 while((n1
= read(file1
,buf1
,BUFSIZ
)) == -1 && errno
== EINTR
);
777 while((n2
= read(file2
,buf2
,BUFSIZ
)) == -1 && errno
== EINTR
);
778 } while (n1
== n2
&& n1
== BUFSIZ
&& !memcmp(buf1
,buf2
,BUFSIZ
));
779 result
= (n1
!= n2
) || memcmp(buf1
,buf2
,n1
);
780 #endif /* !HAVE_MMAP */
789 compare_quick
, compare_size_only
, compare_thourough
793 compare_dir (WPanel
*panel
, WPanel
*other
, enum CompareMode mode
)
796 char *src_name
, *dst_name
;
798 /* No marks by default */
801 panel
->dirs_marked
= 0;
803 /* Handle all files in the panel */
804 for (i
= 0; i
< panel
->count
; i
++){
805 file_entry
*source
= &panel
->dir
.list
[i
];
807 /* Default: unmarked */
808 file_mark (panel
, i
, 0);
810 /* Skip directories */
811 if (S_ISDIR (source
->st
.st_mode
))
814 /* Search the corresponding entry from the other panel */
815 for (j
= 0; j
< other
->count
; j
++){
816 if (strcmp (source
->fname
,
817 other
->dir
.list
[j
].fname
) == 0)
820 if (j
>= other
->count
)
821 /* Not found -> mark */
822 do_file_mark (panel
, i
, 1);
825 file_entry
*target
= &other
->dir
.list
[j
];
827 if (mode
!= compare_size_only
){
828 /* Older version is not marked */
829 if (source
->st
.st_mtime
< target
->st
.st_mtime
)
833 /* Newer version with different size is marked */
834 if (source
->st
.st_size
!= target
->st
.st_size
){
835 do_file_mark (panel
, i
, 1);
839 if (mode
== compare_size_only
)
842 if (mode
== compare_quick
){
843 /* Thorough compare off, compare only time stamps */
844 /* Mark newer version, don't mark version with the same date */
845 if (source
->st
.st_mtime
> target
->st
.st_mtime
){
846 do_file_mark (panel
, i
, 1);
851 /* Thorough compare on, do byte-by-byte comparison */
852 src_name
= concat_dir_and_file (panel
->cwd
, source
->fname
);
853 dst_name
= concat_dir_and_file (other
->cwd
, target
->fname
);
854 if (compare_files (src_name
, dst_name
, source
->st
.st_size
))
855 do_file_mark (panel
, i
, 1);
863 compare_dirs_cmd (void)
866 enum CompareMode thorough_flag
;
869 query_dialog (_(" Compare directories "),
870 _(" Select compare method: "), D_NORMAL
, 4,
871 _("&Quick"), _("&Size only"), _("&Thorough"), _("&Cancel"));
873 if (choice
< 0 || choice
> 2)
876 thorough_flag
= choice
;
878 if (get_current_type () == view_listing
879 && get_other_type () == view_listing
) {
880 compare_dir (current_panel
, other_panel
, thorough_flag
);
881 compare_dir (other_panel
, current_panel
, thorough_flag
);
883 message (D_ERROR
, MSG_ERROR
,
884 _(" Both panels should be in the "
885 "listing mode to use this command "));
892 /* show the history of command line widget */
893 send_message (&cmdline
->widget
, WIDGET_COMMAND
, CK_InputHistoryShow
);
904 view_other_cmd (void)
906 static int message_flag
= TRUE
;
908 if (!xterm_flag
&& !console_flag
&& !use_subshell
&& !output_starts_shell
) {
910 message (D_ERROR
, MSG_ERROR
,
911 _(" Not an xterm or Linux console; \n"
912 " the panels cannot be toggled. "));
913 message_flag
= FALSE
;
920 do_link (int symbolic_link
, const char *fname
)
922 char *dest
= NULL
, *src
= NULL
;
924 if (!symbolic_link
) {
925 src
= g_strdup_printf (_("Link %s to:"), str_trunc (fname
, 46));
926 dest
= input_expand_dialog (_(" Link "), src
, MC_HISTORY_FM_LINK
, "");
930 if (-1 == mc_link (fname
, dest
))
931 message (D_ERROR
, MSG_ERROR
, _(" link: %s "),
932 unix_error_string (errno
));
937 /* suggest the full path for symlink */
938 s
= concat_dir_and_file (current_panel
->cwd
, fname
);
940 if (get_other_type () == view_listing
) {
941 d
= concat_dir_and_file (other_panel
->cwd
, fname
);
943 d
= g_strdup (fname
);
946 symlink_dialog (s
, d
, &dest
, &src
);
950 if (!dest
|| !*dest
|| !src
|| !*src
)
953 if (-1 == mc_symlink (dest
, src
))
954 message (D_ERROR
, MSG_ERROR
, _(" symlink: %s "),
955 unix_error_string (errno
));
957 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
967 do_link (0, selection (current_panel
)->fname
);
970 void symlink_cmd (void)
972 char *filename
= NULL
;
973 filename
= selection (current_panel
)->fname
;
976 do_link (1, filename
);
980 void edit_symlink_cmd (void)
982 if (S_ISLNK (selection (current_panel
)->st
.st_mode
)) {
983 char buffer
[MC_MAXPATHLEN
];
988 p
= selection (current_panel
)->fname
;
990 q
= g_strdup_printf (_(" Symlink `%s\' points to: "), str_trunc (p
, 32));
992 i
= readlink (p
, buffer
, MC_MAXPATHLEN
- 1);
995 dest
= input_expand_dialog (_(" Edit symlink "), q
, MC_HISTORY_FM_EDIT_LINK
, buffer
);
997 if (*dest
&& strcmp (buffer
, dest
)) {
999 if (-1 == mc_unlink (p
)){
1000 message (D_ERROR
, MSG_ERROR
, _(" edit symlink, unable to remove %s: %s "),
1001 p
, unix_error_string (errno
));
1003 if (-1 == mc_symlink (dest
, p
))
1004 message (D_ERROR
, MSG_ERROR
, _(" edit symlink: %s "),
1005 unix_error_string (errno
));
1007 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
1015 message (D_ERROR
, MSG_ERROR
, _("`%s' is not a symbolic link"),
1016 selection (current_panel
)->fname
);
1020 void help_cmd (void)
1022 if (current_panel
->searching
)
1023 interactive_display (NULL
, "[Quick search]");
1025 interactive_display (NULL
, "[main]");
1029 user_file_menu_cmd (void)
1031 user_menu_cmd (NULL
);
1035 * Return a random hint. If force is not 0, ignore the timeout.
1038 get_random_hint (int force
)
1040 char *data
, *result
= NULL
, *eol
;
1043 static int last_sec
;
1044 static struct timeval tv
;
1048 /* Do not change hints more often than one minute */
1049 gettimeofday (&tv
, NULL
);
1050 if (!force
&& !(tv
.tv_sec
> last_sec
+ 60))
1051 return g_strdup ("");
1052 last_sec
= tv
.tv_sec
;
1054 data
= load_mc_home_file (mc_home
, mc_home_alt
, MC_HINT
, NULL
);
1058 /* get a random entry */
1060 len
= strlen (data
);
1061 start
= rand () % len
;
1063 for (; start
; start
--) {
1064 if (data
[start
] == '\n') {
1069 eol
= strchr (&data
[start
], '\n');
1073 /* hint files are stored in utf-8 */
1074 /* try convert hint file from utf-8 to terminal encoding */
1075 conv
= str_crt_conv_from ("UTF-8");
1076 if (conv
!= INVALID_CONV
) {
1077 buffer
= g_string_new ("");
1078 if (str_convert (conv
, &data
[start
], buffer
) != ESTR_FAILURE
) {
1079 result
= g_strdup (buffer
->str
);
1081 g_string_free (buffer
, TRUE
);
1082 str_close_conv (conv
);
1089 #if defined(USE_NETCODE) || defined(USE_EXT2FSLIB)
1091 nice_cd (const char *text
, const char *xtext
, const char *help
,
1092 const char *history_name
, const char *prefix
, int to_home
)
1097 if (!SELECTED_IS_PANEL
)
1100 machine
= input_dialog_help (text
, xtext
, help
, history_name
, "");
1104 to_home
= 0; /* FIXME: how to solve going to home nicely? /~/ is
1105 ugly as hell and leads to problems in vfs layer */
1107 if (strncmp (prefix
, machine
, strlen (prefix
)) == 0)
1108 cd_path
= g_strconcat (machine
, to_home
? "/~/" : (char *) NULL
, (char *) NULL
);
1110 cd_path
= g_strconcat (prefix
, machine
, to_home
? "/~/" : (char *) NULL
, (char *) NULL
);
1112 if (do_panel_cd (MENU_PANEL
, cd_path
, 0))
1113 directory_history_add (MENU_PANEL
, (MENU_PANEL
)->cwd
);
1115 message (D_ERROR
, MSG_ERROR
, _(" Cannot chdir to %s "), cd_path
);
1119 #endif /* USE_NETCODE || USE_EXT2FSLIB */
1124 static const char *machine_str
= N_(" Enter machine name (F1 for details): ");
1126 #ifdef ENABLE_VFS_MCFS
1127 void netlink_cmd (void)
1129 nice_cd (_(" Link to a remote machine "), _(machine_str
),
1130 "[Network File System]", ":netlink_cmd: Link to a remote ",
1133 #endif /* ENABLE_VFS_MCFS */
1135 void ftplink_cmd (void)
1137 nice_cd (_(" FTP to machine "), _(machine_str
),
1138 "[FTP File System]", ":ftplink_cmd: FTP to machine ", "/#ftp:", 1);
1141 void fishlink_cmd (void)
1143 nice_cd (_(" Shell link to machine "), _(machine_str
),
1144 "[FIle transfer over SHell filesystem]", ":fishlink_cmd: Shell link to machine ",
1148 #ifdef ENABLE_VFS_SMB
1149 void smblink_cmd (void)
1151 nice_cd (_(" SMB link to machine "), _(machine_str
),
1152 "[SMB File System]", ":smblink_cmd: SMB link to machine ",
1155 #endif /* ENABLE_VFS_SMB */
1156 #endif /* USE_NETCODE */
1158 #ifdef USE_EXT2FSLIB
1159 void undelete_cmd (void)
1161 nice_cd (_(" Undelete files on an ext2 file system "),
1162 _(" Enter device (without /dev/) to undelete\n "
1163 " files on: (F1 for details)"),
1164 "[Undelete File System]", ":undelete_cmd: Undel on ext2 fs ",
1167 #endif /* USE_EXT2FSLIB */
1169 void quick_cd_cmd (void)
1171 char *p
= cd_dialog ();
1174 char *q
= g_strconcat ("cd ", p
, (char *) NULL
);
1184 \brief calculate dirs sizes
1186 calculate dirs sizes and resort panel:
1187 dirs_selected = show size for selected dirs,
1188 otherwise = show size for dir under cursor:
1189 dir under cursor ".." = show size for all dirs,
1190 otherwise = show size for dir under cursor
1193 smart_dirsize_cmd (void)
1195 WPanel
*panel
= current_panel
;
1198 entry
= &(panel
->dir
.list
[panel
->selected
]);
1199 if ( ( S_ISDIR (entry
->st
.st_mode
) && ( strcmp(entry
->fname
, "..") == 0 ) )
1200 || panel
->dirs_marked
)
1203 single_dirsize_cmd ();
1207 single_dirsize_cmd (void)
1209 WPanel
*panel
= current_panel
;
1213 ComputeDirSizeUI
*ui
;
1215 entry
= &(panel
->dir
.list
[panel
->selected
]);
1216 if (S_ISDIR (entry
->st
.st_mode
) && strcmp(entry
->fname
, "..") != 0) {
1217 ui
= compute_dir_size_create_ui ();
1221 if (compute_dir_size (entry
->fname
, ui
, compute_dir_size_update_ui
,
1222 &marked
, &total
) == FILE_CONT
) {
1223 entry
->st
.st_size
= (off_t
) total
;
1224 entry
->f
.dir_size_computed
= 1;
1227 compute_dir_size_destroy_ui (ui
);
1230 if (mark_moves_down
)
1231 send_message (&(panel
->widget
), WIDGET_KEY
, KEY_DOWN
);
1233 recalculate_panel_summary (panel
);
1235 if ( current_panel
->current_sort_field
->sort_routine
== (sortfn
*) sort_size
)
1236 panel_re_sort (panel
);
1244 WPanel
*panel
= current_panel
;
1248 ComputeDirSizeUI
*ui
;
1250 ui
= compute_dir_size_create_ui ();
1252 for (i
= 0; i
< panel
->count
; i
++)
1253 if (S_ISDIR (panel
->dir
.list
[i
].st
.st_mode
)
1254 && ((panel
->dirs_marked
&& panel
->dir
.list
[i
].f
.marked
)
1255 || !panel
->dirs_marked
)
1256 && strcmp (panel
->dir
.list
[i
].fname
, "..") != 0) {
1259 if (compute_dir_size (panel
->dir
.list
[i
].fname
,
1260 ui
, compute_dir_size_update_ui
,
1261 &marked
, &total
) != FILE_CONT
)
1264 panel
->dir
.list
[i
].st
.st_size
= (off_t
) total
;
1265 panel
->dir
.list
[i
].f
.dir_size_computed
= 1;
1268 compute_dir_size_destroy_ui (ui
);
1270 recalculate_panel_summary (panel
);
1272 if ( current_panel
->current_sort_field
->sort_routine
== (sortfn
*) sort_size
)
1273 panel_re_sort (panel
);
1279 save_setup_cmd (void)
1281 if (! save_setup ())
1283 message (D_NORMAL
, _(" Setup "), _(" Setup saved to ~/%s"),
1284 MC_USERCONF_DIR PATH_SEP_STR MC_CONFIG_FILE
);
1288 configure_panel_listing (WPanel
*p
, int list_type
, int use_msformat
, char *user
, char *status
)
1290 p
->user_mini_status
= use_msformat
;
1291 p
->list_type
= list_type
;
1293 if (list_type
== list_user
|| use_msformat
) {
1294 g_free (p
->user_format
);
1295 p
->user_format
= user
;
1297 g_free (p
->user_status_format
[list_type
]);
1298 p
->user_status_format
[list_type
] = status
;
1300 set_panel_formats (p
);
1306 set_panel_formats (p
);
1311 info_cmd_no_menu (void)
1313 if (get_display_type (0) == view_info
)
1314 set_display_type (0, view_listing
);
1315 else if (get_display_type (1) == view_info
)
1316 set_display_type (1, view_listing
);
1318 set_display_type (current_panel
== left_panel
? 1 : 0, view_info
);
1322 quick_cmd_no_menu (void)
1324 if (get_display_type (0) == view_quick
)
1325 set_display_type (0, view_listing
);
1326 else if (get_display_type (1) == view_quick
)
1327 set_display_type (1, view_listing
);
1329 set_display_type (current_panel
== left_panel
? 1 : 0, view_quick
);
1333 switch_to_listing (int panel_index
)
1335 if (get_display_type (panel_index
) != view_listing
)
1336 set_display_type (panel_index
, view_listing
);
1344 char *user
, *status
;
1347 if (get_display_type (MENU_PANEL_IDX
) == view_listing
)
1348 p
= MENU_PANEL_IDX
== 0 ? left_panel
: right_panel
;
1350 list_type
= display_box (p
, &user
, &status
, &use_msformat
, MENU_PANEL_IDX
);
1352 if (list_type
!= -1) {
1353 switch_to_listing (MENU_PANEL_IDX
);
1354 p
= MENU_PANEL_IDX
== 0 ? left_panel
: right_panel
;
1355 configure_panel_listing (p
, list_type
, use_msformat
, user
, status
);
1362 set_display_type (MENU_PANEL_IDX
, view_tree
);
1368 set_display_type (MENU_PANEL_IDX
, view_info
);
1372 quick_view_cmd (void)
1374 if ((WPanel
*) get_panel_widget (MENU_PANEL_IDX
) == current_panel
)
1376 set_display_type (MENU_PANEL_IDX
, view_quick
);
1379 /* Handle the tree internal listing modes switching */
1381 set_basic_panel_listing_to (int panel_index
, int listing_mode
)
1383 WPanel
*p
= (WPanel
*) get_panel_widget (panel_index
);
1386 switch_to_listing (panel_index
);
1387 p
->list_type
= listing_mode
;
1389 ok
= set_panel_formats (p
) == 0;
1398 toggle_listing_cmd (void)
1400 int current
= get_current_index ();
1401 WPanel
*p
= (WPanel
*) get_panel_widget (current
);
1403 set_basic_panel_listing_to (current
, (p
->list_type
+ 1) % LIST_TYPES
);
1409 if (SELECTED_IS_PANEL
)
1410 set_panel_encoding (MENU_PANEL
);