Changed interface of following functions to handle vfs_path_t object as parameter:
[midnight-commander.git] / src / filemanager / midnight.c
blob962c051e579107a542e8c9466ea73a8972100e07
1 /*
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.
8 Written by:
9 Miguel de Icaza, 1994, 1995, 1996, 1997
10 Janne Kukonlehto, 1994, 1995
11 Norbert Warmuth, 1997
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/>.
30 /** \file main.c
31 * \brief Source: main dialog (file panels) of the Midnight Commander
34 #include <config.h>
36 #include <ctype.h>
37 #include <errno.h>
38 #include <locale.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <fcntl.h>
43 #include <sys/types.h>
44 #include <sys/stat.h>
45 #include <sys/wait.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 */
52 #include "lib/skin.h"
53 #include "lib/util.h"
55 #include "lib/vfs/vfs.h"
57 #include "src/args.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() */
66 #include "tree.h"
67 #include "boxes.h" /* sort_box(), tree_box() */
68 #include "layout.h"
69 #include "cmd.h" /* commands */
70 #include "hotlist.h"
71 #include "panelize.h"
72 #include "command.h" /* cmdline */
73 #include "dir.h" /* clean_dir() */
75 #include "chmod.h"
76 #include "chown.h"
77 #include "achown.h"
79 #ifdef USE_INTERNAL_EDIT
80 #include "src/editor/edit.h"
81 #endif
83 #ifdef USE_DIFF_VIEW
84 #include "src/diffviewer/ydiff.h"
85 #endif
87 #include "src/consaver/cons.saver.h" /* show_console_contents */
89 #include "midnight.h"
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;
107 /* The Menubar */
108 WMenuBar *the_menubar = NULL;
109 /* The widget where we draw the prompt */
110 WLabel *the_prompt;
111 /* The hint bar */
112 WLabel *the_hint;
113 /* The button bar */
114 WButtonBar *the_bar;
116 /*** file scope macro definitions ****************************************************************/
118 #ifdef HAVE_CHARSET
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 */
137 static void
138 stop_dialogs (void)
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 /* --------------------------------------------------------------------------------------------- */
148 static void
149 treebox_cmd (void)
151 char *sel_dir;
153 sel_dir = tree_box (selection (current_panel)->fname);
154 if (sel_dir)
156 do_cd (sel_dir, cd_exact);
157 g_free (sel_dir);
161 /* --------------------------------------------------------------------------------------------- */
163 #ifdef LISTMODE_EDITOR
164 static void
165 listmode_cmd (void)
167 char *newmode;
169 if (get_current_type () != view_listing)
170 return;
172 newmode = listmode_edit (current_panel->user_format);
173 if (!newmode)
174 return;
176 g_free (current_panel->user_format);
177 current_panel->list_type = list_user;
178 current_panel->user_format = newmode;
179 set_panel_formats (current_panel);
181 do_refresh ();
183 #endif /* LISTMODE_EDITOR */
185 /* --------------------------------------------------------------------------------------------- */
187 static GList *
188 create_panel_menu (void)
190 GList *entries = NULL;
192 entries = g_list_prepend (entries, menu_entry_create (_("File listin&g"), CK_PanelListing));
193 entries = g_list_prepend (entries, menu_entry_create (_("&Quick view"), CK_PanelQuickView));
194 entries = g_list_prepend (entries, menu_entry_create (_("&Info"), CK_PanelInfo));
195 entries = g_list_prepend (entries, menu_entry_create (_("&Tree"), CK_PanelTree));
196 entries = g_list_prepend (entries, menu_separator_create ());
197 entries =
198 g_list_prepend (entries, menu_entry_create (_("&Listing mode..."), CK_PanelListingChange));
199 entries = g_list_prepend (entries, menu_entry_create (_("&Sort order..."), CK_Sort));
200 entries = g_list_prepend (entries, menu_entry_create (_("&Filter..."), CK_Filter));
201 #ifdef HAVE_CHARSET
202 entries = g_list_prepend (entries, menu_entry_create (_("&Encoding..."), CK_SelectCodepage));
203 #endif
204 entries = g_list_prepend (entries, menu_separator_create ());
205 #ifdef ENABLE_VFS_FTP
206 entries = g_list_prepend (entries, menu_entry_create (_("FT&P link..."), CK_ConnectFtp));
207 #endif
208 #ifdef ENABLE_VFS_FISH
209 entries = g_list_prepend (entries, menu_entry_create (_("S&hell link..."), CK_ConnectFish));
210 #endif
211 #ifdef ENABLE_VFS_SMB
212 entries = g_list_prepend (entries, menu_entry_create (_("SM&B link..."), CK_ConnectSmb));
213 #endif
214 entries = g_list_prepend (entries, menu_entry_create (_("Paneli&ze"), CK_Panelize));
215 entries = g_list_prepend (entries, menu_separator_create ());
216 entries = g_list_prepend (entries, menu_entry_create (_("&Rescan"), CK_Reread));
218 return g_list_reverse (entries);
221 /* --------------------------------------------------------------------------------------------- */
223 static GList *
224 create_file_menu (void)
226 GList *entries = NULL;
228 entries = g_list_prepend (entries, menu_entry_create (_("&View"), CK_View));
229 entries = g_list_prepend (entries, menu_entry_create (_("Vie&w file..."), CK_ViewFile));
230 entries = g_list_prepend (entries, menu_entry_create (_("&Filtered view"), CK_ViewFiltered));
231 entries = g_list_prepend (entries, menu_entry_create (_("&Edit"), CK_Edit));
232 entries = g_list_prepend (entries, menu_entry_create (_("&Copy"), CK_Copy));
233 entries = g_list_prepend (entries, menu_entry_create (_("C&hmod"), CK_ChangeMode));
234 entries = g_list_prepend (entries, menu_entry_create (_("&Link"), CK_Link));
235 entries = g_list_prepend (entries, menu_entry_create (_("&Symlink"), CK_LinkSymbolic));
236 entries =
237 g_list_prepend (entries,
238 menu_entry_create (_("Relative symlin&k"), CK_LinkSymbolicRelative));
239 entries = g_list_prepend (entries, menu_entry_create (_("Edit s&ymlink"), CK_LinkSymbolicEdit));
240 entries = g_list_prepend (entries, menu_entry_create (_("Ch&own"), CK_ChangeOwn));
241 entries =
242 g_list_prepend (entries, menu_entry_create (_("&Advanced chown"), CK_ChangeOwnAdvanced));
243 entries = g_list_prepend (entries, menu_entry_create (_("&Rename/Move"), CK_Move));
244 entries = g_list_prepend (entries, menu_entry_create (_("&Mkdir"), CK_MakeDir));
245 entries = g_list_prepend (entries, menu_entry_create (_("&Delete"), CK_Delete));
246 entries = g_list_prepend (entries, menu_entry_create (_("&Quick cd"), CK_CdQuick));
247 entries = g_list_prepend (entries, menu_separator_create ());
248 entries = g_list_prepend (entries, menu_entry_create (_("Select &group"), CK_Select));
249 entries = g_list_prepend (entries, menu_entry_create (_("U&nselect group"), CK_Unselect));
250 entries = g_list_prepend (entries, menu_entry_create (_("&Invert selection"), CK_SelectInvert));
251 entries = g_list_prepend (entries, menu_separator_create ());
252 entries = g_list_prepend (entries, menu_entry_create (_("E&xit"), CK_Quit));
254 return g_list_reverse (entries);
257 /* --------------------------------------------------------------------------------------------- */
259 static GList *
260 create_command_menu (void)
262 /* I know, I'm lazy, but the tree widget when it's not running
263 * as a panel still has some problems, I have not yet finished
264 * the WTree widget port, sorry.
266 GList *entries = NULL;
268 entries = g_list_prepend (entries, menu_entry_create (_("&User menu"), CK_UserMenu));
269 entries = g_list_prepend (entries, menu_entry_create (_("&Directory tree"), CK_Tree));
270 entries = g_list_prepend (entries, menu_entry_create (_("&Find file"), CK_Find));
271 entries = g_list_prepend (entries, menu_entry_create (_("S&wap panels"), CK_Swap));
272 entries = g_list_prepend (entries, menu_entry_create (_("Switch &panels on/off"), CK_Shell));
273 entries =
274 g_list_prepend (entries, menu_entry_create (_("&Compare directories"), CK_CompareDirs));
275 #ifdef USE_DIFF_VIEW
276 entries = g_list_prepend (entries, menu_entry_create (_("C&ompare files"), CK_CompareFiles));
277 #endif
278 entries =
279 g_list_prepend (entries, menu_entry_create (_("E&xternal panelize"), CK_ExternalPanelize));
280 entries = g_list_prepend (entries, menu_entry_create (_("Show directory s&izes"), CK_DirSize));
281 entries = g_list_prepend (entries, menu_separator_create ());
282 entries = g_list_prepend (entries, menu_entry_create (_("Command &history"), CK_History));
283 entries = g_list_prepend (entries, menu_entry_create (_("Di&rectory hotlist"), CK_HotList));
284 #ifdef ENABLE_VFS
285 entries = g_list_prepend (entries, menu_entry_create (_("&Active VFS list"), CK_VfsList));
286 #endif
287 #ifdef ENABLE_BACKGROUND
288 entries = g_list_prepend (entries, menu_entry_create (_("&Background jobs"), CK_Jobs));
289 #endif
290 entries = g_list_prepend (entries, menu_entry_create (_("Screen lis&t"), CK_ScreenList));
291 entries = g_list_prepend (entries, menu_separator_create ());
292 #ifdef ENABLE_VFS_UNDELFS
293 entries =
294 g_list_prepend (entries,
295 menu_entry_create (_("&Undelete files (ext2fs only)"), CK_Undelete));
296 #endif
297 #ifdef LISTMODE_EDITOR
298 entries = g_list_prepend (entries, menu_entry_create (_("&Listing format edit"), CK_ListMode));
299 #endif
300 #if defined (ENABLE_VFS_UNDELFS) || defined (LISTMODE_EDITOR)
301 entries = g_list_prepend (entries, menu_separator_create ());
302 #endif
303 entries =
304 g_list_prepend (entries,
305 menu_entry_create (_("Edit &extension file"), CK_EditExtensionsFile));
306 entries = g_list_prepend (entries, menu_entry_create (_("Edit &menu file"), CK_EditUserMenu));
307 entries =
308 g_list_prepend (entries,
309 menu_entry_create (_("Edit hi&ghlighting group file"),
310 CK_EditFileHighlightFile));
312 return g_list_reverse (entries);
315 /* --------------------------------------------------------------------------------------------- */
317 static GList *
318 create_options_menu (void)
320 GList *entries = NULL;
322 entries = g_list_prepend (entries, menu_entry_create (_("&Configuration..."), CK_Options));
323 entries = g_list_prepend (entries, menu_entry_create (_("&Layout..."), CK_OptionsLayout));
324 entries = g_list_prepend (entries, menu_entry_create (_("&Panel options..."), CK_OptionsPanel));
325 entries =
326 g_list_prepend (entries, menu_entry_create (_("C&onfirmation..."), CK_OptionsConfirm));
327 entries =
328 g_list_prepend (entries, menu_entry_create (_("&Display bits..."), CK_OptionsDisplayBits));
329 entries = g_list_prepend (entries, menu_entry_create (_("Learn &keys..."), CK_LearnKeys));
330 #ifdef ENABLE_VFS
331 entries = g_list_prepend (entries, menu_entry_create (_("&Virtual FS..."), CK_OptionsVfs));
332 #endif
333 entries = g_list_prepend (entries, menu_separator_create ());
334 entries = g_list_prepend (entries, menu_entry_create (_("&Save setup"), CK_SaveSetup));
336 return g_list_reverse (entries);
339 /* --------------------------------------------------------------------------------------------- */
341 static void
342 init_menu (void)
344 left_menu = create_menu ("", create_panel_menu (), "[Left and Right Menus]");
345 menubar_add_menu (the_menubar, left_menu);
346 menubar_add_menu (the_menubar, create_menu (_("&File"), create_file_menu (), "[File Menu]"));
347 menubar_add_menu (the_menubar,
348 create_menu (_("&Command"), create_command_menu (), "[Command Menu]"));
349 menubar_add_menu (the_menubar,
350 create_menu (_("&Options"), create_options_menu (), "[Options Menu]"));
351 right_menu = create_menu ("", create_panel_menu (), "[Left and Right Menus]");
352 menubar_add_menu (the_menubar, right_menu);
353 update_menu ();
356 /* --------------------------------------------------------------------------------------------- */
358 static void
359 menu_last_selected_cmd (void)
361 the_menubar->is_active = TRUE;
362 the_menubar->is_dropped = (drop_menus != 0);
363 the_menubar->previous_widget = dlg_get_current_widget_id (midnight_dlg);
364 dlg_select_widget (the_menubar);
367 /* --------------------------------------------------------------------------------------------- */
369 static void
370 menu_cmd (void)
372 if (the_menubar->is_active)
373 return;
375 if ((get_current_index () == 0) == (current_panel->active != 0))
376 the_menubar->selected = 0;
377 else
378 the_menubar->selected = g_list_length (the_menubar->menu) - 1;
379 menu_last_selected_cmd ();
382 /* --------------------------------------------------------------------------------------------- */
384 static void
385 sort_cmd (void)
387 WPanel *p;
388 const panel_field_t *sort_order;
390 if (!SELECTED_IS_PANEL)
391 return;
393 p = MENU_PANEL;
394 sort_order = sort_box (&p->sort_info);
395 panel_set_sort_order (p, sort_order);
398 /* --------------------------------------------------------------------------------------------- */
400 static char *
401 midnight_get_shortcut (unsigned long command)
403 const char *ext_map;
404 const char *shortcut = NULL;
406 shortcut = keybind_lookup_keymap_shortcut (main_map, command);
407 if (shortcut != NULL)
408 return g_strdup (shortcut);
410 shortcut = keybind_lookup_keymap_shortcut (panel_map, command);
411 if (shortcut != NULL)
412 return g_strdup (shortcut);
414 ext_map = keybind_lookup_keymap_shortcut (main_map, CK_ExtendedKeyMap);
415 if (ext_map != NULL)
416 shortcut = keybind_lookup_keymap_shortcut (main_x_map, command);
417 if (shortcut != NULL)
418 return g_strdup_printf ("%s %s", ext_map, shortcut);
420 return NULL;
423 /* --------------------------------------------------------------------------------------------- */
425 static char *
426 midnight_get_title (const Dlg_head * h, size_t len)
428 /* TODO: share code with update_xterm_title_path() */
430 const char *path;
431 char host[BUF_TINY];
432 char *p;
433 struct passwd *pw = NULL;
434 char *login = NULL;
435 int res = 0;
437 (void) h;
439 path = strip_home_and_password (current_panel->cwd);
440 res = gethostname (host, sizeof (host));
441 if (res != 0)
442 host[0] = '\0';
443 else
444 host[sizeof (host) - 1] = '\0';
446 pw = getpwuid (getuid ());
447 if (pw != NULL)
448 login = g_strdup_printf ("%s@%s", pw->pw_name, host);
449 else
450 login = g_strdup (host);
452 p = g_strdup_printf ("%s [%s]:%s", _("Panels:"), login, path);
453 path = str_trunc (p, len - 4);
454 g_free (login);
455 g_free (p);
457 return g_strdup (path);
460 /* --------------------------------------------------------------------------------------------- */
462 static void
463 toggle_panels_split (void)
465 panels_layout.horizontal_split = !panels_layout.horizontal_split;
466 layout_change ();
467 do_refresh ();
470 /* --------------------------------------------------------------------------------------------- */
472 #ifdef ENABLE_VFS
473 /* event helper */
474 static gboolean
475 check_panel_timestamp (const WPanel * panel, panel_view_mode_t mode, struct vfs_class *vclass,
476 vfsid id)
478 if (mode == view_listing)
480 vfs_path_t *vpath;
481 vfs_path_element_t *path_element;
483 vpath = vfs_path_from_str (panel->cwd);
484 path_element = vfs_path_get_by_index (vpath, -1);
486 if (path_element->class != vclass)
488 vfs_path_free (vpath);
489 return FALSE;
492 if (vfs_getid (vpath) != id)
494 vfs_path_free (vpath);
495 return FALSE;
497 vfs_path_free (vpath);
499 return TRUE;
502 /* --------------------------------------------------------------------------------------------- */
504 /* event callback */
505 static gboolean
506 check_current_panel_timestamp (const gchar * event_group_name, const gchar * event_name,
507 gpointer init_data, gpointer data)
509 ev_vfs_stamp_create_t *event_data = (ev_vfs_stamp_create_t *) data;
511 (void) event_group_name;
512 (void) event_name;
513 (void) init_data;
515 event_data->ret =
516 check_panel_timestamp (current_panel, get_current_type (), event_data->vclass,
517 event_data->id);
518 return !event_data->ret;
521 /* --------------------------------------------------------------------------------------------- */
523 /* event callback */
524 static gboolean
525 check_other_panel_timestamp (const gchar * event_group_name, const gchar * event_name,
526 gpointer init_data, gpointer data)
528 ev_vfs_stamp_create_t *event_data = (ev_vfs_stamp_create_t *) data;
530 (void) event_group_name;
531 (void) event_name;
532 (void) init_data;
534 event_data->ret =
535 check_panel_timestamp (other_panel, get_other_type (), event_data->vclass, event_data->id);
536 return !event_data->ret;
538 #endif /* ENABLE_VFS */
540 /* --------------------------------------------------------------------------------------------- */
542 /* event callback */
543 static gboolean
544 print_vfs_message (const gchar * event_group_name, const gchar * event_name,
545 gpointer init_data, gpointer data)
547 char str[128];
548 ev_vfs_print_message_t *event_data = (ev_vfs_print_message_t *) data;
550 (void) event_group_name;
551 (void) event_name;
552 (void) init_data;
554 g_vsnprintf (str, sizeof (str), event_data->msg, event_data->ap);
556 if (mc_global.midnight_shutdown)
557 return TRUE;
559 if (!mc_global.message_visible || !the_hint || !the_hint->widget.owner)
561 int col, row;
563 if (!nice_rotating_dash || (ok_to_refresh <= 0))
564 return TRUE;
566 /* Preserve current cursor position */
567 tty_getyx (&row, &col);
569 tty_gotoyx (0, 0);
570 tty_setcolor (NORMAL_COLOR);
571 tty_print_string (str_fit_to_term (str, COLS - 1, J_LEFT));
573 /* Restore cursor position */
574 tty_gotoyx (row, col);
575 mc_refresh ();
576 return TRUE;
579 if (mc_global.message_visible)
580 set_hintbar (str);
582 return TRUE;
585 /* --------------------------------------------------------------------------------------------- */
587 static void
588 create_panels (void)
590 int current_index;
591 int other_index;
592 panel_view_mode_t current_mode, other_mode;
593 char original_dir[BUF_1K] = "\0";
595 if (boot_current_is_left)
597 current_index = 0;
598 other_index = 1;
599 current_mode = startup_left_mode;
600 other_mode = startup_right_mode;
602 else
604 current_index = 1;
605 other_index = 0;
606 current_mode = startup_right_mode;
607 other_mode = startup_left_mode;
609 /* Creates the left panel */
610 if (mc_run_param0 != NULL)
612 vfs_path_t *vpath;
614 if (mc_run_param1 != NULL)
616 /* Ok, user has specified two dirs, save the original one,
617 * since we may not be able to chdir to the proper
618 * second directory later
620 mc_get_current_wd (original_dir, sizeof (original_dir) - 2);
622 vpath = vfs_path_from_str (mc_run_param0);
623 mc_chdir (vpath);
624 vfs_path_free (vpath);
626 set_display_type (current_index, current_mode);
628 /* The other panel */
629 if (mc_run_param1 != NULL)
631 const char *cd_dir = (original_dir != NULL) ? original_dir : mc_run_param1;
632 vfs_path_t *vpath;
634 vpath = vfs_path_from_str (cd_dir);
635 mc_chdir (vpath);
636 vfs_path_free (vpath);
638 set_display_type (other_index, other_mode);
640 if (startup_left_mode == view_listing)
641 current_panel = left_panel;
642 else if (right_panel != NULL)
643 current_panel = right_panel;
644 else
645 current_panel = left_panel;
647 #ifdef ENABLE_VFS
648 mc_event_add (MCEVENT_GROUP_CORE, "vfs_timestamp", check_other_panel_timestamp, NULL, NULL);
649 mc_event_add (MCEVENT_GROUP_CORE, "vfs_timestamp", check_current_panel_timestamp, NULL, NULL);
650 #endif /* ENABLE_VFS */
652 mc_event_add (MCEVENT_GROUP_CORE, "vfs_print_message", print_vfs_message, NULL, NULL);
654 /* Create the nice widgets */
655 cmdline = command_new (0, 0, 0);
656 the_prompt = label_new (0, 0, mc_prompt);
657 the_prompt->transparent = 1;
658 the_bar = buttonbar_new (mc_global.keybar_visible);
660 the_hint = label_new (0, 0, 0);
661 the_hint->transparent = 1;
662 the_hint->auto_adjust_cols = 0;
663 the_hint->widget.cols = COLS;
665 the_menubar = menubar_new (0, 0, COLS, NULL);
668 /* --------------------------------------------------------------------------------------------- */
670 static void
671 put_current_path (void)
673 char *cwd_path;
674 if (!command_prompt)
675 return;
677 cwd_path = remove_encoding_from_path (current_panel->cwd);
678 command_insert (cmdline, cwd_path, FALSE);
680 if (cwd_path[strlen (cwd_path) - 1] != PATH_SEP)
681 command_insert (cmdline, PATH_SEP_STR, FALSE);
682 g_free (cwd_path);
685 /* --------------------------------------------------------------------------------------------- */
687 static void
688 put_other_path (void)
690 char *cwd_path;
692 if (get_other_type () != view_listing)
693 return;
695 if (!command_prompt)
696 return;
698 cwd_path = remove_encoding_from_path (other_panel->cwd);
699 command_insert (cmdline, cwd_path, FALSE);
701 if (cwd_path[strlen (cwd_path) - 1] != PATH_SEP)
702 command_insert (cmdline, PATH_SEP_STR, FALSE);
703 g_free (cwd_path);
706 /* --------------------------------------------------------------------------------------------- */
708 static void
709 put_link (WPanel * panel)
711 if (!command_prompt)
712 return;
713 if (S_ISLNK (selection (panel)->st.st_mode))
715 char buffer[MC_MAXPATHLEN];
716 vfs_path_t *vpath;
717 int i;
719 vpath = vfs_path_build_filename (panel->cwd, selection (panel)->fname, NULL);
720 i = mc_readlink (vpath, buffer, MC_MAXPATHLEN - 1);
721 vfs_path_free (vpath);
723 if (i > 0)
725 buffer[i] = '\0';
726 command_insert (cmdline, buffer, TRUE);
731 /* --------------------------------------------------------------------------------------------- */
733 static void
734 put_current_link (void)
736 put_link (current_panel);
739 /* --------------------------------------------------------------------------------------------- */
741 static void
742 put_other_link (void)
744 if (get_other_type () == view_listing)
745 put_link (other_panel);
748 /* --------------------------------------------------------------------------------------------- */
750 /** Insert the selected file name into the input line */
751 static void
752 put_prog_name (void)
754 char *tmp;
755 if (!command_prompt)
756 return;
758 if (get_current_type () == view_tree)
760 WTree *tree = (WTree *) get_panel_widget (get_current_index ());
761 tmp = tree_selected_name (tree);
763 else
764 tmp = selection (current_panel)->fname;
766 command_insert (cmdline, tmp, TRUE);
769 /* --------------------------------------------------------------------------------------------- */
771 static void
772 put_tagged (WPanel * panel)
774 int i;
776 if (!command_prompt)
777 return;
778 input_disable_update (cmdline);
779 if (panel->marked)
781 for (i = 0; i < panel->count; i++)
783 if (panel->dir.list[i].f.marked)
784 command_insert (cmdline, panel->dir.list[i].fname, TRUE);
787 else
789 command_insert (cmdline, panel->dir.list[panel->selected].fname, TRUE);
791 input_enable_update (cmdline);
794 /* --------------------------------------------------------------------------------------------- */
796 static void
797 put_current_tagged (void)
799 put_tagged (current_panel);
802 /* --------------------------------------------------------------------------------------------- */
804 static void
805 put_other_tagged (void)
807 if (get_other_type () == view_listing)
808 put_tagged (other_panel);
811 /* --------------------------------------------------------------------------------------------- */
813 static void
814 ctl_x_cmd (void)
816 ctl_x_map_enabled = TRUE;
819 /* --------------------------------------------------------------------------------------------- */
821 static void
822 setup_mc (void)
824 #ifdef HAVE_SLANG
825 #ifdef HAVE_CHARSET
826 tty_display_8bit (TRUE);
827 #else
828 tty_display_8bit (mc_global.full_eight_bits != 0);
829 #endif /* HAVE_CHARSET */
831 #else /* HAVE_SLANG */
833 #ifdef HAVE_CHARSET
834 tty_display_8bit (TRUE);
835 #else
836 tty_display_8bit (mc_global.eight_bit_clean != 0);
837 #endif /* HAVE_CHARSET */
838 #endif /* HAVE_SLANG */
840 #ifdef HAVE_SUBSHELL_SUPPORT
841 if (mc_global.tty.use_subshell)
842 add_select_channel (mc_global.tty.subshell_pty, load_prompt, 0);
843 #endif /* !HAVE_SUBSHELL_SUPPORT */
845 if ((tty_baudrate () < 9600) || mc_global.tty.slow_terminal)
846 verbose = 0;
849 /* --------------------------------------------------------------------------------------------- */
851 static void
852 setup_dummy_mc (void)
854 vfs_path_t *vpath;
855 char d[MC_MAXPATHLEN];
856 int ret;
858 mc_get_current_wd (d, MC_MAXPATHLEN);
859 setup_mc ();
860 vpath = vfs_path_from_str (d);
861 ret = mc_chdir (vpath);
862 vfs_path_free (vpath);
865 /* --------------------------------------------------------------------------------------------- */
867 static void
868 done_mc (void)
870 /* Setup shutdown
872 * We sync the profiles since the hotlist may have changed, while
873 * we only change the setup data if we have the auto save feature set
875 char *curr_dir;
877 save_setup (auto_save_setup, panels_options.auto_save_setup);
879 curr_dir = vfs_get_current_dir ();
880 vfs_stamp_path (curr_dir);
881 g_free (curr_dir);
883 if ((current_panel != NULL) && (get_current_type () == view_listing))
884 vfs_stamp_path (current_panel->cwd);
886 if ((other_panel != NULL) && (get_other_type () == view_listing))
887 vfs_stamp_path (other_panel->cwd);
890 /* --------------------------------------------------------------------------------------------- */
892 static void
893 create_panels_and_run_mc (void)
895 midnight_dlg->get_shortcut = midnight_get_shortcut;
896 midnight_dlg->get_title = midnight_get_title;
898 create_panels ();
900 add_widget (midnight_dlg, the_menubar);
901 init_menu ();
903 add_widget (midnight_dlg, get_panel_widget (0));
904 add_widget (midnight_dlg, get_panel_widget (1));
906 add_widget (midnight_dlg, the_hint);
907 add_widget (midnight_dlg, cmdline);
908 add_widget (midnight_dlg, the_prompt);
910 add_widget (midnight_dlg, the_bar);
911 midnight_set_buttonbar (the_bar);
913 /* Run the Midnight Commander if no file was specified in the command line */
914 run_dlg (midnight_dlg);
917 /* --------------------------------------------------------------------------------------------- */
919 /** result must be free'd (I think this should go in util.c) */
920 static char *
921 prepend_cwd_on_local (const char *filename)
923 char *d;
924 size_t l;
925 vfs_path_t *vpath;
927 vpath = vfs_path_from_str (filename);
928 if (!vfs_file_is_local (vpath) || g_path_is_absolute (filename))
930 vfs_path_free (vpath);
931 return g_strdup (filename);
933 vfs_path_free (vpath);
935 d = g_malloc (MC_MAXPATHLEN + strlen (filename) + 2);
936 mc_get_current_wd (d, MC_MAXPATHLEN);
937 l = strlen (d);
938 d[l++] = PATH_SEP;
939 strcpy (d + l, filename);
940 canonicalize_pathname (d);
941 return d;
944 /* --------------------------------------------------------------------------------------------- */
946 /** Invoke the internal view/edit routine with:
947 * the default processing and forcing the internal viewer/editor
949 static gboolean
950 mc_maybe_editor_or_viewer (void)
952 int ret;
954 switch (mc_global.mc_run_mode)
956 #ifdef USE_INTERNAL_EDIT
957 case MC_RUN_EDITOR:
958 ret = edit_file (mc_run_param0, mc_args__edit_start_line);
959 break;
960 #endif /* USE_INTERNAL_EDIT */
961 case MC_RUN_VIEWER:
963 char *path;
965 path = prepend_cwd_on_local (mc_run_param0);
966 view_file (path, 0, 1);
967 g_free (path);
968 ret = 1;
969 break;
971 #ifdef USE_DIFF_VIEW
972 case MC_RUN_DIFFVIEWER:
973 ret = diff_view (mc_run_param0, mc_run_param1, mc_run_param0, mc_run_param1);
974 break;
975 #endif /* USE_DIFF_VIEW */
976 default:
977 ret = 0;
980 return (ret != 0);
983 /* --------------------------------------------------------------------------------------------- */
985 static gboolean
986 quit_cmd_internal (int quiet)
988 int q = quit;
989 size_t n;
991 n = dialog_switch_num () - 1;
992 if (n != 0)
994 char msg[BUF_MEDIUM];
996 g_snprintf (msg, sizeof (msg),
997 ngettext ("You have %zd opened screen. Quit anyway?",
998 "You have %zd opened screens. Quit anyway?", n), n);
1000 if (query_dialog (_("The Midnight Commander"), msg, D_NORMAL, 2, _("&Yes"), _("&No")) != 0)
1001 return FALSE;
1002 q = 1;
1004 else if (quiet || !confirm_exit)
1005 q = 1;
1006 else if (query_dialog (_("The Midnight Commander"),
1007 _("Do you really want to quit the Midnight Commander?"),
1008 D_NORMAL, 2, _("&Yes"), _("&No")) == 0)
1009 q = 1;
1011 if (q != 0)
1013 #ifdef HAVE_SUBSHELL_SUPPORT
1014 if (!mc_global.tty.use_subshell)
1015 stop_dialogs ();
1016 else if ((q = exit_subshell ()))
1017 #endif
1018 stop_dialogs ();
1021 if (q != 0)
1022 quit |= 1;
1023 return (quit != 0);
1026 /* --------------------------------------------------------------------------------------------- */
1028 static gboolean
1029 quit_cmd (void)
1031 return quit_cmd_internal (0);
1034 /* --------------------------------------------------------------------------------------------- */
1036 static void
1037 toggle_show_hidden (void)
1039 panels_options.show_dot_files = !panels_options.show_dot_files;
1040 update_panels (UP_RELOAD, UP_KEEPSEL);
1043 /* --------------------------------------------------------------------------------------------- */
1046 * Repaint the contents of the panels without frames. To schedule panel
1047 * for repainting, set panel->dirty to 1. There are many reasons why
1048 * the panels need to be repainted, and this is a costly operation, so
1049 * it's done once per event.
1052 static void
1053 update_dirty_panels (void)
1055 if (get_current_type () == view_listing && current_panel->dirty)
1056 send_message ((Widget *) current_panel, WIDGET_DRAW, 0);
1058 if (get_other_type () == view_listing && other_panel->dirty)
1059 send_message ((Widget *) other_panel, WIDGET_DRAW, 0);
1062 /* --------------------------------------------------------------------------------------------- */
1064 static cb_ret_t
1065 midnight_execute_cmd (Widget * sender, unsigned long command)
1067 cb_ret_t res = MSG_HANDLED;
1069 (void) sender;
1071 /* stop quick search before executing any command */
1072 send_message ((Widget *) current_panel, WIDGET_COMMAND, CK_SearchStop);
1074 switch (command)
1076 case CK_HotListAdd:
1077 add2hotlist_cmd ();
1078 break;
1079 case CK_PanelListingChange:
1080 change_listing_cmd ();
1081 break;
1082 case CK_ChangeMode:
1083 chmod_cmd ();
1084 break;
1085 case CK_ChangeOwn:
1086 chown_cmd ();
1087 break;
1088 case CK_ChangeOwnAdvanced:
1089 chown_advanced_cmd ();
1090 break;
1091 case CK_CompareDirs:
1092 compare_dirs_cmd ();
1093 break;
1094 case CK_Options:
1095 configure_box ();
1096 break;
1097 #ifdef ENABLE_VFS
1098 case CK_OptionsVfs:
1099 configure_vfs ();
1100 break;
1101 #endif
1102 case CK_OptionsConfirm:
1103 confirm_box ();
1104 break;
1105 case CK_Copy:
1106 copy_cmd ();
1107 break;
1108 case CK_PutCurrentPath:
1109 put_current_path ();
1110 break;
1111 case CK_PutCurrentLink:
1112 put_current_link ();
1113 break;
1114 case CK_PutCurrentTagged:
1115 put_current_tagged ();
1116 break;
1117 case CK_PutOtherPath:
1118 put_other_path ();
1119 break;
1120 case CK_PutOtherLink:
1121 put_other_link ();
1122 break;
1123 case CK_PutOtherTagged:
1124 put_other_tagged ();
1125 break;
1126 case CK_Delete:
1127 delete_cmd ();
1128 break;
1129 case CK_ScreenList:
1130 dialog_switch_list ();
1131 break;
1132 #ifdef USE_DIFF_VIEW
1133 case CK_CompareFiles:
1134 diff_view_cmd ();
1135 break;
1136 #endif
1137 case CK_OptionsDisplayBits:
1138 display_bits_box ();
1139 break;
1140 case CK_Edit:
1141 edit_cmd ();
1142 break;
1143 #ifdef USE_INTERNAL_EDIT
1144 case CK_EditForceInternal:
1145 edit_cmd_force_internal ();
1146 break;
1147 #endif
1148 case CK_EditExtensionsFile:
1149 ext_cmd ();
1150 break;
1151 case CK_EditFileHighlightFile:
1152 edit_fhl_cmd ();
1153 break;
1154 case CK_EditUserMenu:
1155 edit_mc_menu_cmd ();
1156 break;
1157 case CK_LinkSymbolicEdit:
1158 edit_symlink_cmd ();
1159 break;
1160 case CK_ExternalPanelize:
1161 external_panelize ();
1162 break;
1163 case CK_Filter:
1164 filter_cmd ();
1165 break;
1166 case CK_ViewFiltered:
1167 view_filtered_cmd ();
1168 break;
1169 case CK_Find:
1170 find_cmd ();
1171 break;
1172 #ifdef ENABLE_VFS_FISH
1173 case CK_ConnectFish:
1174 fishlink_cmd ();
1175 break;
1176 #endif
1177 #ifdef ENABLE_VFS_FTP
1178 case CK_ConnectFtp:
1179 ftplink_cmd ();
1180 break;
1181 #endif
1182 #ifdef ENABLE_VFS_SMB
1183 case CK_ConnectSmb:
1184 smblink_cmd ();
1185 break;
1186 #endif /* ENABLE_VFS_SMB */
1187 case CK_Panelize:
1188 cd_panelize_cmd ();
1189 break;
1190 case CK_Help:
1191 help_cmd ();
1192 break;
1193 case CK_History:
1194 /* show the history of command line widget */
1195 send_message (&cmdline->widget, WIDGET_COMMAND, CK_History);
1196 break;
1197 case CK_PanelInfo:
1198 if (sender == (Widget *) the_menubar)
1199 info_cmd (); /* menu */
1200 else
1201 info_cmd_no_menu (); /* shortcut or buttonbar */
1202 break;
1203 #ifdef ENABLE_BACKGROUND
1204 case CK_Jobs:
1205 jobs_cmd ();
1206 break;
1207 #endif
1208 case CK_OptionsLayout:
1209 layout_box ();
1210 break;
1211 case CK_LearnKeys:
1212 learn_keys ();
1213 break;
1214 case CK_Link:
1215 link_cmd (LINK_HARDLINK);
1216 break;
1217 case CK_PanelListing:
1218 listing_cmd ();
1219 break;
1220 #ifdef LISTMODE_EDITOR
1221 case CK_ListMode:
1222 listmode_cmd ();
1223 break;
1224 #endif
1225 case CK_Menu:
1226 menu_cmd ();
1227 break;
1228 case CK_MenuLastSelected:
1229 menu_last_selected_cmd ();
1230 break;
1231 case CK_MakeDir:
1232 mkdir_cmd ();
1233 break;
1234 case CK_OptionsPanel:
1235 panel_options_box ();
1236 break;
1237 #ifdef HAVE_CHARSET
1238 case CK_SelectCodepage:
1239 encoding_cmd ();
1240 break;
1241 #endif
1242 case CK_CdQuick:
1243 quick_cd_cmd ();
1244 break;
1245 case CK_HotList:
1246 hotlist_cmd ();
1247 break;
1248 case CK_PanelQuickView:
1249 if (sender == (Widget *) the_menubar)
1250 quick_view_cmd (); /* menu */
1251 else
1252 quick_cmd_no_menu (); /* shortcut or buttonabr */
1253 break;
1254 case CK_QuitQuiet:
1255 quiet_quit_cmd ();
1256 break;
1257 case CK_Quit:
1258 quit_cmd ();
1259 break;
1260 case CK_LinkSymbolicRelative:
1261 link_cmd (LINK_SYMLINK_RELATIVE);
1262 break;
1263 case CK_Move:
1264 rename_cmd ();
1265 break;
1266 case CK_Reread:
1267 reread_cmd ();
1268 break;
1269 #ifdef ENABLE_VFS
1270 case CK_VfsList:
1271 vfs_list ();
1272 break;
1273 #endif
1274 case CK_SelectInvert:
1275 select_invert_cmd ();
1276 break;
1277 case CK_SaveSetup:
1278 save_setup_cmd ();
1279 break;
1280 case CK_Select:
1281 select_cmd ();
1282 break;
1283 case CK_Shell:
1284 view_other_cmd ();
1285 break;
1286 case CK_DirSize:
1287 smart_dirsize_cmd ();
1288 break;
1289 case CK_Sort:
1290 sort_cmd ();
1291 break;
1292 case CK_ExtendedKeyMap:
1293 ctl_x_cmd ();
1294 break;
1295 case CK_Suspend:
1296 mc_event_raise (MCEVENT_GROUP_CORE, "suspend", NULL);
1297 break;
1298 case CK_Swap:
1299 swap_cmd ();
1300 break;
1301 case CK_LinkSymbolic:
1302 link_cmd (LINK_SYMLINK_ABSOLUTE);
1303 break;
1304 case CK_PanelListingSwitch:
1305 toggle_listing_cmd ();
1306 break;
1307 case CK_ShowHidden:
1308 toggle_show_hidden ();
1309 break;
1310 case CK_SplitVertHoriz:
1311 toggle_panels_split ();
1312 break;
1313 case CK_PanelTree:
1314 panel_tree_cmd ();
1315 break;
1316 case CK_Tree:
1317 treebox_cmd ();
1318 break;
1319 #ifdef ENABLE_VFS_UNDELFS
1320 case CK_Undelete:
1321 undelete_cmd ();
1322 break;
1323 #endif
1324 case CK_Unselect:
1325 unselect_cmd ();
1326 break;
1327 case CK_UserMenu:
1328 user_file_menu_cmd ();
1329 break;
1330 case CK_View:
1331 view_cmd ();
1332 break;
1333 case CK_ViewFile:
1334 view_file_cmd ();
1335 break;
1336 case CK_Cancel:
1337 /* don't close panels due to SIGINT */
1338 break;
1339 default:
1340 res = MSG_NOT_HANDLED;
1343 return res;
1346 /* --------------------------------------------------------------------------------------------- */
1348 static cb_ret_t
1349 midnight_callback (Dlg_head * h, Widget * sender, dlg_msg_t msg, int parm, void *data)
1351 unsigned long command;
1353 switch (msg)
1355 case DLG_INIT:
1356 panel_init ();
1357 setup_panels ();
1358 return MSG_HANDLED;
1360 case DLG_DRAW:
1361 load_hint (1);
1362 /* We handle the special case of the output lines */
1363 if (mc_global.tty.console_flag != '\0' && output_lines)
1364 show_console_contents (output_start_y,
1365 LINES - output_lines - mc_global.keybar_visible -
1366 1, LINES - mc_global.keybar_visible - 1);
1367 return MSG_HANDLED;
1369 case DLG_RESIZE:
1370 setup_panels ();
1371 menubar_arrange (the_menubar);
1372 return MSG_HANDLED;
1374 case DLG_IDLE:
1375 /* We only need the first idle event to show user menu after start */
1376 set_idle_proc (h, 0);
1378 if (boot_current_is_left)
1379 dlg_select_widget (get_panel_widget (0));
1380 else
1381 dlg_select_widget (get_panel_widget (1));
1383 if (auto_menu)
1384 midnight_execute_cmd (NULL, CK_UserMenu);
1385 return MSG_HANDLED;
1387 case DLG_KEY:
1388 if (ctl_x_map_enabled)
1390 ctl_x_map_enabled = FALSE;
1391 command = keybind_lookup_keymap_command (main_x_map, parm);
1392 if (command != CK_IgnoreKey)
1393 return midnight_execute_cmd (NULL, command);
1396 /* FIXME: should handle all menu shortcuts before this point */
1397 if (the_menubar->is_active)
1398 return MSG_NOT_HANDLED;
1400 if (parm == '\t')
1401 input_free_completions (cmdline);
1403 if (parm == '\n')
1405 size_t i;
1407 for (i = 0; cmdline->buffer[i] != '\0' &&
1408 (cmdline->buffer[i] == ' ' || cmdline->buffer[i] == '\t'); i++)
1411 if (cmdline->buffer[i] != '\0')
1413 send_message ((Widget *) cmdline, WIDGET_KEY, parm);
1414 return MSG_HANDLED;
1417 input_insert (cmdline, "", FALSE);
1418 cmdline->point = 0;
1421 /* Ctrl-Enter and Alt-Enter */
1422 if (((parm & ~(KEY_M_CTRL | KEY_M_ALT)) == '\n') && (parm & (KEY_M_CTRL | KEY_M_ALT)))
1424 put_prog_name ();
1425 return MSG_HANDLED;
1428 /* Ctrl-Shift-Enter */
1429 if (parm == (KEY_M_CTRL | KEY_M_SHIFT | '\n'))
1431 put_current_path ();
1432 put_prog_name ();
1433 return MSG_HANDLED;
1436 if ((!mc_global.tty.alternate_plus_minus
1437 || !(mc_global.tty.console_flag != '\0' || mc_global.tty.xterm_flag)) && !quote
1438 && !current_panel->searching)
1440 if (!only_leading_plus_minus)
1442 /* Special treatement, since the input line will eat them */
1443 if (parm == '+')
1445 select_cmd ();
1446 return MSG_HANDLED;
1449 if (parm == '\\' || parm == '-')
1451 unselect_cmd ();
1452 return MSG_HANDLED;
1455 if (parm == '*')
1457 select_invert_cmd ();
1458 return MSG_HANDLED;
1461 else if (!command_prompt || !cmdline->buffer[0])
1463 /* Special treatement '+', '-', '\', '*' only when this is
1464 * first char on input line
1467 if (parm == '+')
1469 select_cmd ();
1470 return MSG_HANDLED;
1473 if (parm == '\\' || parm == '-')
1475 unselect_cmd ();
1476 return MSG_HANDLED;
1479 if (parm == '*')
1481 select_invert_cmd ();
1482 return MSG_HANDLED;
1486 return MSG_NOT_HANDLED;
1488 case DLG_HOTKEY_HANDLED:
1489 if ((get_current_type () == view_listing) && current_panel->searching)
1491 current_panel->dirty = 1; /* FIXME: unneeded? */
1492 send_message ((Widget *) current_panel, WIDGET_COMMAND, CK_SearchStop);
1494 return MSG_HANDLED;
1496 case DLG_UNHANDLED_KEY:
1498 cb_ret_t v = MSG_NOT_HANDLED;
1500 if (ctl_x_map_enabled)
1502 ctl_x_map_enabled = FALSE;
1503 command = keybind_lookup_keymap_command (main_x_map, parm);
1505 else
1506 command = keybind_lookup_keymap_command (main_map, parm);
1508 if (command != CK_IgnoreKey)
1509 v = midnight_execute_cmd (NULL, command);
1511 if (v == MSG_NOT_HANDLED && command_prompt)
1512 v = send_message ((Widget *) cmdline, WIDGET_KEY, parm);
1514 return v;
1517 case DLG_POST_KEY:
1518 if (!the_menubar->is_active)
1519 update_dirty_panels ();
1520 return MSG_HANDLED;
1522 case DLG_ACTION:
1523 /* shortcut */
1524 if (sender == NULL)
1525 return midnight_execute_cmd (NULL, parm);
1526 /* message from menu */
1527 if (sender == (Widget *) the_menubar)
1528 return midnight_execute_cmd (sender, parm);
1529 /* message from buttonbar */
1530 if (sender == (Widget *) the_bar)
1532 if (data != NULL)
1533 return send_message ((Widget *) data, WIDGET_COMMAND, parm);
1534 return midnight_execute_cmd (sender, parm);
1536 return MSG_NOT_HANDLED;
1538 case DLG_END:
1539 panel_deinit ();
1540 return MSG_HANDLED;
1542 default:
1543 return default_dlg_callback (h, sender, msg, parm, data);
1547 /* --------------------------------------------------------------------------------------------- */
1548 /*** public functions ****************************************************************************/
1549 /* --------------------------------------------------------------------------------------------- */
1551 void
1552 update_menu (void)
1554 menu_set_name (left_menu, panels_layout.horizontal_split ? _("&Above") : _("&Left"));
1555 menu_set_name (right_menu, panels_layout.horizontal_split ? _("&Below") : _("&Right"));
1556 menubar_arrange (the_menubar);
1557 menubar_set_visible (the_menubar, menubar_visible);
1560 void
1561 midnight_set_buttonbar (WButtonBar * b)
1563 buttonbar_set_label (b, 1, Q_ ("ButtonBar|Help"), main_map, NULL);
1564 buttonbar_set_label (b, 2, Q_ ("ButtonBar|Menu"), main_map, NULL);
1565 buttonbar_set_label (b, 3, Q_ ("ButtonBar|View"), main_map, NULL);
1566 buttonbar_set_label (b, 4, Q_ ("ButtonBar|Edit"), main_map, NULL);
1567 buttonbar_set_label (b, 5, Q_ ("ButtonBar|Copy"), main_map, NULL);
1568 buttonbar_set_label (b, 6, Q_ ("ButtonBar|RenMov"), main_map, NULL);
1569 buttonbar_set_label (b, 7, Q_ ("ButtonBar|Mkdir"), main_map, NULL);
1570 buttonbar_set_label (b, 8, Q_ ("ButtonBar|Delete"), main_map, NULL);
1571 buttonbar_set_label (b, 9, Q_ ("ButtonBar|PullDn"), main_map, NULL);
1572 buttonbar_set_label (b, 10, Q_ ("ButtonBar|Quit"), main_map, NULL);
1575 /* --------------------------------------------------------------------------------------------- */
1577 * Load new hint and display it.
1578 * IF force is not 0, ignore the timeout.
1581 void
1582 load_hint (gboolean force)
1584 char *hint;
1586 if (the_hint->widget.owner == NULL)
1587 return;
1589 if (!mc_global.message_visible)
1591 label_set_text (the_hint, NULL);
1592 return;
1595 hint = get_random_hint (force);
1597 if (hint != NULL)
1599 if (*hint != '\0')
1600 set_hintbar (hint);
1601 g_free (hint);
1603 else
1605 char text[BUF_SMALL];
1607 g_snprintf (text, sizeof (text), _("GNU Midnight Commander %s\n"), VERSION);
1608 set_hintbar (text);
1612 /* --------------------------------------------------------------------------------------------- */
1614 void
1615 change_panel (void)
1617 input_free_completions (cmdline);
1618 dlg_one_down (midnight_dlg);
1621 /* --------------------------------------------------------------------------------------------- */
1623 /** Save current stat of directories to avoid reloading the panels
1624 * when no modifications have taken place
1626 void
1627 save_cwds_stat (void)
1629 if (panels_options.fast_reload)
1631 vfs_path_t *vpath;
1633 vpath = vfs_path_from_str (current_panel->cwd);
1634 mc_stat (vpath, &(current_panel->dir_stat));
1635 vfs_path_free (vpath);
1636 if (get_other_type () == view_listing)
1638 vpath = vfs_path_from_str (other_panel->cwd);
1639 mc_stat (vpath, &(other_panel->dir_stat));
1640 vfs_path_free (vpath);
1645 /* --------------------------------------------------------------------------------------------- */
1647 gboolean
1648 quiet_quit_cmd (void)
1650 print_last_revert = TRUE;
1651 return quit_cmd_internal (1);
1654 /* --------------------------------------------------------------------------------------------- */
1656 /** Run the main dialog that occupies the whole screen */
1657 gboolean
1658 do_nc (void)
1660 gboolean ret;
1662 dlg_colors_t midnight_colors;
1664 midnight_colors[DLG_COLOR_NORMAL] = mc_skin_color_get ("dialog", "_default_");
1665 midnight_colors[DLG_COLOR_FOCUS] = mc_skin_color_get ("dialog", "focus");
1666 midnight_colors[DLG_COLOR_HOT_NORMAL] = mc_skin_color_get ("dialog", "hotnormal");
1667 midnight_colors[DLG_COLOR_HOT_FOCUS] = mc_skin_color_get ("dialog", "hotfocus");
1668 midnight_colors[DLG_COLOR_TITLE] = mc_skin_color_get ("dialog", "title");
1670 #ifdef USE_INTERNAL_EDIT
1671 edit_stack_init ();
1672 #endif
1674 midnight_dlg = create_dlg (FALSE, 0, 0, LINES, COLS, midnight_colors, midnight_callback,
1675 "[main]", NULL, DLG_WANT_IDLE);
1677 if (mc_global.mc_run_mode == MC_RUN_FULL)
1678 setup_mc ();
1679 else
1680 setup_dummy_mc ();
1682 /* Check if we were invoked as an editor or file viewer */
1683 if (mc_global.mc_run_mode != MC_RUN_FULL)
1684 ret = mc_maybe_editor_or_viewer ();
1685 else
1687 create_panels_and_run_mc ();
1688 ret = TRUE;
1690 /* destroy_dlg destroys even current_panel->cwd, so we have to save a copy :) */
1691 if (mc_args__last_wd_file != NULL && vfs_current_is_local ())
1692 last_wd_string = g_strdup (current_panel->cwd);
1694 /* don't handle VFS timestamps for dirs opened in panels */
1695 mc_event_destroy (MCEVENT_GROUP_CORE, "vfs_timestamp");
1697 clean_dir (&panelized_panel.list, panelized_panel.count);
1700 /* Program end */
1701 mc_global.midnight_shutdown = TRUE;
1702 dialog_switch_shutdown ();
1703 done_mc ();
1704 destroy_dlg (midnight_dlg);
1705 current_panel = NULL;
1707 #ifdef USE_INTERNAL_EDIT
1708 edit_stack_free ();
1709 #endif
1711 if ((quit & SUBSHELL_EXIT) == 0)
1712 clr_scr ();
1714 return ret;
1717 /* --------------------------------------------------------------------------------------------- */