2 Main dialog (file panels) of the Midnight Commander
4 Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011
6 The Free Software Foundation, Inc.
9 Miguel de Icaza, 1994, 1995, 1996, 1997
10 Janne Kukonlehto, 1994, 1995
12 Andrew Borodin <aborodin@vmail.ru>, 2009, 2010
14 This file is part of the Midnight Commander.
16 The Midnight Commander is free software: you can redistribute it
17 and/or modify it under the terms of the GNU General Public License as
18 published by the Free Software Foundation, either version 3 of the License,
19 or (at your option) any later version.
21 The Midnight Commander is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program. If not, see <http://www.gnu.org/licenses/>.
31 * \brief Source: main dialog (file panels) of the Midnight Commander
43 #include <sys/types.h>
46 #include <pwd.h> /* for username in xterm title */
48 #include "lib/global.h"
50 #include "lib/tty/tty.h"
51 #include "lib/tty/key.h" /* KEY_M_* masks */
55 #include "lib/vfs/vfs.h"
58 #include "src/subshell.h"
59 #include "src/setup.h" /* variables */
60 #include "src/learn.h" /* learn_keys() */
61 #include "src/keybind-defaults.h"
62 #include "lib/keybind.h"
63 #include "lib/event.h"
65 #include "option.h" /* configure_box() */
67 #include "boxes.h" /* sort_box(), tree_box() */
69 #include "cmd.h" /* commands */
72 #include "command.h" /* cmdline */
73 #include "dir.h" /* clean_dir() */
79 #ifdef USE_INTERNAL_EDIT
80 #include "src/editor/edit.h"
84 #include "src/diffviewer/ydiff.h"
87 #include "src/consaver/cons.saver.h" /* show_console_contents */
91 /* TODO: merge content of layout.c here */
92 extern int ok_to_refresh
;
94 /*** global variables ****************************************************************************/
96 /* When the modes are active, left_panel, right_panel and tree_panel */
97 /* point to a proper data structure. You should check with the functions */
98 /* get_current_type and get_other_type the types of the panels before using */
99 /* this pointer variables */
101 /* The structures for the panels */
102 WPanel
*left_panel
= NULL
;
103 WPanel
*right_panel
= NULL
;
104 /* Pointer to the selected and unselected panel */
105 WPanel
*current_panel
= NULL
;
108 WMenuBar
*the_menubar
= NULL
;
109 /* The widget where we draw the prompt */
116 /*** file scope macro definitions ****************************************************************/
120 * Don't restrict the output on the screen manager level,
121 * the translation tables take care of it.
123 #endif /* !HAVE_CHARSET */
125 /*** file scope type declarations ****************************************************************/
127 /*** file scope variables ************************************************************************/
129 static Menu
*left_menu
, *right_menu
;
131 static gboolean ctl_x_map_enabled
= FALSE
;
133 /*** file scope functions ************************************************************************/
135 /** Stop MC main dialog and the current dialog if it exists.
136 * Needed to provide fast exit from MC viewer or editor on shell exit */
140 midnight_dlg
->state
= DLG_CLOSED
;
142 if ((top_dlg
!= NULL
) && (top_dlg
->data
!= NULL
))
143 ((Dlg_head
*) top_dlg
->data
)->state
= DLG_CLOSED
;
146 /* --------------------------------------------------------------------------------------------- */
153 sel_dir
= tree_box (selection (current_panel
)->fname
);
156 vfs_path_t
*sel_vdir
;
158 sel_vdir
= vfs_path_from_str (sel_dir
);
159 do_cd (sel_vdir
, cd_exact
);
160 vfs_path_free (sel_vdir
);
165 /* --------------------------------------------------------------------------------------------- */
167 #ifdef LISTMODE_EDITOR
173 if (get_current_type () != view_listing
)
176 newmode
= listmode_edit (current_panel
->user_format
);
180 g_free (current_panel
->user_format
);
181 current_panel
->list_type
= list_user
;
182 current_panel
->user_format
= newmode
;
183 set_panel_formats (current_panel
);
187 #endif /* LISTMODE_EDITOR */
189 /* --------------------------------------------------------------------------------------------- */
192 create_panel_menu (void)
194 GList
*entries
= NULL
;
196 entries
= g_list_prepend (entries
, menu_entry_create (_("File listin&g"), CK_PanelListing
));
197 entries
= g_list_prepend (entries
, menu_entry_create (_("&Quick view"), CK_PanelQuickView
));
198 entries
= g_list_prepend (entries
, menu_entry_create (_("&Info"), CK_PanelInfo
));
199 entries
= g_list_prepend (entries
, menu_entry_create (_("&Tree"), CK_PanelTree
));
200 entries
= g_list_prepend (entries
, menu_separator_create ());
202 g_list_prepend (entries
, menu_entry_create (_("&Listing mode..."), CK_PanelListingChange
));
203 entries
= g_list_prepend (entries
, menu_entry_create (_("&Sort order..."), CK_Sort
));
204 entries
= g_list_prepend (entries
, menu_entry_create (_("&Filter..."), CK_Filter
));
206 entries
= g_list_prepend (entries
, menu_entry_create (_("&Encoding..."), CK_SelectCodepage
));
208 entries
= g_list_prepend (entries
, menu_separator_create ());
209 #ifdef ENABLE_VFS_FTP
210 entries
= g_list_prepend (entries
, menu_entry_create (_("FT&P link..."), CK_ConnectFtp
));
212 #ifdef ENABLE_VFS_FISH
213 entries
= g_list_prepend (entries
, menu_entry_create (_("S&hell link..."), CK_ConnectFish
));
215 #ifdef ENABLE_VFS_SMB
216 entries
= g_list_prepend (entries
, menu_entry_create (_("SM&B link..."), CK_ConnectSmb
));
218 entries
= g_list_prepend (entries
, menu_entry_create (_("Paneli&ze"), CK_Panelize
));
219 entries
= g_list_prepend (entries
, menu_separator_create ());
220 entries
= g_list_prepend (entries
, menu_entry_create (_("&Rescan"), CK_Reread
));
222 return g_list_reverse (entries
);
225 /* --------------------------------------------------------------------------------------------- */
228 create_file_menu (void)
230 GList
*entries
= NULL
;
232 entries
= g_list_prepend (entries
, menu_entry_create (_("&View"), CK_View
));
233 entries
= g_list_prepend (entries
, menu_entry_create (_("Vie&w file..."), CK_ViewFile
));
234 entries
= g_list_prepend (entries
, menu_entry_create (_("&Filtered view"), CK_ViewFiltered
));
235 entries
= g_list_prepend (entries
, menu_entry_create (_("&Edit"), CK_Edit
));
236 entries
= g_list_prepend (entries
, menu_entry_create (_("&Copy"), CK_Copy
));
237 entries
= g_list_prepend (entries
, menu_entry_create (_("C&hmod"), CK_ChangeMode
));
238 entries
= g_list_prepend (entries
, menu_entry_create (_("&Link"), CK_Link
));
239 entries
= g_list_prepend (entries
, menu_entry_create (_("&Symlink"), CK_LinkSymbolic
));
241 g_list_prepend (entries
,
242 menu_entry_create (_("Relative symlin&k"), CK_LinkSymbolicRelative
));
243 entries
= g_list_prepend (entries
, menu_entry_create (_("Edit s&ymlink"), CK_LinkSymbolicEdit
));
244 entries
= g_list_prepend (entries
, menu_entry_create (_("Ch&own"), CK_ChangeOwn
));
246 g_list_prepend (entries
, menu_entry_create (_("&Advanced chown"), CK_ChangeOwnAdvanced
));
247 entries
= g_list_prepend (entries
, menu_entry_create (_("&Rename/Move"), CK_Move
));
248 entries
= g_list_prepend (entries
, menu_entry_create (_("&Mkdir"), CK_MakeDir
));
249 entries
= g_list_prepend (entries
, menu_entry_create (_("&Delete"), CK_Delete
));
250 entries
= g_list_prepend (entries
, menu_entry_create (_("&Quick cd"), CK_CdQuick
));
251 entries
= g_list_prepend (entries
, menu_separator_create ());
252 entries
= g_list_prepend (entries
, menu_entry_create (_("Select &group"), CK_Select
));
253 entries
= g_list_prepend (entries
, menu_entry_create (_("U&nselect group"), CK_Unselect
));
254 entries
= g_list_prepend (entries
, menu_entry_create (_("&Invert selection"), CK_SelectInvert
));
255 entries
= g_list_prepend (entries
, menu_separator_create ());
256 entries
= g_list_prepend (entries
, menu_entry_create (_("E&xit"), CK_Quit
));
258 return g_list_reverse (entries
);
261 /* --------------------------------------------------------------------------------------------- */
264 create_command_menu (void)
266 /* I know, I'm lazy, but the tree widget when it's not running
267 * as a panel still has some problems, I have not yet finished
268 * the WTree widget port, sorry.
270 GList
*entries
= NULL
;
272 entries
= g_list_prepend (entries
, menu_entry_create (_("&User menu"), CK_UserMenu
));
273 entries
= g_list_prepend (entries
, menu_entry_create (_("&Directory tree"), CK_Tree
));
274 entries
= g_list_prepend (entries
, menu_entry_create (_("&Find file"), CK_Find
));
275 entries
= g_list_prepend (entries
, menu_entry_create (_("S&wap panels"), CK_Swap
));
276 entries
= g_list_prepend (entries
, menu_entry_create (_("Switch &panels on/off"), CK_Shell
));
278 g_list_prepend (entries
, menu_entry_create (_("&Compare directories"), CK_CompareDirs
));
280 entries
= g_list_prepend (entries
, menu_entry_create (_("C&ompare files"), CK_CompareFiles
));
283 g_list_prepend (entries
, menu_entry_create (_("E&xternal panelize"), CK_ExternalPanelize
));
284 entries
= g_list_prepend (entries
, menu_entry_create (_("Show directory s&izes"), CK_DirSize
));
285 entries
= g_list_prepend (entries
, menu_separator_create ());
286 entries
= g_list_prepend (entries
, menu_entry_create (_("Command &history"), CK_History
));
287 entries
= g_list_prepend (entries
, menu_entry_create (_("Di&rectory hotlist"), CK_HotList
));
289 entries
= g_list_prepend (entries
, menu_entry_create (_("&Active VFS list"), CK_VfsList
));
291 #ifdef WITH_BACKGROUND
292 entries
= g_list_prepend (entries
, menu_entry_create (_("&Background jobs"), CK_Jobs
));
294 entries
= g_list_prepend (entries
, menu_entry_create (_("Screen lis&t"), CK_ScreenList
));
295 entries
= g_list_prepend (entries
, menu_separator_create ());
296 #ifdef ENABLE_VFS_UNDELFS
298 g_list_prepend (entries
,
299 menu_entry_create (_("&Undelete files (ext2fs only)"), CK_Undelete
));
301 #ifdef LISTMODE_EDITOR
302 entries
= g_list_prepend (entries
, menu_entry_create (_("&Listing format edit"), CK_ListMode
));
304 #if defined (ENABLE_VFS_UNDELFS) || defined (LISTMODE_EDITOR)
305 entries
= g_list_prepend (entries
, menu_separator_create ());
308 g_list_prepend (entries
,
309 menu_entry_create (_("Edit &extension file"), CK_EditExtensionsFile
));
310 entries
= g_list_prepend (entries
, menu_entry_create (_("Edit &menu file"), CK_EditUserMenu
));
312 g_list_prepend (entries
,
313 menu_entry_create (_("Edit hi&ghlighting group file"),
314 CK_EditFileHighlightFile
));
316 return g_list_reverse (entries
);
319 /* --------------------------------------------------------------------------------------------- */
322 create_options_menu (void)
324 GList
*entries
= NULL
;
326 entries
= g_list_prepend (entries
, menu_entry_create (_("&Configuration..."), CK_Options
));
327 entries
= g_list_prepend (entries
, menu_entry_create (_("&Layout..."), CK_OptionsLayout
));
328 entries
= g_list_prepend (entries
, menu_entry_create (_("&Panel options..."), CK_OptionsPanel
));
330 g_list_prepend (entries
, menu_entry_create (_("C&onfirmation..."), CK_OptionsConfirm
));
332 g_list_prepend (entries
, menu_entry_create (_("&Display bits..."), CK_OptionsDisplayBits
));
333 entries
= g_list_prepend (entries
, menu_entry_create (_("Learn &keys..."), CK_LearnKeys
));
335 entries
= g_list_prepend (entries
, menu_entry_create (_("&Virtual FS..."), CK_OptionsVfs
));
337 entries
= g_list_prepend (entries
, menu_separator_create ());
338 entries
= g_list_prepend (entries
, menu_entry_create (_("&Save setup"), CK_SaveSetup
));
340 return g_list_reverse (entries
);
343 /* --------------------------------------------------------------------------------------------- */
348 left_menu
= create_menu ("", create_panel_menu (), "[Left and Right Menus]");
349 menubar_add_menu (the_menubar
, left_menu
);
350 menubar_add_menu (the_menubar
, create_menu (_("&File"), create_file_menu (), "[File Menu]"));
351 menubar_add_menu (the_menubar
,
352 create_menu (_("&Command"), create_command_menu (), "[Command Menu]"));
353 menubar_add_menu (the_menubar
,
354 create_menu (_("&Options"), create_options_menu (), "[Options Menu]"));
355 right_menu
= create_menu ("", create_panel_menu (), "[Left and Right Menus]");
356 menubar_add_menu (the_menubar
, right_menu
);
360 /* --------------------------------------------------------------------------------------------- */
363 menu_last_selected_cmd (void)
365 the_menubar
->is_active
= TRUE
;
366 the_menubar
->is_dropped
= (drop_menus
!= 0);
367 the_menubar
->previous_widget
= dlg_get_current_widget_id (midnight_dlg
);
368 dlg_select_widget (the_menubar
);
371 /* --------------------------------------------------------------------------------------------- */
376 if (the_menubar
->is_active
)
379 if ((get_current_index () == 0) == (current_panel
->active
!= 0))
380 the_menubar
->selected
= 0;
382 the_menubar
->selected
= g_list_length (the_menubar
->menu
) - 1;
383 menu_last_selected_cmd ();
386 /* --------------------------------------------------------------------------------------------- */
392 const panel_field_t
*sort_order
;
394 if (!SELECTED_IS_PANEL
)
398 sort_order
= sort_box (&p
->sort_info
);
399 panel_set_sort_order (p
, sort_order
);
402 /* --------------------------------------------------------------------------------------------- */
405 midnight_get_shortcut (unsigned long command
)
408 const char *shortcut
= NULL
;
410 shortcut
= keybind_lookup_keymap_shortcut (main_map
, command
);
411 if (shortcut
!= NULL
)
412 return g_strdup (shortcut
);
414 shortcut
= keybind_lookup_keymap_shortcut (panel_map
, command
);
415 if (shortcut
!= NULL
)
416 return g_strdup (shortcut
);
418 ext_map
= keybind_lookup_keymap_shortcut (main_map
, CK_ExtendedKeyMap
);
420 shortcut
= keybind_lookup_keymap_shortcut (main_x_map
, command
);
421 if (shortcut
!= NULL
)
422 return g_strdup_printf ("%s %s", ext_map
, shortcut
);
427 /* --------------------------------------------------------------------------------------------- */
430 midnight_get_title (const Dlg_head
* h
, size_t len
)
432 /* TODO: share code with update_xterm_title_path() */
437 struct passwd
*pw
= NULL
;
443 p
= vfs_path_to_str (current_panel
->cwd_vpath
);
444 path
= strip_home_and_password (p
);
446 res
= gethostname (host
, sizeof (host
));
450 host
[sizeof (host
) - 1] = '\0';
452 pw
= getpwuid (getuid ());
454 login
= g_strdup_printf ("%s@%s", pw
->pw_name
, host
);
456 login
= g_strdup (host
);
458 p
= g_strdup_printf ("%s [%s]:%s", _("Panels:"), login
, path
);
459 path
= str_trunc (p
, len
- 4);
463 return g_strdup (path
);
466 /* --------------------------------------------------------------------------------------------- */
469 toggle_panels_split (void)
471 panels_layout
.horizontal_split
= !panels_layout
.horizontal_split
;
476 /* --------------------------------------------------------------------------------------------- */
482 check_panel_timestamp (const WPanel
* panel
, panel_view_mode_t mode
, struct vfs_class
*vclass
,
485 if (mode
== view_listing
)
487 vfs_path_element_t
*path_element
;
489 path_element
= vfs_path_get_by_index (panel
->cwd_vpath
, -1);
491 if (path_element
->class != vclass
)
494 if (vfs_getid (panel
->cwd_vpath
) != id
)
500 /* --------------------------------------------------------------------------------------------- */
504 check_current_panel_timestamp (const gchar
* event_group_name
, const gchar
* event_name
,
505 gpointer init_data
, gpointer data
)
507 ev_vfs_stamp_create_t
*event_data
= (ev_vfs_stamp_create_t
*) data
;
509 (void) event_group_name
;
514 check_panel_timestamp (current_panel
, get_current_type (), event_data
->vclass
,
516 return !event_data
->ret
;
519 /* --------------------------------------------------------------------------------------------- */
523 check_other_panel_timestamp (const gchar
* event_group_name
, const gchar
* event_name
,
524 gpointer init_data
, gpointer data
)
526 ev_vfs_stamp_create_t
*event_data
= (ev_vfs_stamp_create_t
*) data
;
528 (void) event_group_name
;
533 check_panel_timestamp (other_panel
, get_other_type (), event_data
->vclass
, event_data
->id
);
534 return !event_data
->ret
;
536 #endif /* ENABLE_VFS */
538 /* --------------------------------------------------------------------------------------------- */
542 print_vfs_message (const gchar
* event_group_name
, const gchar
* event_name
,
543 gpointer init_data
, gpointer data
)
546 ev_vfs_print_message_t
*event_data
= (ev_vfs_print_message_t
*) data
;
548 (void) event_group_name
;
552 g_vsnprintf (str
, sizeof (str
), event_data
->msg
, event_data
->ap
);
554 if (mc_global
.widget
.midnight_shutdown
)
557 if (!mc_global
.message_visible
|| !the_hint
|| !the_hint
->widget
.owner
)
561 if (!nice_rotating_dash
|| (ok_to_refresh
<= 0))
564 /* Preserve current cursor position */
565 tty_getyx (&row
, &col
);
568 tty_setcolor (NORMAL_COLOR
);
569 tty_print_string (str_fit_to_term (str
, COLS
- 1, J_LEFT
));
571 /* Restore cursor position */
572 tty_gotoyx (row
, col
);
577 if (mc_global
.message_visible
)
583 /* --------------------------------------------------------------------------------------------- */
590 panel_view_mode_t current_mode
, other_mode
;
591 char *original_dir
= NULL
;
593 if (boot_current_is_left
)
597 current_mode
= startup_left_mode
;
598 other_mode
= startup_right_mode
;
604 current_mode
= startup_right_mode
;
605 other_mode
= startup_left_mode
;
607 /* Creates the left panel */
608 if (mc_run_param0
!= NULL
)
612 if (mc_run_param1
!= NULL
)
614 /* Ok, user has specified two dirs, save the original one,
615 * since we may not be able to chdir to the proper
616 * second directory later
618 original_dir
= vfs_get_current_dir ();
620 vpath
= vfs_path_from_str (mc_run_param0
);
622 vfs_path_free (vpath
);
624 set_display_type (current_index
, current_mode
);
626 /* The other panel */
627 if (mc_run_param1
!= NULL
)
629 const char *cd_dir
= (original_dir
!= NULL
) ? original_dir
: mc_run_param1
;
632 vpath
= vfs_path_from_str (cd_dir
);
634 vfs_path_free (vpath
);
636 g_free (original_dir
);
637 set_display_type (other_index
, other_mode
);
639 if (startup_left_mode
== view_listing
)
640 current_panel
= left_panel
;
641 else if (right_panel
!= NULL
)
642 current_panel
= right_panel
;
644 current_panel
= left_panel
;
647 mc_event_add (MCEVENT_GROUP_CORE
, "vfs_timestamp", check_other_panel_timestamp
, NULL
, NULL
);
648 mc_event_add (MCEVENT_GROUP_CORE
, "vfs_timestamp", check_current_panel_timestamp
, NULL
, NULL
);
649 #endif /* ENABLE_VFS */
651 mc_event_add (MCEVENT_GROUP_CORE
, "vfs_print_message", print_vfs_message
, NULL
, NULL
);
653 /* Create the nice widgets */
654 cmdline
= command_new (0, 0, 0);
655 the_prompt
= label_new (0, 0, mc_prompt
);
656 the_prompt
->transparent
= 1;
657 the_bar
= buttonbar_new (mc_global
.keybar_visible
);
659 the_hint
= label_new (0, 0, 0);
660 the_hint
->transparent
= 1;
661 the_hint
->auto_adjust_cols
= 0;
662 the_hint
->widget
.cols
= COLS
;
664 the_menubar
= menubar_new (0, 0, COLS
, NULL
);
667 /* --------------------------------------------------------------------------------------------- */
670 put_current_path (void)
676 cwd_path
= remove_encoding_from_path (current_panel
->cwd_vpath
);
677 command_insert (cmdline
, cwd_path
, FALSE
);
679 if (cwd_path
[strlen (cwd_path
) - 1] != PATH_SEP
)
680 command_insert (cmdline
, PATH_SEP_STR
, FALSE
);
684 /* --------------------------------------------------------------------------------------------- */
687 put_other_path (void)
691 if (get_other_type () != view_listing
)
697 cwd_path
= remove_encoding_from_path (other_panel
->cwd_vpath
);
698 command_insert (cmdline
, cwd_path
, FALSE
);
700 if (cwd_path
[strlen (cwd_path
) - 1] != PATH_SEP
)
701 command_insert (cmdline
, PATH_SEP_STR
, FALSE
);
705 /* --------------------------------------------------------------------------------------------- */
708 put_link (WPanel
* panel
)
712 if (S_ISLNK (selection (panel
)->st
.st_mode
))
714 char buffer
[MC_MAXPATHLEN
];
718 vpath
= vfs_path_append_new (panel
->cwd_vpath
, selection (panel
)->fname
, NULL
);
719 i
= mc_readlink (vpath
, buffer
, MC_MAXPATHLEN
- 1);
720 vfs_path_free (vpath
);
725 command_insert (cmdline
, buffer
, TRUE
);
730 /* --------------------------------------------------------------------------------------------- */
733 put_current_link (void)
735 put_link (current_panel
);
738 /* --------------------------------------------------------------------------------------------- */
741 put_other_link (void)
743 if (get_other_type () == view_listing
)
744 put_link (other_panel
);
747 /* --------------------------------------------------------------------------------------------- */
749 /** Insert the selected file name into the input line */
757 if (get_current_type () == view_tree
)
759 WTree
*tree
= (WTree
*) get_panel_widget (get_current_index ());
761 tmp
= vfs_path_to_str (tree_selected_name (tree
));
764 tmp
= g_strdup (selection (current_panel
)->fname
);
766 command_insert (cmdline
, tmp
, TRUE
);
770 /* --------------------------------------------------------------------------------------------- */
773 put_tagged (WPanel
* panel
)
779 input_disable_update (cmdline
);
782 for (i
= 0; i
< panel
->count
; i
++)
784 if (panel
->dir
.list
[i
].f
.marked
)
785 command_insert (cmdline
, panel
->dir
.list
[i
].fname
, TRUE
);
790 command_insert (cmdline
, panel
->dir
.list
[panel
->selected
].fname
, TRUE
);
792 input_enable_update (cmdline
);
795 /* --------------------------------------------------------------------------------------------- */
798 put_current_tagged (void)
800 put_tagged (current_panel
);
803 /* --------------------------------------------------------------------------------------------- */
806 put_other_tagged (void)
808 if (get_other_type () == view_listing
)
809 put_tagged (other_panel
);
812 /* --------------------------------------------------------------------------------------------- */
817 ctl_x_map_enabled
= TRUE
;
820 /* --------------------------------------------------------------------------------------------- */
827 tty_display_8bit (TRUE
);
829 tty_display_8bit (mc_global
.full_eight_bits
!= 0);
830 #endif /* HAVE_CHARSET */
832 #else /* HAVE_SLANG */
835 tty_display_8bit (TRUE
);
837 tty_display_8bit (mc_global
.eight_bit_clean
!= 0);
838 #endif /* HAVE_CHARSET */
839 #endif /* HAVE_SLANG */
841 #ifdef HAVE_SUBSHELL_SUPPORT
842 if (mc_global
.tty
.use_subshell
)
843 add_select_channel (mc_global
.tty
.subshell_pty
, load_prompt
, 0);
844 #endif /* !HAVE_SUBSHELL_SUPPORT */
846 if ((tty_baudrate () < 9600) || mc_global
.tty
.slow_terminal
)
850 /* --------------------------------------------------------------------------------------------- */
853 setup_dummy_mc (void)
861 vpath
= vfs_path_from_str (d
);
862 ret
= mc_chdir (vpath
);
863 vfs_path_free (vpath
);
867 /* --------------------------------------------------------------------------------------------- */
874 * We sync the profiles since the hotlist may have changed, while
875 * we only change the setup data if we have the auto save feature set
879 save_setup (auto_save_setup
, panels_options
.auto_save_setup
);
881 curr_dir
= vfs_get_current_dir ();
882 vfs_stamp_path (curr_dir
);
885 if ((current_panel
!= NULL
) && (get_current_type () == view_listing
))
889 tmp_path
= vfs_path_to_str (current_panel
->cwd_vpath
);
890 vfs_stamp_path (tmp_path
);
894 if ((other_panel
!= NULL
) && (get_other_type () == view_listing
))
898 tmp_path
= vfs_path_to_str (other_panel
->cwd_vpath
);
899 vfs_stamp_path (tmp_path
);
904 /* --------------------------------------------------------------------------------------------- */
907 create_panels_and_run_mc (void)
909 midnight_dlg
->get_shortcut
= midnight_get_shortcut
;
910 midnight_dlg
->get_title
= midnight_get_title
;
914 add_widget (midnight_dlg
, the_menubar
);
917 add_widget (midnight_dlg
, get_panel_widget (0));
918 add_widget (midnight_dlg
, get_panel_widget (1));
920 add_widget (midnight_dlg
, the_hint
);
921 add_widget (midnight_dlg
, cmdline
);
922 add_widget (midnight_dlg
, the_prompt
);
924 add_widget (midnight_dlg
, the_bar
);
925 midnight_set_buttonbar (the_bar
);
927 /* Run the Midnight Commander if no file was specified in the command line */
928 run_dlg (midnight_dlg
);
931 /* --------------------------------------------------------------------------------------------- */
933 /** result must be free'd (I think this should go in util.c) */
935 prepend_cwd_on_local (const char *filename
)
941 vpath
= vfs_path_from_str (filename
);
942 if (!vfs_file_is_local (vpath
) || g_path_is_absolute (filename
))
944 vfs_path_free (vpath
);
945 return g_strdup (filename
);
947 vfs_path_free (vpath
);
952 strcpy (d
+ l
, filename
);
953 canonicalize_pathname (d
);
957 /* --------------------------------------------------------------------------------------------- */
959 /** Invoke the internal view/edit routine with:
960 * the default processing and forcing the internal viewer/editor
963 mc_maybe_editor_or_viewer (void)
965 switch (mc_global
.mc_run_mode
)
967 #ifdef USE_INTERNAL_EDIT
970 vfs_path_t
*param_vpath
;
972 param_vpath
= vfs_path_from_str (mc_run_param0
);
973 edit_file (param_vpath
, mc_args__edit_start_line
);
974 vfs_path_free (param_vpath
);
977 #endif /* USE_INTERNAL_EDIT */
981 path
= prepend_cwd_on_local (mc_run_param0
);
982 view_file (path
, 0, 1);
987 case MC_RUN_DIFFVIEWER
:
988 diff_view (mc_run_param0
, mc_run_param1
, mc_run_param0
, mc_run_param1
);
990 #endif /* USE_DIFF_VIEW */
996 /* --------------------------------------------------------------------------------------------- */
999 quit_cmd_internal (int quiet
)
1004 n
= dialog_switch_num () - 1;
1007 char msg
[BUF_MEDIUM
];
1009 g_snprintf (msg
, sizeof (msg
),
1010 ngettext ("You have %zd opened screen. Quit anyway?",
1011 "You have %zd opened screens. Quit anyway?", n
), n
);
1013 if (query_dialog (_("The Midnight Commander"), msg
, D_NORMAL
, 2, _("&Yes"), _("&No")) != 0)
1017 else if (quiet
|| !confirm_exit
)
1019 else if (query_dialog (_("The Midnight Commander"),
1020 _("Do you really want to quit the Midnight Commander?"),
1021 D_NORMAL
, 2, _("&Yes"), _("&No")) == 0)
1026 #ifdef HAVE_SUBSHELL_SUPPORT
1027 if (!mc_global
.tty
.use_subshell
)
1029 else if ((q
= exit_subshell ()))
1039 /* --------------------------------------------------------------------------------------------- */
1044 return quit_cmd_internal (0);
1047 /* --------------------------------------------------------------------------------------------- */
1050 toggle_show_hidden (void)
1052 panels_options
.show_dot_files
= !panels_options
.show_dot_files
;
1053 update_panels (UP_RELOAD
, UP_KEEPSEL
);
1056 /* --------------------------------------------------------------------------------------------- */
1059 * Repaint the contents of the panels without frames. To schedule panel
1060 * for repainting, set panel->dirty to 1. There are many reasons why
1061 * the panels need to be repainted, and this is a costly operation, so
1062 * it's done once per event.
1066 update_dirty_panels (void)
1068 if (get_current_type () == view_listing
&& current_panel
->dirty
)
1069 send_message ((Widget
*) current_panel
, WIDGET_DRAW
, 0);
1071 if (get_other_type () == view_listing
&& other_panel
->dirty
)
1072 send_message ((Widget
*) other_panel
, WIDGET_DRAW
, 0);
1075 /* --------------------------------------------------------------------------------------------- */
1078 midnight_execute_cmd (Widget
* sender
, unsigned long command
)
1080 cb_ret_t res
= MSG_HANDLED
;
1084 /* stop quick search before executing any command */
1085 send_message ((Widget
*) current_panel
, WIDGET_COMMAND
, CK_SearchStop
);
1092 case CK_PanelListingChange
:
1093 change_listing_cmd ();
1101 case CK_ChangeOwnAdvanced
:
1102 chown_advanced_cmd ();
1104 case CK_CompareDirs
:
1105 compare_dirs_cmd ();
1115 case CK_OptionsConfirm
:
1121 case CK_PutCurrentPath
:
1122 put_current_path ();
1124 case CK_PutCurrentLink
:
1125 put_current_link ();
1127 case CK_PutCurrentTagged
:
1128 put_current_tagged ();
1130 case CK_PutOtherPath
:
1133 case CK_PutOtherLink
:
1136 case CK_PutOtherTagged
:
1137 put_other_tagged ();
1143 dialog_switch_list ();
1145 #ifdef USE_DIFF_VIEW
1146 case CK_CompareFiles
:
1150 case CK_OptionsDisplayBits
:
1151 display_bits_box ();
1156 #ifdef USE_INTERNAL_EDIT
1157 case CK_EditForceInternal
:
1158 edit_cmd_force_internal ();
1161 case CK_EditExtensionsFile
:
1164 case CK_EditFileHighlightFile
:
1167 case CK_EditUserMenu
:
1168 edit_mc_menu_cmd ();
1170 case CK_LinkSymbolicEdit
:
1171 edit_symlink_cmd ();
1173 case CK_ExternalPanelize
:
1174 external_panelize ();
1179 case CK_ViewFiltered
:
1180 view_filtered_cmd ();
1185 #ifdef ENABLE_VFS_FISH
1186 case CK_ConnectFish
:
1190 #ifdef ENABLE_VFS_FTP
1195 #ifdef ENABLE_VFS_SMB
1199 #endif /* ENABLE_VFS_SMB */
1207 /* show the history of command line widget */
1208 send_message (&cmdline
->widget
, WIDGET_COMMAND
, CK_History
);
1211 if (sender
== (Widget
*) the_menubar
)
1212 info_cmd (); /* menu */
1214 info_cmd_no_menu (); /* shortcut or buttonbar */
1216 #ifdef WITH_BACKGROUND
1221 case CK_OptionsLayout
:
1228 link_cmd (LINK_HARDLINK
);
1230 case CK_PanelListing
:
1233 #ifdef LISTMODE_EDITOR
1241 case CK_MenuLastSelected
:
1242 menu_last_selected_cmd ();
1247 case CK_OptionsPanel
:
1248 panel_options_box ();
1251 case CK_SelectCodepage
:
1261 case CK_PanelQuickView
:
1262 if (sender
== (Widget
*) the_menubar
)
1263 quick_view_cmd (); /* menu */
1265 quick_cmd_no_menu (); /* shortcut or buttonabr */
1273 case CK_LinkSymbolicRelative
:
1274 link_cmd (LINK_SYMLINK_RELATIVE
);
1287 case CK_SelectInvert
:
1288 select_invert_cmd ();
1300 smart_dirsize_cmd ();
1305 case CK_ExtendedKeyMap
:
1309 mc_event_raise (MCEVENT_GROUP_CORE
, "suspend", NULL
);
1314 case CK_LinkSymbolic
:
1315 link_cmd (LINK_SYMLINK_ABSOLUTE
);
1317 case CK_PanelListingSwitch
:
1318 toggle_listing_cmd ();
1321 toggle_show_hidden ();
1323 case CK_SplitVertHoriz
:
1324 toggle_panels_split ();
1327 panels_split_equal ();
1330 panels_split_more ();
1333 panels_split_less ();
1341 #ifdef ENABLE_VFS_UNDELFS
1350 user_file_menu_cmd ();
1359 /* don't close panels due to SIGINT */
1362 res
= MSG_NOT_HANDLED
;
1368 /* --------------------------------------------------------------------------------------------- */
1371 midnight_callback (Dlg_head
* h
, Widget
* sender
, dlg_msg_t msg
, int parm
, void *data
)
1373 unsigned long command
;
1384 /* We handle the special case of the output lines */
1385 if (mc_global
.tty
.console_flag
!= '\0' && output_lines
)
1386 show_console_contents (output_start_y
,
1387 LINES
- output_lines
- mc_global
.keybar_visible
-
1388 1, LINES
- mc_global
.keybar_visible
- 1);
1393 menubar_arrange (the_menubar
);
1397 /* We only need the first idle event to show user menu after start */
1398 set_idle_proc (h
, 0);
1400 if (boot_current_is_left
)
1401 dlg_select_widget (get_panel_widget (0));
1403 dlg_select_widget (get_panel_widget (1));
1406 midnight_execute_cmd (NULL
, CK_UserMenu
);
1410 if (ctl_x_map_enabled
)
1412 ctl_x_map_enabled
= FALSE
;
1413 command
= keybind_lookup_keymap_command (main_x_map
, parm
);
1414 if (command
!= CK_IgnoreKey
)
1415 return midnight_execute_cmd (NULL
, command
);
1418 /* FIXME: should handle all menu shortcuts before this point */
1419 if (the_menubar
->is_active
)
1420 return MSG_NOT_HANDLED
;
1423 input_free_completions (cmdline
);
1429 for (i
= 0; cmdline
->buffer
[i
] != '\0' &&
1430 (cmdline
->buffer
[i
] == ' ' || cmdline
->buffer
[i
] == '\t'); i
++)
1433 if (cmdline
->buffer
[i
] != '\0')
1435 send_message ((Widget
*) cmdline
, WIDGET_KEY
, parm
);
1439 input_insert (cmdline
, "", FALSE
);
1443 /* Ctrl-Enter and Alt-Enter */
1444 if (((parm
& ~(KEY_M_CTRL
| KEY_M_ALT
)) == '\n') && (parm
& (KEY_M_CTRL
| KEY_M_ALT
)))
1450 /* Ctrl-Shift-Enter */
1451 if (parm
== (KEY_M_CTRL
| KEY_M_SHIFT
| '\n'))
1453 put_current_path ();
1458 if ((!mc_global
.tty
.alternate_plus_minus
1459 || !(mc_global
.tty
.console_flag
!= '\0' || mc_global
.tty
.xterm_flag
)) && !quote
1460 && !current_panel
->searching
)
1462 if (!only_leading_plus_minus
)
1464 /* Special treatement, since the input line will eat them */
1471 if (parm
== '\\' || parm
== '-')
1479 select_invert_cmd ();
1483 else if (!command_prompt
|| !cmdline
->buffer
[0])
1485 /* Special treatement '+', '-', '\', '*' only when this is
1486 * first char on input line
1495 if (parm
== '\\' || parm
== '-')
1503 select_invert_cmd ();
1508 return MSG_NOT_HANDLED
;
1510 case DLG_HOTKEY_HANDLED
:
1511 if ((get_current_type () == view_listing
) && current_panel
->searching
)
1513 current_panel
->dirty
= 1; /* FIXME: unneeded? */
1514 send_message ((Widget
*) current_panel
, WIDGET_COMMAND
, CK_SearchStop
);
1518 case DLG_UNHANDLED_KEY
:
1523 v
= send_message ((Widget
*) cmdline
, WIDGET_KEY
, parm
);
1524 if (v
== MSG_HANDLED
)
1528 if (ctl_x_map_enabled
)
1530 ctl_x_map_enabled
= FALSE
;
1531 command
= keybind_lookup_keymap_command (main_x_map
, parm
);
1534 command
= keybind_lookup_keymap_command (main_map
, parm
);
1536 return (command
== CK_IgnoreKey
) ? MSG_NOT_HANDLED
: midnight_execute_cmd (NULL
, command
);
1539 if (!the_menubar
->is_active
)
1540 update_dirty_panels ();
1546 return midnight_execute_cmd (NULL
, parm
);
1547 /* message from menu */
1548 if (sender
== (Widget
*) the_menubar
)
1549 return midnight_execute_cmd (sender
, parm
);
1550 /* message from buttonbar */
1551 if (sender
== (Widget
*) the_bar
)
1554 return send_message ((Widget
*) data
, WIDGET_COMMAND
, parm
);
1555 return midnight_execute_cmd (sender
, parm
);
1557 return MSG_NOT_HANDLED
;
1564 return default_dlg_callback (h
, sender
, msg
, parm
, data
);
1568 /* --------------------------------------------------------------------------------------------- */
1569 /*** public functions ****************************************************************************/
1570 /* --------------------------------------------------------------------------------------------- */
1575 menu_set_name (left_menu
, panels_layout
.horizontal_split
? _("&Above") : _("&Left"));
1576 menu_set_name (right_menu
, panels_layout
.horizontal_split
? _("&Below") : _("&Right"));
1577 menubar_arrange (the_menubar
);
1578 menubar_set_visible (the_menubar
, menubar_visible
);
1582 midnight_set_buttonbar (WButtonBar
* b
)
1584 buttonbar_set_label (b
, 1, Q_ ("ButtonBar|Help"), main_map
, NULL
);
1585 buttonbar_set_label (b
, 2, Q_ ("ButtonBar|Menu"), main_map
, NULL
);
1586 buttonbar_set_label (b
, 3, Q_ ("ButtonBar|View"), main_map
, NULL
);
1587 buttonbar_set_label (b
, 4, Q_ ("ButtonBar|Edit"), main_map
, NULL
);
1588 buttonbar_set_label (b
, 5, Q_ ("ButtonBar|Copy"), main_map
, NULL
);
1589 buttonbar_set_label (b
, 6, Q_ ("ButtonBar|RenMov"), main_map
, NULL
);
1590 buttonbar_set_label (b
, 7, Q_ ("ButtonBar|Mkdir"), main_map
, NULL
);
1591 buttonbar_set_label (b
, 8, Q_ ("ButtonBar|Delete"), main_map
, NULL
);
1592 buttonbar_set_label (b
, 9, Q_ ("ButtonBar|PullDn"), main_map
, NULL
);
1593 buttonbar_set_label (b
, 10, Q_ ("ButtonBar|Quit"), main_map
, NULL
);
1596 /* --------------------------------------------------------------------------------------------- */
1598 * Load new hint and display it.
1599 * IF force is not 0, ignore the timeout.
1603 load_hint (gboolean force
)
1607 if (the_hint
->widget
.owner
== NULL
)
1610 if (!mc_global
.message_visible
)
1612 label_set_text (the_hint
, NULL
);
1616 hint
= get_random_hint (force
);
1626 char text
[BUF_SMALL
];
1628 g_snprintf (text
, sizeof (text
), _("GNU Midnight Commander %s\n"), VERSION
);
1633 /* --------------------------------------------------------------------------------------------- */
1638 input_free_completions (cmdline
);
1639 dlg_one_down (midnight_dlg
);
1642 /* --------------------------------------------------------------------------------------------- */
1644 /** Save current stat of directories to avoid reloading the panels
1645 * when no modifications have taken place
1648 save_cwds_stat (void)
1650 if (panels_options
.fast_reload
)
1652 mc_stat (current_panel
->cwd_vpath
, &(current_panel
->dir_stat
));
1653 if (get_other_type () == view_listing
)
1654 mc_stat (other_panel
->cwd_vpath
, &(other_panel
->dir_stat
));
1658 /* --------------------------------------------------------------------------------------------- */
1661 quiet_quit_cmd (void)
1663 print_last_revert
= TRUE
;
1664 return quit_cmd_internal (1);
1667 /* --------------------------------------------------------------------------------------------- */
1669 /** Run the main dialog that occupies the whole screen */
1673 dlg_colors_t midnight_colors
;
1675 midnight_colors
[DLG_COLOR_NORMAL
] = mc_skin_color_get ("dialog", "_default_");
1676 midnight_colors
[DLG_COLOR_FOCUS
] = mc_skin_color_get ("dialog", "focus");
1677 midnight_colors
[DLG_COLOR_HOT_NORMAL
] = mc_skin_color_get ("dialog", "hotnormal");
1678 midnight_colors
[DLG_COLOR_HOT_FOCUS
] = mc_skin_color_get ("dialog", "hotfocus");
1679 midnight_colors
[DLG_COLOR_TITLE
] = mc_skin_color_get ("dialog", "title");
1681 #ifdef USE_INTERNAL_EDIT
1685 midnight_dlg
= create_dlg (FALSE
, 0, 0, LINES
, COLS
, midnight_colors
, midnight_callback
,
1686 "[main]", NULL
, DLG_WANT_IDLE
);
1688 if (mc_global
.mc_run_mode
== MC_RUN_FULL
)
1693 /* Check if we were invoked as an editor or file viewer */
1694 if (mc_global
.mc_run_mode
!= MC_RUN_FULL
)
1695 mc_maybe_editor_or_viewer ();
1698 create_panels_and_run_mc ();
1700 /* destroy_dlg destroys even current_panel->cwd_vpath, so we have to save a copy :) */
1701 if (mc_args__last_wd_file
!= NULL
&& vfs_current_is_local ())
1702 last_wd_string
= vfs_path_to_str (current_panel
->cwd_vpath
);
1704 /* don't handle VFS timestamps for dirs opened in panels */
1705 mc_event_destroy (MCEVENT_GROUP_CORE
, "vfs_timestamp");
1707 clean_dir (&panelized_panel
.list
, panelized_panel
.count
);
1711 mc_global
.widget
.midnight_shutdown
= TRUE
;
1712 dialog_switch_shutdown ();
1714 destroy_dlg (midnight_dlg
);
1715 current_panel
= NULL
;
1717 #ifdef USE_INTERNAL_EDIT
1721 if ((quit
& SUBSHELL_EXIT
) == 0)
1725 /* --------------------------------------------------------------------------------------------- */