Ticket #3913: implement safe file overwrite.
[midnight-commander.git] / src / filemanager / layout.c
blobb14973efe01299f19a2dae09306f19f5d7db9360
1 /*
2 Panel layout module for the Midnight Commander
4 Copyright (C) 1995-2018
5 Free Software Foundation, Inc.
7 Written by:
8 Janne Kukonlehto, 1995
9 Miguel de Icaza, 1995
10 Andrew Borodin <aborodin@vmail.ru>, 2011, 2012, 2013
11 Slava Zanko <slavazanko@gmail.com>, 2013
12 Avi Kelman <patcherton.fixesthings@gmail.com>, 2013
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 layout.c
31 * \brief Source: panel layout module
34 #include <config.h>
36 #include <pwd.h> /* for username in xterm title */
37 #include <stdlib.h>
38 #include <stdio.h>
39 #include <string.h>
40 #include <sys/types.h>
41 #include <unistd.h>
43 #include "lib/global.h"
44 #include "lib/tty/tty.h"
45 #include "lib/skin.h"
46 #include "lib/tty/key.h"
47 #include "lib/tty/mouse.h"
48 #include "lib/mcconfig.h"
49 #include "lib/vfs/vfs.h" /* For _vfs_get_cwd () */
50 #include "lib/strutil.h"
51 #include "lib/widget.h"
52 #include "lib/event.h"
54 #include "src/consaver/cons.saver.h"
55 #include "src/viewer/mcviewer.h" /* The view widget */
56 #include "src/setup.h"
57 #ifdef ENABLE_SUBSHELL
58 #include "src/subshell/subshell.h"
59 #endif
61 #include "command.h"
62 #include "midnight.h"
63 #include "tree.h"
64 /* Needed for the extern declarations of integer parameters */
65 #include "dir.h"
66 #include "layout.h"
67 #include "info.h" /* The Info widget */
69 /*** global variables ****************************************************************************/
71 panels_layout_t panels_layout = {
72 /* Set if the panels are split horizontally */
73 .horizontal_split = 0,
75 /* vertical split */
76 .vertical_equal = 1,
77 .left_panel_size = 0,
79 /* horizontal split */
80 .horizontal_equal = 1,
81 .top_panel_size = 0
84 /* Controls the display of the rotating dash on the verbose mode */
85 gboolean nice_rotating_dash = TRUE;
87 /* The number of output lines shown (if available) */
88 int output_lines = 0;
90 /* Set if the command prompt is to be displayed */
91 gboolean command_prompt = TRUE;
93 /* Set if the main menu is visible */
94 int menubar_visible = 1;
96 /* Set to show current working dir in xterm window title */
97 gboolean xterm_title = TRUE;
99 /* Set to show free space on device assigned to current directory */
100 int free_space = 1;
102 /* The starting line for the output of the subprogram */
103 int output_start_y = 0;
105 int ok_to_refresh = 1;
107 /*** file scope macro definitions ****************************************************************/
109 /* The maximum number of views managed by the set_display_type routine */
110 /* Must be at least two (for current and other). Please note that until */
111 /* Janne gets around this, we will only manage two of them :-) */
112 #define MAX_VIEWS 2
114 /* Width 12 for a wee Quick (Hex) View */
115 #define MINWIDTH 12
116 #define MINHEIGHT 5
118 #define B_2LEFT B_USER
119 #define B_2RIGHT (B_USER + 1)
120 #define B_PLUS (B_USER + 2)
121 #define B_MINUS (B_USER + 3)
123 #define LAYOUT_OPTIONS_COUNT G_N_ELEMENTS (check_options)
125 /*** file scope type declarations ****************************************************************/
127 /*** file scope variables ************************************************************************/
129 static struct
131 panel_view_mode_t type;
132 Widget *widget;
133 char *last_saved_dir; /* last view_list working directory */
134 } panels[MAX_VIEWS] =
136 /* *INDENT-OFF* */
137 /* init MAX_VIEWS items */
138 { view_listing, NULL, NULL},
139 { view_listing, NULL, NULL}
140 /* *INDENT-ON* */
143 /* These variables are used to avoid updating the information unless */
144 /* we need it */
145 static panels_layout_t old_layout;
146 static int old_output_lines;
148 /* Internal variables */
149 static int equal_split;
150 static int _output_lines;
152 static int height;
154 static WRadio *radio_widget;
156 static struct
158 const char *text;
159 int *variable;
160 WCheck *widget;
161 } check_options[] =
163 /* *INDENT-OFF* */
164 { N_("&Equal split"), &equal_split, NULL },
165 { N_("&Menubar visible"), &menubar_visible, NULL },
166 { N_("Command &prompt"), &command_prompt, NULL },
167 { N_("&Keybar visible"), &mc_global.keybar_visible, NULL },
168 { N_("H&intbar visible"), &mc_global.message_visible, NULL },
169 { N_("&XTerm window title"), &xterm_title, NULL },
170 { N_("&Show free space"), &free_space, NULL }
171 /* *INDENT-ON* */
174 static const char *output_lines_label = NULL;
175 static int output_lines_label_len;
177 static WButton *bleft_widget, *bright_widget;
179 /*** file scope functions ************************************************************************/
180 /* --------------------------------------------------------------------------------------------- */
182 /* don't use max() macro to avoid double call of str_term_width1() in widget width calculation */
183 #undef max
185 static int
186 max (int a, int b)
188 return a > b ? a : b;
191 /* --------------------------------------------------------------------------------------------- */
193 static void
194 check_split (panels_layout_t * layout)
196 if (layout->horizontal_split)
198 if (layout->horizontal_equal)
199 layout->top_panel_size = height / 2;
200 else if (layout->top_panel_size < MINHEIGHT)
201 layout->top_panel_size = MINHEIGHT;
202 else if (layout->top_panel_size > height - MINHEIGHT)
203 layout->top_panel_size = height - MINHEIGHT;
205 else
207 if (layout->vertical_equal)
208 layout->left_panel_size = COLS / 2;
209 else if (layout->left_panel_size < MINWIDTH)
210 layout->left_panel_size = MINWIDTH;
211 else if (layout->left_panel_size > COLS - MINWIDTH)
212 layout->left_panel_size = COLS - MINWIDTH;
216 /* --------------------------------------------------------------------------------------------- */
218 static void
219 update_split (const WDialog * h)
221 /* Check split has to be done before testing if it changed, since
222 it can change due to calling check_split() as well */
223 check_split (&panels_layout);
225 if (panels_layout.horizontal_split)
226 check_options[0].widget->state = panels_layout.horizontal_equal ? 1 : 0;
227 else
228 check_options[0].widget->state = panels_layout.vertical_equal ? 1 : 0;
229 widget_redraw (WIDGET (check_options[0].widget));
231 tty_setcolor (check_options[0].widget->state ? DISABLED_COLOR : COLOR_NORMAL);
233 widget_move (h, 6, 5);
234 if (panels_layout.horizontal_split)
235 tty_printf ("%03d", panels_layout.top_panel_size);
236 else
237 tty_printf ("%03d", panels_layout.left_panel_size);
239 widget_move (h, 6, 17);
240 if (panels_layout.horizontal_split)
241 tty_printf ("%03d", height - panels_layout.top_panel_size);
242 else
243 tty_printf ("%03d", COLS - panels_layout.left_panel_size);
245 widget_move (h, 6, 12);
246 tty_print_char ('=');
249 /* --------------------------------------------------------------------------------------------- */
251 static int
252 b_left_right_cback (WButton * button, int action)
254 (void) action;
256 if (button == bright_widget)
258 if (panels_layout.horizontal_split)
259 panels_layout.top_panel_size++;
260 else
261 panels_layout.left_panel_size++;
263 else
265 if (panels_layout.horizontal_split)
266 panels_layout.top_panel_size--;
267 else
268 panels_layout.left_panel_size--;
271 update_split (WIDGET (button)->owner);
272 layout_change ();
273 do_refresh ();
274 return 0;
277 /* --------------------------------------------------------------------------------------------- */
279 static int
280 bplus_cback (WButton * button, int action)
282 (void) button;
283 (void) action;
285 if (_output_lines < 99)
286 _output_lines++;
287 return 0;
290 /* --------------------------------------------------------------------------------------------- */
292 static int
293 bminus_cback (WButton * button, int action)
295 (void) button;
296 (void) action;
298 if (_output_lines > 0)
299 _output_lines--;
300 return 0;
303 /* --------------------------------------------------------------------------------------------- */
305 static cb_ret_t
306 layout_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *data)
308 WDialog *h = DIALOG (w);
310 switch (msg)
312 case MSG_DRAW:
313 /* When repainting the whole dialog (e.g. with C-l) we have to
314 update everything */
315 dlg_default_repaint (h);
317 old_output_lines = -1;
319 update_split (h);
321 if (old_output_lines != _output_lines)
323 old_output_lines = _output_lines;
324 tty_setcolor (mc_global.tty.console_flag != '\0' ? COLOR_NORMAL : DISABLED_COLOR);
325 widget_move (h, 9, 5);
326 tty_print_string (output_lines_label);
327 widget_move (h, 9, 5 + 3 + output_lines_label_len);
328 tty_printf ("%02d", _output_lines);
330 return MSG_HANDLED;
332 case MSG_POST_KEY:
334 int _menubar_visible, _command_prompt, _keybar_visible, _message_visible;
336 _menubar_visible = check_options[1].widget->state;
337 _command_prompt = check_options[2].widget->state;
338 _keybar_visible = check_options[3].widget->state;
339 _message_visible = check_options[4].widget->state;
341 if (mc_global.tty.console_flag != '\0')
343 int minimum;
345 if (_output_lines < 0)
346 _output_lines = 0;
347 height =
348 LINES - _keybar_visible - _command_prompt - _menubar_visible - _output_lines -
349 _message_visible;
350 minimum = MINHEIGHT * (1 + panels_layout.horizontal_split);
351 if (height < minimum)
353 _output_lines -= minimum - height;
354 height = minimum;
357 else
358 height =
359 LINES - _keybar_visible - _command_prompt - _menubar_visible - _output_lines -
360 _message_visible;
362 if (old_output_lines != _output_lines)
364 old_output_lines = _output_lines;
365 tty_setcolor (mc_global.tty.console_flag != '\0' ? COLOR_NORMAL : DISABLED_COLOR);
366 widget_move (h, 9, 5 + 3 + output_lines_label_len);
367 tty_printf ("%02d", _output_lines);
370 return MSG_HANDLED;
372 case MSG_NOTIFY:
373 if (sender == WIDGET (radio_widget))
375 if (panels_layout.horizontal_split != radio_widget->sel)
377 int eq;
379 panels_layout.horizontal_split = radio_widget->sel;
381 if (panels_layout.horizontal_split)
383 eq = panels_layout.horizontal_equal;
384 if (eq)
385 panels_layout.top_panel_size = height / 2;
387 else
389 eq = panels_layout.vertical_equal;
390 if (eq)
391 panels_layout.left_panel_size = COLS / 2;
394 widget_disable (WIDGET (bleft_widget), eq);
395 widget_disable (WIDGET (bright_widget), eq);
397 update_split (h);
398 layout_change ();
399 do_refresh ();
401 else
402 update_split (h);
404 return MSG_HANDLED;
407 if (sender == WIDGET (check_options[0].widget))
409 int eq;
411 if (panels_layout.horizontal_split)
413 panels_layout.horizontal_equal = check_options[0].widget->state;
414 eq = panels_layout.horizontal_equal;
416 else
418 panels_layout.vertical_equal = check_options[0].widget->state;
419 eq = panels_layout.vertical_equal;
422 widget_disable (WIDGET (bleft_widget), eq);
423 widget_disable (WIDGET (bright_widget), eq);
425 update_split (h);
426 layout_change ();
427 do_refresh ();
429 return MSG_HANDLED;
432 return MSG_NOT_HANDLED;
434 default:
435 return dlg_default_callback (w, sender, msg, parm, data);
439 /* --------------------------------------------------------------------------------------------- */
441 static WDialog *
442 init_layout (void)
444 WDialog *layout_dlg;
445 int l1 = 0, width;
446 int b1, b2, b;
447 size_t i;
449 const char *title1 = N_("Panel split");
450 const char *title2 = N_("Console output");
451 const char *title3 = N_("Other options");
453 const char *s_split_direction[2] = {
454 N_("&Vertical"),
455 N_("&Horizontal")
458 const char *ok_button = N_("&OK");
459 const char *cancel_button = N_("&Cancel");
461 output_lines_label = _("Output lines:");
463 /* save old params */
464 old_output_lines = -1;
465 _output_lines = output_lines;
467 #ifdef ENABLE_NLS
469 static gboolean i18n = FALSE;
471 title1 = _(title1);
472 title2 = _(title2);
473 title3 = _(title3);
475 i = G_N_ELEMENTS (s_split_direction);
476 while (i-- != 0)
477 s_split_direction[i] = _(s_split_direction[i]);
479 if (!i18n)
481 for (i = 0; i < (size_t) LAYOUT_OPTIONS_COUNT; i++)
482 check_options[i].text = _(check_options[i].text);
483 i18n = TRUE;
486 ok_button = _(ok_button);
487 cancel_button = _(cancel_button);
489 #endif
491 /* radiobuttons */
492 i = G_N_ELEMENTS (s_split_direction);
493 while (i-- != 0)
494 l1 = max (l1, str_term_width1 (s_split_direction[i]) + 7);
495 /* checkboxes */
496 for (i = 0; i < (size_t) LAYOUT_OPTIONS_COUNT; i++)
497 l1 = max (l1, str_term_width1 (check_options[i].text) + 7);
498 /* groupboxes */
499 l1 = max (l1, str_term_width1 (title1) + 4);
500 l1 = max (l1, str_term_width1 (title2) + 4);
501 l1 = max (l1, str_term_width1 (title3) + 4);
502 /* label + "+"/"-" buttons */
503 output_lines_label_len = str_term_width1 (output_lines_label);
504 l1 = max (l1, output_lines_label_len + 12);
505 /* buttons */
506 b1 = str_term_width1 (ok_button) + 5; /* default button */
507 b2 = str_term_width1 (cancel_button) + 3;
508 b = b1 + b2 + 1;
509 /* dialog width */
510 width = max (l1 * 2 + 7, b);
512 layout_dlg =
513 dlg_create (TRUE, 0, 0, 15, width, WPOS_CENTER, FALSE, dialog_colors, layout_callback, NULL,
514 "[Layout]", _("Layout"));
516 #define XTRACT(i) (*check_options[i].variable != 0), check_options[i].text
518 /* "Panel split" groupbox */
519 add_widget (layout_dlg, groupbox_new (2, 3, 6, l1, title1));
521 radio_widget = radio_new (3, 5, 2, s_split_direction);
522 radio_widget->sel = panels_layout.horizontal_split;
523 add_widget (layout_dlg, radio_widget);
525 check_options[0].widget = check_new (5, 5, XTRACT (0));
526 add_widget (layout_dlg, check_options[0].widget);
528 equal_split = panels_layout.horizontal_split ?
529 panels_layout.horizontal_equal : panels_layout.vertical_equal;
531 bleft_widget = button_new (6, 8, B_2LEFT, NARROW_BUTTON, "&<", b_left_right_cback);
532 widget_disable (WIDGET (bleft_widget), equal_split);
533 add_widget (layout_dlg, bleft_widget);
535 bright_widget = button_new (6, 14, B_2RIGHT, NARROW_BUTTON, "&>", b_left_right_cback);
536 widget_disable (WIDGET (bright_widget), equal_split);
537 add_widget (layout_dlg, bright_widget);
539 /* "Console output" groupbox */
541 widget_state_t disabled;
542 Widget *w;
544 disabled = mc_global.tty.console_flag != '\0' ? 0 : WST_DISABLED;
546 w = WIDGET (groupbox_new (8, 3, 3, l1, title2));
547 w->state |= disabled;
548 add_widget (layout_dlg, w);
550 w = WIDGET (button_new (9, output_lines_label_len + 5, B_PLUS,
551 NARROW_BUTTON, "&+", bplus_cback));
552 w->state |= disabled;
553 add_widget (layout_dlg, w);
555 w = WIDGET (button_new (9, output_lines_label_len + 5 + 5, B_MINUS,
556 NARROW_BUTTON, "&-", bminus_cback));
557 w->state |= disabled;
558 add_widget (layout_dlg, w);
561 /* "Other options" groupbox */
562 add_widget (layout_dlg, groupbox_new (2, 4 + l1, 9, l1, title3));
564 for (i = 1; i < (size_t) LAYOUT_OPTIONS_COUNT; i++)
566 check_options[i].widget = check_new (i + 2, 6 + l1, XTRACT (i));
567 add_widget (layout_dlg, check_options[i].widget);
570 #undef XTRACT
572 add_widget (layout_dlg, hline_new (11, -1, -1));
573 /* buttons */
574 add_widget (layout_dlg,
575 button_new (12, (width - b) / 2, B_ENTER, DEFPUSH_BUTTON, ok_button, 0));
576 add_widget (layout_dlg,
577 button_new (12, (width - b) / 2 + b1 + 1, B_CANCEL, NORMAL_BUTTON,
578 cancel_button, 0));
580 widget_select (WIDGET (radio_widget));
582 return layout_dlg;
585 /* --------------------------------------------------------------------------------------------- */
587 static void
588 panel_do_cols (int idx)
590 if (get_display_type (idx) == view_listing)
591 set_panel_formats (PANEL (panels[idx].widget));
592 else
593 panel_update_cols (panels[idx].widget, frame_half);
596 /* --------------------------------------------------------------------------------------------- */
597 /** Save current list_view widget directory into panel */
599 static Widget *
600 restore_into_right_dir_panel (int idx, Widget * from_widget)
602 WPanel *new_widget;
603 const char *saved_dir = panels[idx].last_saved_dir;
604 gboolean last_was_panel = (from_widget && get_display_type (idx) != view_listing);
605 const char *p_name = get_nth_panel_name (idx);
607 if (last_was_panel)
609 vfs_path_t *saved_dir_vpath;
611 saved_dir_vpath = vfs_path_from_str (saved_dir);
612 new_widget = panel_new_with_dir (p_name, saved_dir_vpath);
613 vfs_path_free (saved_dir_vpath);
615 else
616 new_widget = panel_new (p_name);
618 return WIDGET (new_widget);
621 /* --------------------------------------------------------------------------------------------- */
622 /*** public functions ****************************************************************************/
623 /* --------------------------------------------------------------------------------------------- */
625 void
626 layout_change (void)
628 setup_panels ();
629 /* update the main menu, because perhaps there was a change in the way
630 how the panel are split (horizontal/vertical),
631 and a change of menu visibility. */
632 update_menu ();
633 load_hint (TRUE);
636 /* --------------------------------------------------------------------------------------------- */
638 void
639 layout_box (void)
641 WDialog *layout_dlg;
643 old_layout = panels_layout;
644 old_output_lines = output_lines;
645 layout_dlg = init_layout ();
647 if (dlg_run (layout_dlg) == B_ENTER)
649 size_t i;
651 for (i = 0; i < (size_t) LAYOUT_OPTIONS_COUNT; i++)
652 if (check_options[i].widget != NULL)
653 *check_options[i].variable = check_options[i].widget->state;
655 output_lines = _output_lines;
657 else
659 /* restore layout */
660 panels_layout = old_layout;
661 output_lines = old_output_lines;
662 check_split (&panels_layout); /* FIXME: is it really needed? */
665 dlg_destroy (layout_dlg);
666 layout_change ();
667 do_refresh ();
670 /* --------------------------------------------------------------------------------------------- */
672 void
673 panel_update_cols (Widget * widget, panel_display_t frame_size)
675 int cols, origin;
677 /* don't touch panel if it is not in dialog yet */
678 /* if panel is not in dialog it is not in widgets list
679 and cannot be compared with get_panel_widget() result */
680 if (widget->owner == NULL)
681 return;
683 if (panels_layout.horizontal_split)
685 widget->cols = COLS;
686 return;
689 if (frame_size == frame_full)
691 cols = COLS;
692 origin = 0;
694 else if (widget == get_panel_widget (0))
696 cols = panels_layout.left_panel_size;
697 origin = 0;
699 else
701 cols = COLS - panels_layout.left_panel_size;
702 origin = panels_layout.left_panel_size;
705 widget->cols = cols;
706 widget->x = origin;
709 /* --------------------------------------------------------------------------------------------- */
711 void
712 setup_panels (void)
714 int start_y;
716 if (mc_global.tty.console_flag != '\0')
718 int minimum;
720 if (output_lines < 0)
721 output_lines = 0;
722 height =
723 LINES - mc_global.keybar_visible - (command_prompt ? 1 : 0) - menubar_visible -
724 output_lines - mc_global.message_visible;
725 minimum = MINHEIGHT * (1 + panels_layout.horizontal_split);
726 if (height < minimum)
728 output_lines -= minimum - height;
729 height = minimum;
732 else
734 height =
735 LINES - menubar_visible - (command_prompt ? 1 : 0) - mc_global.keybar_visible -
736 mc_global.message_visible;
739 check_split (&panels_layout);
740 start_y = menubar_visible;
742 /* update columns first... */
743 panel_do_cols (0);
744 panel_do_cols (1);
746 /* ...then rows and origin */
747 if (panels_layout.horizontal_split)
749 widget_set_size (panels[0].widget, start_y, 0, panels_layout.top_panel_size,
750 panels[0].widget->cols);
751 widget_set_size (panels[1].widget, start_y + panels_layout.top_panel_size, 0,
752 height - panels_layout.top_panel_size, panels[1].widget->cols);
754 else
756 widget_set_size (panels[0].widget, start_y, 0, height, panels[0].widget->cols);
757 widget_set_size (panels[1].widget, start_y, panels[1].widget->x, height,
758 panels[1].widget->cols);
761 widget_set_size (WIDGET (the_menubar), 0, 0, 1, COLS);
763 if (command_prompt)
765 #ifdef ENABLE_SUBSHELL
766 if (!mc_global.tty.use_subshell || !do_load_prompt ())
767 #endif
768 setup_cmdline ();
770 else
772 widget_set_size (WIDGET (cmdline), 0, 0, 0, 0);
773 widget_set_size (WIDGET (the_prompt), LINES, COLS, 0, 0);
776 widget_set_size (WIDGET (the_bar), LINES - 1, 0, mc_global.keybar_visible, COLS);
777 buttonbar_set_visible (the_bar, mc_global.keybar_visible);
779 /* Output window */
780 if (mc_global.tty.console_flag != '\0' && output_lines)
782 output_start_y = LINES - (command_prompt ? 1 : 0) - mc_global.keybar_visible - output_lines;
783 show_console_contents (output_start_y,
784 LINES - output_lines - mc_global.keybar_visible - 1,
785 LINES - mc_global.keybar_visible - 1);
788 if (mc_global.message_visible)
789 widget_set_size (WIDGET (the_hint), height + start_y, 0, 1, COLS);
790 else
791 widget_set_size (WIDGET (the_hint), 0, 0, 0, 0);
793 update_xterm_title_path ();
796 /* --------------------------------------------------------------------------------------------- */
798 void
799 panels_split_equal (void)
801 if (panels_layout.horizontal_split)
802 panels_layout.horizontal_equal = TRUE;
803 else
804 panels_layout.vertical_equal = TRUE;
806 layout_change ();
807 do_refresh ();
810 /* --------------------------------------------------------------------------------------------- */
812 void
813 panels_split_more (void)
815 if (panels_layout.horizontal_split)
817 panels_layout.horizontal_equal = FALSE;
818 panels_layout.top_panel_size++;
820 else
822 panels_layout.vertical_equal = FALSE;
823 panels_layout.left_panel_size++;
826 layout_change ();
829 /* --------------------------------------------------------------------------------------------- */
831 void
832 panels_split_less (void)
834 if (panels_layout.horizontal_split)
836 panels_layout.horizontal_equal = FALSE;
837 panels_layout.top_panel_size--;
839 else
841 panels_layout.vertical_equal = FALSE;
842 panels_layout.left_panel_size--;
845 layout_change ();
848 /* --------------------------------------------------------------------------------------------- */
851 void
852 setup_cmdline (void)
854 int prompt_width;
855 int y;
856 char *tmp_prompt = (char *) mc_prompt;
858 #ifdef ENABLE_SUBSHELL
859 if (mc_global.tty.use_subshell)
861 tmp_prompt = g_string_free (subshell_prompt, FALSE);
862 (void) strip_ctrl_codes (tmp_prompt);
864 #endif
866 prompt_width = str_term_width1 (tmp_prompt);
868 /* Check for prompts too big */
869 if (COLS > 8 && prompt_width > COLS - 8)
871 int prompt_len;
873 prompt_width = COLS - 8;
874 prompt_len = str_offset_to_pos (tmp_prompt, prompt_width);
875 tmp_prompt[prompt_len] = '\0';
878 #ifdef ENABLE_SUBSHELL
879 if (mc_global.tty.use_subshell)
881 subshell_prompt = g_string_new (tmp_prompt);
882 g_free (tmp_prompt);
883 mc_prompt = subshell_prompt->str;
885 #endif
887 y = LINES - 1 - mc_global.keybar_visible;
889 widget_set_size (WIDGET (the_prompt), y, 0, 1, prompt_width);
890 label_set_text (the_prompt, mc_prompt);
891 widget_set_size (WIDGET (cmdline), y, prompt_width, 1, COLS - prompt_width);
894 /* --------------------------------------------------------------------------------------------- */
896 void
897 use_dash (gboolean flag)
899 if (flag)
900 ok_to_refresh++;
901 else
902 ok_to_refresh--;
905 /* --------------------------------------------------------------------------------------------- */
907 void
908 set_hintbar (const char *str)
910 label_set_text (the_hint, str);
911 if (ok_to_refresh > 0)
912 mc_refresh ();
915 /* --------------------------------------------------------------------------------------------- */
917 void
918 rotate_dash (gboolean show)
920 Widget *w = WIDGET (midnight_dlg);
922 if (!nice_rotating_dash || (ok_to_refresh <= 0))
923 return;
925 widget_move (w, (menubar_visible != 0) ? 1 : 0, w->cols - 1);
926 tty_setcolor (NORMAL_COLOR);
928 if (!show)
929 tty_print_alt_char (ACS_URCORNER, FALSE);
930 else
932 static const char rotating_dash[4] = "|/-\\";
933 static size_t pos = 0;
935 tty_print_char (rotating_dash[pos]);
936 pos = (pos + 1) % sizeof (rotating_dash);
939 mc_refresh ();
942 /* --------------------------------------------------------------------------------------------- */
944 const char *
945 get_nth_panel_name (int num)
947 if (!num)
948 return "New Left Panel";
949 else if (num == 1)
950 return "New Right Panel";
951 else
953 static char buffer[BUF_SMALL];
955 g_snprintf (buffer, sizeof (buffer), "%ith Panel", num);
956 return buffer;
960 /* --------------------------------------------------------------------------------------------- */
961 /* I wonder if I should start to use the folding mode than Dugan uses */
962 /* */
963 /* This is the centralized managing of the panel display types */
964 /* This routine takes care of destroying and creating new widgets */
965 /* Please note that it could manage MAX_VIEWS, not just left and right */
966 /* Currently nothing in the code takes advantage of this and has hard- */
967 /* coded values for two panels only */
969 /* Set the num-th panel to the view type: type */
970 /* This routine also keeps at least one WPanel object in the screen */
971 /* since a lot of routines depend on the current_panel variable */
973 void
974 set_display_type (int num, panel_view_mode_t type)
976 int x = 0, y = 0, cols = 0, lines = 0;
977 unsigned int the_other = 0; /* Index to the other panel */
978 const char *file_name = NULL; /* For Quick view */
979 Widget *new_widget = NULL, *old_widget = NULL;
980 panel_view_mode_t old_type = view_listing;
981 WPanel *the_other_panel = NULL;
983 if (num >= MAX_VIEWS)
985 fprintf (stderr, "Cannot allocate more that %d views\n", MAX_VIEWS);
986 abort ();
988 /* Check that we will have a WPanel * at least */
989 if (type != view_listing)
991 the_other = num == 0 ? 1 : 0;
993 if (panels[the_other].type != view_listing)
994 return;
997 /* Get rid of it */
998 if (panels[num].widget != NULL)
1000 Widget *w = panels[num].widget;
1001 WPanel *panel = PANEL (w);
1003 x = w->x;
1004 y = w->y;
1005 cols = w->cols;
1006 lines = w->lines;
1007 old_widget = w;
1008 old_type = panels[num].type;
1010 if (old_type == view_listing && panel->frame_size == frame_full && type != view_listing)
1012 if (panels_layout.horizontal_split)
1014 cols = COLS;
1015 x = 0;
1017 else
1019 cols = COLS - panels_layout.left_panel_size;
1020 if (num == 1)
1021 x = panels_layout.left_panel_size;
1026 /* Restoring saved path from panels.ini for nonlist panel */
1027 /* when it's first creation (for example view_info) */
1028 if (old_widget == NULL && type != view_listing)
1029 panels[num].last_saved_dir = _vfs_get_cwd ();
1031 switch (type)
1033 case view_nothing:
1034 case view_listing:
1035 new_widget = restore_into_right_dir_panel (num, old_widget);
1036 widget_set_size (new_widget, y, x, lines, cols);
1037 break;
1039 case view_info:
1040 new_widget = WIDGET (info_new (y, x, lines, cols));
1041 break;
1043 case view_tree:
1044 new_widget = WIDGET (tree_new (y, x, lines, cols, TRUE));
1045 break;
1047 case view_quick:
1048 new_widget = WIDGET (mcview_new (y, x, lines, cols, TRUE));
1049 the_other_panel = PANEL (panels[the_other].widget);
1050 if (the_other_panel != NULL)
1051 file_name = the_other_panel->dir.list[the_other_panel->selected].fname;
1052 else
1053 file_name = "";
1055 mcview_load ((WView *) new_widget, 0, file_name, 0, 0, 0);
1056 break;
1058 default:
1059 break;
1062 if (type != view_listing)
1063 /* Must save dir, for restoring after change type to */
1064 /* view_listing */
1065 save_panel_dir (num);
1067 panels[num].type = type;
1068 panels[num].widget = new_widget;
1070 /* We use replace to keep the circular list of the dialog in the */
1071 /* same state. Maybe we could just kill it and then replace it */
1072 if ((midnight_dlg != NULL) && (old_widget != NULL))
1074 if (old_type == view_listing)
1076 /* save and write directory history of panel
1077 * ... and other histories of midnight_dlg */
1078 dlg_save_history (midnight_dlg);
1081 widget_replace (old_widget, new_widget);
1084 if (type == view_listing)
1086 WPanel *panel = PANEL (new_widget);
1088 /* if existing panel changed type to view_listing, then load history */
1089 if (old_widget != NULL)
1091 ev_history_load_save_t event_data = { NULL, new_widget };
1093 mc_event_raise (midnight_dlg->event_group, MCEVENT_HISTORY_LOAD, &event_data);
1096 if (num == 0)
1097 left_panel = panel;
1098 else
1099 right_panel = panel;
1101 /* forced update format after set new sizes */
1102 set_panel_formats (panel);
1105 if (type == view_tree)
1106 the_tree = (WTree *) new_widget;
1108 /* Prevent current_panel's value from becoming invalid.
1109 * It's just a quick hack to prevent segfaults. Comment out and
1110 * try following:
1111 * - select left panel
1112 * - invoke menue left/tree
1113 * - as long as you stay in the left panel almost everything that uses
1114 * current_panel causes segfault, e.g. C-Enter, C-x c, ...
1116 if ((type != view_listing) && (current_panel == PANEL (old_widget)))
1117 current_panel = num == 0 ? right_panel : left_panel;
1119 g_free (old_widget);
1122 /* --------------------------------------------------------------------------------------------- */
1123 /** This routine is deeply sticked to the two panels idea.
1124 What should it do in more panels. ANSWER - don't use it
1125 in any multiple panels environment. */
1127 void
1128 swap_panels (void)
1130 WPanel *panel1, *panel2;
1131 Widget *tmp_widget;
1133 panel1 = PANEL (panels[0].widget);
1134 panel2 = PANEL (panels[1].widget);
1136 if (panels[0].type == view_listing && panels[1].type == view_listing &&
1137 !mc_config_get_bool (mc_global.main_config, CONFIG_PANELS_SECTION, "simple_swap", FALSE))
1139 WPanel panel;
1141 #define panelswap(x) panel.x = panel1->x; panel1->x = panel2->x; panel2->x = panel.x;
1142 /* Change content and related stuff */
1143 panelswap (dir);
1144 panelswap (active);
1145 panelswap (cwd_vpath);
1146 panelswap (lwd_vpath);
1147 panelswap (marked);
1148 panelswap (dirs_marked);
1149 panelswap (total);
1150 panelswap (top_file);
1151 panelswap (selected);
1152 panelswap (is_panelized);
1153 panelswap (dir_stat);
1154 #undef panelswap
1156 panel1->searching = FALSE;
1157 panel2->searching = FALSE;
1159 if (current_panel == panel1)
1160 current_panel = panel2;
1161 else
1162 current_panel = panel1;
1164 /* if sort options are different -> resort panels */
1165 if (memcmp (&panel1->sort_info, &panel2->sort_info, sizeof (dir_sort_options_t)) != 0)
1167 panel_re_sort (other_panel);
1168 panel_re_sort (current_panel);
1171 if (widget_is_active (panels[0].widget))
1172 widget_select (panels[1].widget);
1173 else if (widget_is_active (panels[1].widget))
1174 widget_select (panels[0].widget);
1176 else
1178 WPanel *tmp_panel;
1179 int x, y, cols, lines;
1180 int tmp_type;
1182 tmp_panel = right_panel;
1183 right_panel = left_panel;
1184 left_panel = tmp_panel;
1186 if (panels[0].type == view_listing)
1188 if (strcmp (panel1->panel_name, get_nth_panel_name (0)) == 0)
1190 g_free (panel1->panel_name);
1191 panel1->panel_name = g_strdup (get_nth_panel_name (1));
1194 if (panels[1].type == view_listing)
1196 if (strcmp (panel2->panel_name, get_nth_panel_name (1)) == 0)
1198 g_free (panel2->panel_name);
1199 panel2->panel_name = g_strdup (get_nth_panel_name (0));
1203 x = panels[0].widget->x;
1204 y = panels[0].widget->y;
1205 cols = panels[0].widget->cols;
1206 lines = panels[0].widget->lines;
1208 panels[0].widget->x = panels[1].widget->x;
1209 panels[0].widget->y = panels[1].widget->y;
1210 panels[0].widget->cols = panels[1].widget->cols;
1211 panels[0].widget->lines = panels[1].widget->lines;
1213 panels[1].widget->x = x;
1214 panels[1].widget->y = y;
1215 panels[1].widget->cols = cols;
1216 panels[1].widget->lines = lines;
1218 tmp_widget = panels[0].widget;
1219 panels[0].widget = panels[1].widget;
1220 panels[1].widget = tmp_widget;
1221 tmp_type = panels[0].type;
1222 panels[0].type = panels[1].type;
1223 panels[1].type = tmp_type;
1225 /* force update formats because of possible changed sizes */
1226 if (panels[0].type == view_listing)
1227 set_panel_formats (PANEL (panels[0].widget));
1228 if (panels[1].type == view_listing)
1229 set_panel_formats (PANEL (panels[1].widget));
1233 /* --------------------------------------------------------------------------------------------- */
1235 panel_view_mode_t
1236 get_display_type (int idx)
1238 return panels[idx].type;
1241 /* --------------------------------------------------------------------------------------------- */
1243 Widget *
1244 get_panel_widget (int idx)
1246 return panels[idx].widget;
1249 /* --------------------------------------------------------------------------------------------- */
1252 get_current_index (void)
1254 if (panels[0].widget == WIDGET (current_panel))
1255 return 0;
1256 else
1257 return 1;
1260 /* --------------------------------------------------------------------------------------------- */
1263 get_other_index (void)
1265 return !get_current_index ();
1268 /* --------------------------------------------------------------------------------------------- */
1270 WPanel *
1271 get_other_panel (void)
1273 return PANEL (get_panel_widget (get_other_index ()));
1276 /* --------------------------------------------------------------------------------------------- */
1277 /** Returns the view type for the current panel/view */
1279 panel_view_mode_t
1280 get_current_type (void)
1282 if (panels[0].widget == WIDGET (current_panel))
1283 return panels[0].type;
1284 else
1285 return panels[1].type;
1288 /* --------------------------------------------------------------------------------------------- */
1289 /** Returns the view type of the unselected panel */
1291 panel_view_mode_t
1292 get_other_type (void)
1294 if (panels[0].widget == WIDGET (current_panel))
1295 return panels[1].type;
1296 else
1297 return panels[0].type;
1300 /* --------------------------------------------------------------------------------------------- */
1301 /** Save current list_view widget directory into panel */
1303 void
1304 save_panel_dir (int idx)
1306 panel_view_mode_t type = get_display_type (idx);
1307 Widget *widget = get_panel_widget (idx);
1309 if ((type == view_listing) && (widget != NULL))
1311 WPanel *w = PANEL (widget);
1313 g_free (panels[idx].last_saved_dir); /* last path no needed */
1314 /* Because path can be nonlocal */
1315 panels[idx].last_saved_dir = g_strdup (vfs_path_as_str (w->cwd_vpath));
1319 /* --------------------------------------------------------------------------------------------- */
1320 /** Return working dir, if it's view_listing - cwd,
1321 but for other types - last_saved_dir */
1323 char *
1324 get_panel_dir_for (const WPanel * widget)
1326 int i;
1328 for (i = 0; i < MAX_VIEWS; i++)
1329 if (PANEL (get_panel_widget (i)) == widget)
1330 break;
1332 if (i >= MAX_VIEWS)
1333 return g_strdup (".");
1335 if (get_display_type (i) == view_listing)
1337 vfs_path_t *cwd_vpath;
1339 cwd_vpath = PANEL (get_panel_widget (i))->cwd_vpath;
1340 return g_strdup (vfs_path_as_str (cwd_vpath));
1343 return g_strdup (panels[i].last_saved_dir);
1346 /* --------------------------------------------------------------------------------------------- */
1348 #ifdef ENABLE_SUBSHELL
1349 gboolean
1350 do_load_prompt (void)
1352 gboolean ret = FALSE;
1354 if (!read_subshell_prompt ())
1355 return ret;
1357 /* Don't actually change the prompt if it's invisible */
1358 if (top_dlg != NULL && DIALOG (top_dlg->data) == midnight_dlg && command_prompt)
1360 setup_cmdline ();
1362 /* since the prompt has changed, and we are called from one of the
1363 * tty_get_event channels, the prompt updating does not take place
1364 * automatically: force a cursor update and a screen refresh
1366 update_cursor (midnight_dlg);
1367 mc_refresh ();
1368 ret = TRUE;
1370 update_subshell_prompt = TRUE;
1371 return ret;
1374 /* --------------------------------------------------------------------------------------------- */
1377 load_prompt (int fd, void *unused)
1379 (void) fd;
1380 (void) unused;
1382 do_load_prompt ();
1383 return 0;
1385 #endif /* ENABLE_SUBSHELL */
1387 /* --------------------------------------------------------------------------------------------- */
1389 void
1390 title_path_prepare (char **path, char **login)
1392 char host[BUF_TINY];
1393 struct passwd *pw = NULL;
1394 int res = 0;
1396 *path =
1397 vfs_path_to_str_flags (current_panel->cwd_vpath, 0, VPF_STRIP_HOME | VPF_STRIP_PASSWORD);
1399 res = gethostname (host, sizeof (host));
1400 if (res != 0)
1401 host[0] = '\0';
1402 else
1403 host[sizeof (host) - 1] = '\0';
1405 pw = getpwuid (getuid ());
1406 if (pw != NULL)
1407 *login = g_strdup_printf ("%s@%s", pw->pw_name, host);
1408 else
1409 *login = g_strdup (host);
1412 /* --------------------------------------------------------------------------------------------- */
1414 /** Show current directory in the xterm title */
1415 void
1416 update_xterm_title_path (void)
1418 if (mc_global.tty.xterm_flag && xterm_title)
1420 char *p;
1421 char *path;
1422 char *login;
1424 title_path_prepare (&path, &login);
1426 p = g_strdup_printf ("mc [%s]:%s", login, path);
1427 g_free (login);
1428 g_free (path);
1430 fprintf (stdout, "\33]0;%s\7", str_term_form (p));
1431 g_free (p);
1433 if (!mc_global.tty.alternate_plus_minus)
1434 numeric_keypad_mode ();
1435 (void) fflush (stdout);
1439 /* --------------------------------------------------------------------------------------------- */