1 /* Panel layout module for the Midnight Commander
2 Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007, 2009 Free Software Foundation, Inc.
5 Written: 1995 Janne Kukonlehto
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 * \brief Source: panel layout module
34 #include <sys/types.h>
38 * If TIOCGWINSZ supported, make it available here, because window-
39 * resizing code depends on it...
41 #ifdef HAVE_SYS_IOCTL_H
42 # include <sys/ioctl.h>
51 #include "../src/tty/tty.h"
52 #include "../src/skin/skin.h"
53 #include "../src/tty/key.h"
54 #include "../src/tty/mouse.h"
55 #include "../src/tty/win.h" /* do_enter_ca_mode() */
57 #include "../src/mcconfig/mcconfig.h"
62 #include "main-widgets.h"
64 #include "subshell.h" /* For use_subshell and resize_subshell() */
68 #include "background.h" /* we_are_background */
69 /* Needed for the extern declarations of integer parameters */
71 #include "panel.h" /* The Panel widget */
72 #include "cons.saver.h"
74 #include "info.h" /* The Info widget */
75 #include "../src/viewer/mcviewer.h" /* The view widget */
77 #include "setup.h" /* For save_setup() */
78 #include "../vfs/vfs.h" /* For vfs_translate_url() */
80 /* Controls the display of the rotating dash on the verbose mode */
81 int nice_rotating_dash
= 1;
83 /* Set if the panels are split horizontally */
84 int horizontal_split
= 0;
86 /* Set if the window has changed it's size */
89 /* Set if the split is the same */
92 /* First panel size if the panel are not split equally */
93 int first_panel_size
= 0;
95 /* The number of output lines shown (if available) */
98 /* Set if the command prompt is to be displayed */
99 int command_prompt
= 1;
101 /* Set if the nice and useful keybar is visible */
102 int keybar_visible
= 1;
104 /* Set if the nice message (hint) bar is visible */
105 int message_visible
= 1;
107 /* Set to show current working dir in xterm window title */
110 /* Set to show free space on device assigned to current directory */
113 /* The starting line for the output of the subprogram */
114 int output_start_y
= 0;
116 /* The maximum number of views managed by the set_display_type routine */
117 /* Must be at least two (for current and other). Please note that until */
118 /* Janne gets around this, we will only manage two of them :-) */
124 char *last_saved_dir
; /* last view_list working directory */
125 } panels
[MAX_VIEWS
] = {
126 /* init MAX_VIEWS items */
127 { view_listing
, NULL
, NULL
},
128 { view_listing
, NULL
, NULL
}
131 /* These variables are used to avoid updating the information unless */
133 static int old_first_panel_size
;
134 static int old_horizontal_split
;
135 static int old_output_lines
;
137 /* Internal variables */
138 static int _horizontal_split
;
139 static int _equal_split
;
140 static int _first_panel_size
;
141 static int _menubar_visible
;
142 static int _output_lines
;
143 static int _command_prompt
;
144 static int _keybar_visible
;
145 static int _message_visible
;
146 static int _xterm_title
;
147 static int _free_space
;
148 static int _permission_mode
;
149 static int _filetype_mode
;
153 /* Width 12 for a wee Quick (Hex) View */
159 #define B_2LEFT B_USER
160 #define B_2RIGHT (B_USER + 1)
161 #define B_PLUS (B_USER + 2)
162 #define B_MINUS (B_USER + 3)
164 static Dlg_head
*layout_dlg
;
166 static const char *s_split_direction
[2] = {
171 static WRadio
*radio_widget
;
177 } check_options
[] = {
178 { N_("show free sp&Ace"), &free_space
, 0 },
179 { N_("&Xterm window title"), &xterm_title
, 0 },
180 { N_("h&Intbar visible"), &message_visible
, 0 },
181 { N_("&Keybar visible"), &keybar_visible
, 0 },
182 { N_("command &Prompt"), &command_prompt
, 0 },
183 { N_("show &Mini status"), &show_mini_info
, 0 },
184 { N_("menu&Bar visible"), &menubar_visible
, 0 },
185 { N_("&Equal split"), &equal_split
, 0 },
186 { N_("pe&Rmissions"), &permission_mode
, 0 },
187 { N_("&File types"), &filetype_mode
, 0 },
191 #define LAYOUT_OPTIONS_COUNT 10
192 #define HIGHLIGHT_OPTIONS_COUNT 2
193 #define SPLIT_OPTIONS_COUNT 1
194 #define OTHER_OPTIONS_COUNT 7
196 static gsize first_width
, second_width
;
197 static const char *output_lines_label
;
199 static WButton
*bleft_widget
, *bright_widget
;
201 static void _check_split (void)
203 if (_horizontal_split
){
205 _first_panel_size
= height
/ 2;
206 else if (_first_panel_size
< MINHEIGHT
)
207 _first_panel_size
= MINHEIGHT
;
208 else if (_first_panel_size
> height
- MINHEIGHT
)
209 _first_panel_size
= height
- MINHEIGHT
;
212 _first_panel_size
= COLS
/ 2;
213 else if (_first_panel_size
< MINWIDTH
)
214 _first_panel_size
= MINWIDTH
;
215 else if (_first_panel_size
> COLS
- MINWIDTH
)
216 _first_panel_size
= COLS
- MINWIDTH
;
220 static void update_split (void)
222 /* Check split has to be done before testing if it changed, since
223 it can change due to calling _check_split() as well*/
226 /* To avoid setting the cursor to the wrong place */
227 if ((old_first_panel_size
== _first_panel_size
) &&
228 (old_horizontal_split
== _horizontal_split
)){
232 old_first_panel_size
= _first_panel_size
;
233 old_horizontal_split
= _horizontal_split
;
235 tty_setcolor (COLOR_NORMAL
);
236 dlg_move (layout_dlg
, 6, 6);
237 tty_printf ("%03d", _first_panel_size
);
238 dlg_move (layout_dlg
, 6, 18);
239 if (_horizontal_split
)
240 tty_printf ("%03d", height
- _first_panel_size
);
242 tty_printf ("%03d", COLS
- _first_panel_size
);
245 static int b2left_cback (int action
)
250 /* Turn equal split off */
252 check_options
[7].widget
->state
= check_options
[7].widget
->state
& ~C_BOOL
;
253 dlg_select_widget (check_options
[7].widget
);
254 dlg_select_widget (bleft_widget
);
260 static int b2right_cback (int action
)
265 /* Turn equal split off */
267 check_options
[7].widget
->state
= check_options
[7].widget
->state
& ~C_BOOL
;
268 dlg_select_widget (check_options
[7].widget
);
269 dlg_select_widget (bright_widget
);
275 static int bplus_cback (int action
)
279 if (_output_lines
< 99)
284 static int bminus_cback (int action
)
288 if (_output_lines
> 0)
294 layout_callback (Dlg_head
*h
, Widget
*sender
,
295 dlg_msg_t msg
, int parm
, void *data
)
299 /*When repainting the whole dialog (e.g. with C-l) we have to
301 common_dialog_repaint (h
);
303 old_first_panel_size
= -1;
304 old_horizontal_split
= -1;
305 old_output_lines
= -1;
307 tty_setcolor (COLOR_HOT_NORMAL
);
310 tty_print_char ('=');
312 if (old_output_lines
!= _output_lines
){
313 old_output_lines
= _output_lines
;
314 tty_setcolor (COLOR_NORMAL
);
315 dlg_move (h
, LAYOUT_OPTIONS_COUNT
, 16 + first_width
);
316 tty_print_string (output_lines_label
);
317 dlg_move (h
, LAYOUT_OPTIONS_COUNT
, 10 + first_width
);
318 tty_printf ("%02d", _output_lines
);
324 _filetype_mode
= check_options
[9].widget
->state
& C_BOOL
;
325 _permission_mode
= check_options
[8].widget
->state
& C_BOOL
;
326 _equal_split
= check_options
[7].widget
->state
& C_BOOL
;
327 _menubar_visible
= check_options
[6].widget
->state
& C_BOOL
;
328 _command_prompt
= check_options
[5].widget
->state
& C_BOOL
;
329 _keybar_visible
= check_options
[3].widget
->state
& C_BOOL
;
330 _message_visible
= check_options
[2].widget
->state
& C_BOOL
;
331 _xterm_title
= check_options
[1].widget
->state
& C_BOOL
;
332 _free_space
= check_options
[0].widget
->state
& C_BOOL
;
335 if (_output_lines
< 0)
337 height
= LINES
- _keybar_visible
- _command_prompt
-
338 _menubar_visible
- _output_lines
- _message_visible
;
339 minimum
= MINHEIGHT
* (1 + _horizontal_split
);
340 if (height
< minimum
){
341 _output_lines
-= minimum
- height
;
345 height
= LINES
- _keybar_visible
- _command_prompt
-
346 _menubar_visible
- _output_lines
- _message_visible
;
348 if (_horizontal_split
!= radio_widget
->sel
){
349 _horizontal_split
= radio_widget
->sel
;
350 if (_horizontal_split
)
351 _first_panel_size
= height
/ 2;
353 _first_panel_size
= COLS
/ 2;
357 if (old_output_lines
!= _output_lines
){
358 old_output_lines
= _output_lines
;
359 tty_setcolor (COLOR_NORMAL
);
360 dlg_move (h
, LAYOUT_OPTIONS_COUNT
, 10 + first_width
);
361 tty_printf ("%02d", _output_lines
);
367 return default_dlg_callback (h
, sender
, msg
, parm
, data
);
374 static int i18n_layt_flag
= 0;
375 static int b1
, b2
, b3
;
376 int i
= sizeof (s_split_direction
) / sizeof (char *);
377 const char *ok_button
= _("&OK");
378 const char *cancel_button
= _("&Cancel");
379 const char *save_button
= _("&Save");
380 static const char *title1
, *title2
, *title3
;
382 if (!i18n_layt_flag
) {
385 first_width
= 19; /* length of line with '<' '>' buttons */
387 title1
= _(" Panel split ");
388 title2
= _(" Highlight... ");
389 title3
= _(" Other options ");
390 output_lines_label
= _("output lines");
393 s_split_direction
[i
] = _(s_split_direction
[i
]);
394 l1
= str_term_width1 (s_split_direction
[i
]) + 7;
395 if (l1
> first_width
)
399 for (i
= 0; i
< LAYOUT_OPTIONS_COUNT
; i
++) {
400 check_options
[i
].text
= _(check_options
[i
].text
);
401 l1
= str_term_width1 (check_options
[i
].text
) + 7;
402 if (l1
> first_width
)
406 l1
= str_term_width1 (title1
) + 1;
407 if (l1
> first_width
)
410 l1
= str_term_width1 (title2
) + 1;
411 if (l1
> first_width
)
414 second_width
= str_term_width1 (title3
) + 1;
415 for (i
= 0; i
< OTHER_OPTIONS_COUNT
; i
++) {
416 check_options
[i
].text
= _(check_options
[i
].text
);
417 l1
= str_term_width1 (check_options
[i
].text
) + 7;
418 if (l1
> second_width
)
422 l1
= str_term_width1 (output_lines_label
) + 13;
423 if (l1
> second_width
)
429 * To be completely correct, one need to check if the title
430 * does not exceed dialog length and total length of 3 buttons
431 * allows their placement in one row. But assuming this dialog
432 * is wide enough, I don't include such a tests.
434 * Now the last thing to do - properly space buttons...
436 l1
= 11 + str_term_width1 (ok_button
) /* 14 - all brackets and inner space */
437 + str_term_width1 (save_button
) /* notice: it is 3 char less because */
438 + str_term_width1 (cancel_button
); /* of '&' char in button text */
440 i
= (first_width
+ second_width
- l1
) / 4;
442 b2
= b1
+ str_term_width1 (ok_button
) + i
+ 6;
443 b3
= b2
+ str_term_width1 (save_button
) + i
+ 4;
449 create_dlg (0, 0, 15, first_width
+ second_width
+ 9,
450 dialog_colors
, layout_callback
, "[Layout]",
451 _("Layout"), DLG_CENTER
| DLG_REVERSE
);
453 add_widget (layout_dlg
, groupbox_new (2, 4, 6, first_width
, title1
));
454 add_widget (layout_dlg
, groupbox_new (8, 4, 4, first_width
, title2
));
455 add_widget (layout_dlg
,
456 groupbox_new (2, 5 + first_width
, 10, second_width
,
459 add_widget (layout_dlg
,
460 button_new (BY
, b3
, B_CANCEL
, NORMAL_BUTTON
, cancel_button
,
462 add_widget (layout_dlg
,
463 button_new (BY
, b2
, B_EXIT
, NORMAL_BUTTON
, save_button
,
465 add_widget (layout_dlg
,
466 button_new (BY
, b1
, B_ENTER
, DEFPUSH_BUTTON
, ok_button
,
469 add_widget (layout_dlg
,
470 button_new (LAYOUT_OPTIONS_COUNT
, 12 + first_width
, B_MINUS
,
471 NARROW_BUTTON
, "&-", bminus_cback
));
472 add_widget (layout_dlg
,
473 button_new (LAYOUT_OPTIONS_COUNT
, 7 + first_width
, B_PLUS
, NARROW_BUTTON
,
476 #define XTRACT(i) *check_options[i].variable, check_options[i].text
478 for (i
= 0; i
< OTHER_OPTIONS_COUNT
; i
++) {
479 check_options
[i
].widget
=
480 check_new (LAYOUT_OPTIONS_COUNT
- i
- 1, 7 + first_width
, XTRACT (i
));
481 add_widget (layout_dlg
, check_options
[i
].widget
);
483 check_options
[9].widget
= check_new (10, 6, XTRACT (9));
484 add_widget (layout_dlg
, check_options
[9].widget
);
485 check_options
[8].widget
= check_new (9, 6, XTRACT (8));
486 add_widget (layout_dlg
, check_options
[8].widget
);
488 _filetype_mode
= filetype_mode
;
489 _permission_mode
= permission_mode
;
490 _equal_split
= equal_split
;
491 _menubar_visible
= menubar_visible
;
492 _command_prompt
= command_prompt
;
493 _keybar_visible
= keybar_visible
;
494 _message_visible
= message_visible
;
495 _xterm_title
= xterm_title
;
496 _free_space
= free_space
;
498 button_new (6, 15, B_2RIGHT
, NARROW_BUTTON
, "&>", b2right_cback
);
499 add_widget (layout_dlg
, bright_widget
);
501 button_new (6, 9, B_2LEFT
, NARROW_BUTTON
, "&<", b2left_cback
);
502 add_widget (layout_dlg
, bleft_widget
);
503 check_options
[7].widget
= check_new (5, 6, XTRACT (7));
504 old_first_panel_size
= -1;
505 old_horizontal_split
= -1;
506 old_output_lines
= -1;
508 _first_panel_size
= first_panel_size
;
509 _output_lines
= output_lines
;
510 add_widget (layout_dlg
, check_options
[7].widget
);
511 radio_widget
= radio_new (3, 6, 2, s_split_direction
);
512 add_widget (layout_dlg
, radio_widget
);
513 radio_widget
->sel
= horizontal_split
;
520 /* re-init the menu, because perhaps there was a change in the way
521 how the panel are split (horizontal/vertical). */
524 menubar_arrange (the_menubar
);
528 void layout_cmd (void)
532 int layout_do_change
= 0;
535 run_dlg (layout_dlg
);
536 result
= layout_dlg
->ret_value
;
538 if (result
== B_ENTER
|| result
== B_EXIT
){
539 for (i
= 0; check_options
[i
].text
; i
++)
540 if (check_options
[i
].widget
)
541 *check_options
[i
].variable
= check_options
[i
].widget
->state
& C_BOOL
;
542 horizontal_split
= radio_widget
->sel
;
543 first_panel_size
= _first_panel_size
;
544 output_lines
= _output_lines
;
545 layout_do_change
= 1;
547 if (result
== B_EXIT
){
549 mc_config_save_file (mc_main_config
, NULL
);
552 destroy_dlg (layout_dlg
);
553 if (layout_do_change
)
557 static void check_split (void)
559 if (horizontal_split
){
561 first_panel_size
= height
/ 2;
562 else if (first_panel_size
< MINHEIGHT
)
563 first_panel_size
= MINHEIGHT
;
564 else if (first_panel_size
> height
- MINHEIGHT
)
565 first_panel_size
= height
- MINHEIGHT
;
568 first_panel_size
= COLS
/ 2;
569 else if (first_panel_size
< MINWIDTH
)
570 first_panel_size
= MINWIDTH
;
571 else if (first_panel_size
> COLS
- MINWIDTH
)
572 first_panel_size
= COLS
- MINWIDTH
;
579 tty_set_normal_attrs ();
580 tty_fill_region (0, 0, LINES
, COLS
, ' ');
585 repaint_screen (void)
594 #ifdef WITH_BACKGROUND
595 if (we_are_background
)
597 #endif /* WITH_BACKGROUND */
601 /* if winch was caugth, we should do not only redraw screen, but
602 reposition/resize all */
603 change_screen_size ();
608 panel_do_cols (int lc_index
)
610 if (get_display_type (lc_index
) == view_listing
)
611 set_panel_formats ((WPanel
*) panels
[lc_index
].widget
);
613 panel_update_cols (panels
[lc_index
].widget
, frame_half
);
621 int promptl
; /* the prompt len */
625 if (output_lines
< 0)
628 LINES
- keybar_visible
- command_prompt
- menubar_visible
-
629 output_lines
- message_visible
;
630 minimum
= MINHEIGHT
* (1 + horizontal_split
);
631 if (height
< minimum
) {
632 output_lines
-= minimum
- height
;
637 LINES
- menubar_visible
- command_prompt
- keybar_visible
-
641 start_y
= menubar_visible
;
643 /* The column computing is defered until panel_do_cols */
644 if (horizontal_split
) {
645 widget_set_size (panels
[0].widget
, start_y
, 0, first_panel_size
,
648 widget_set_size (panels
[1].widget
, start_y
+ first_panel_size
, 0,
649 height
- first_panel_size
, 0);
651 int first_x
= first_panel_size
;
653 widget_set_size (panels
[0].widget
, start_y
, 0, height
, 0);
655 widget_set_size (panels
[1].widget
, start_y
, first_x
, height
, 0);
661 promptl
= str_term_width1 (prompt
);
663 widget_set_size (&the_menubar
->widget
, 0, 0, 1, COLS
);
665 if (command_prompt
) {
666 widget_set_size (&cmdline
->widget
, LINES
- 1 - keybar_visible
,
667 promptl
, 1, COLS
- promptl
);
668 winput_set_origin (cmdline
, promptl
, COLS
- promptl
);
669 widget_set_size (&the_prompt
->widget
, LINES
- 1 - keybar_visible
,
672 widget_set_size (&cmdline
->widget
, 0, 0, 0, 0);
673 winput_set_origin (cmdline
, 0, 0);
674 widget_set_size (&the_prompt
->widget
, LINES
, COLS
, 0, 0);
677 widget_set_size (&the_bar
->widget
, LINES
- 1, 0, keybar_visible
, COLS
);
678 buttonbar_set_visible (the_bar
, keybar_visible
);
681 if (console_flag
&& output_lines
) {
683 LINES
- command_prompt
- keybar_visible
- output_lines
;
684 show_console_contents (output_start_y
,
685 LINES
- output_lines
- keybar_visible
- 1,
686 LINES
- keybar_visible
- 1);
689 widget_set_size (&the_hint
->widget
, height
+ start_y
, 0, 1, COLS
);
691 widget_set_size (&the_hint
->widget
, 0, 0, 0, 0);
693 update_xterm_title_path ();
697 low_level_change_screen_size (void)
699 #if defined(HAVE_SLANG) || NCURSES_VERSION_MAJOR >= 4
700 #if defined TIOCGWINSZ
701 struct winsize winsz
;
703 winsz
.ws_col
= winsz
.ws_row
= 0;
704 /* Ioctl on the STDIN_FILENO */
705 ioctl (0, TIOCGWINSZ
, &winsz
);
706 if (winsz
.ws_col
&& winsz
.ws_row
){
707 #if defined(NCURSES_VERSION) && defined(HAVE_RESIZETERM)
708 resizeterm(winsz
.ws_row
, winsz
.ws_col
);
709 clearok(stdscr
,TRUE
); /* sigwinch's should use a semaphore! */
712 LINES
= winsz
.ws_row
;
714 #ifdef HAVE_SUBSHELL_SUPPORT
718 #endif /* TIOCGWINSZ */
719 #endif /* defined(HAVE_SLANG) || NCURSES_VERSION_MAJOR >= 4 */
723 sigwinch_handler (int dummy
)
726 #if !(defined(USE_NCURSES) || defined(USE_NCURSESW)) /* don't do malloc in a signal handler */
727 low_level_change_screen_size ();
733 change_screen_size (void)
738 #if defined(HAVE_SLANG) || NCURSES_VERSION_MAJOR >= 4
739 #if defined TIOCGWINSZ
741 #ifndef NCURSES_VERSION
745 low_level_change_screen_size ();
747 /* XSI Curses spec states that portable applications shall not invoke
748 * initscr() more than once. This kludge could be done within the scope
749 * of the specification by using endwin followed by a refresh (in fact,
750 * more than one curses implementation does this); it is guaranteed to work
759 /* Inform all running dialogs */
762 (*d
->callback
) (d
, NULL
, DLG_RESIZE
, 0, NULL
);
766 /* Now, force the redraw */
768 #endif /* TIOCGWINSZ */
769 #endif /* defined(HAVE_SLANG) || NCURSES_VERSION_MAJOR >= 4 */
772 static int ok_to_refresh
= 1;
774 void use_dash (int flag
)
782 void set_hintbar(const char *str
)
784 label_set_text (the_hint
, str
);
785 if (ok_to_refresh
> 0)
789 void print_vfs_message (const char *msg
, ...)
795 g_vsnprintf (str
, sizeof (str
), msg
, ap
);
798 if (midnight_shutdown
)
801 if (!message_visible
|| !the_hint
|| !the_hint
->widget
.parent
) {
804 if (!nice_rotating_dash
|| (ok_to_refresh
<= 0))
807 /* Preserve current cursor position */
808 tty_getyx (&row
, &col
);
811 tty_setcolor (NORMAL_COLOR
);
812 tty_print_string (str_fit_to_term (str
, COLS
- 1, J_LEFT
));
814 /* Restore cursor position */
815 tty_gotoyx (row
, col
);
820 if (message_visible
) {
825 void rotate_dash (void)
827 static const char rotating_dash
[] = "|/-\\";
828 static size_t pos
= 0;
830 if (!nice_rotating_dash
|| (ok_to_refresh
<= 0))
833 if (pos
>= sizeof (rotating_dash
)-1)
835 tty_gotoyx (0, COLS
- 1);
836 tty_setcolor (NORMAL_COLOR
);
837 tty_print_char (rotating_dash
[pos
]);
842 const char *get_nth_panel_name (int num
)
844 static char buffer
[BUF_SMALL
];
847 return "New Left Panel";
849 return "New Right Panel";
851 g_snprintf (buffer
, sizeof (buffer
), "%ith Panel", num
);
856 /* I wonder if I should start to use the folding mode than Dugan uses */
858 /* This is the centralized managing of the panel display types */
859 /* This routine takes care of destroying and creating new widgets */
860 /* Please note that it could manage MAX_VIEWS, not just left and right */
861 /* Currently nothing in the code takes advantage of this and has hard- */
862 /* coded values for two panels only */
864 /* Set the num-th panel to the view type: type */
865 /* This routine also keeps at least one WPanel object in the screen */
866 /* since a lot of routines depend on the current_panel variable */
868 set_display_type (int num
, int type
)
870 int x
= 0, y
= 0, cols
= 0, lines
= 0;
871 int the_other
= 0; /* Index to the other panel */
872 const char *file_name
= NULL
; /* For Quick view */
873 Widget
*new_widget
= NULL
, *old_widget
= NULL
;
874 WPanel
*the_other_panel
= NULL
;
876 if (num
>= MAX_VIEWS
){
877 fprintf (stderr
, "Cannot allocate more that %d views\n", MAX_VIEWS
);
880 /* Check that we will have a WPanel * at least */
881 if (type
!= view_listing
){
882 the_other
= num
== 0 ? 1 : 0;
884 if (panels
[the_other
].type
!= view_listing
)
889 if (panels
[num
].widget
){
890 Widget
*w
= panels
[num
].widget
;
891 WPanel
*panel
= (WPanel
*) panels
[num
].widget
;
897 old_widget
= panels
[num
].widget
;
899 if (panels
[num
].type
== view_listing
){
900 if (panel
->frame_size
== frame_full
&& type
!= view_listing
){
901 cols
= COLS
- first_panel_size
;
903 x
= first_panel_size
;
908 /* Restoring saved path from panels.ini for nonlist panel */
909 /* when it's first creation (for example view_info) */
910 if (old_widget
== NULL
&& type
!= view_listing
) {
911 char panel_dir
[MC_MAXPATHLEN
];
912 mc_get_current_wd (panel_dir
, sizeof (panel_dir
));
913 panels
[num
].last_saved_dir
= g_strdup (panel_dir
);
918 new_widget
= restore_into_right_dir_panel(num
, old_widget
);
922 new_widget
= (Widget
*) info_new ();
926 new_widget
= (Widget
*) tree_new (1, 0, 0, 0, 0);
930 new_widget
= (Widget
*) mcview_new (0, 0, 0, 0, 1);
931 the_other_panel
= (WPanel
*) panels
[the_other
].widget
;
934 the_other_panel
->dir
.list
[the_other_panel
->selected
].fname
;
938 mcview_load ((struct mcview_struct
*) new_widget
, 0, file_name
, 0);
942 if (type
!= view_listing
)
943 /* Must save dir, for restoring after change type to */
947 panels
[num
].type
= type
;
948 panels
[num
].widget
= new_widget
;
950 /* We set the same size the old widget had */
951 widget_set_size (new_widget
, y
, x
, lines
, cols
);
953 /* We use replace to keep the circular list of the dialog in the */
954 /* same state. Maybe we could just kill it and then replace it */
955 if (midnight_dlg
&& old_widget
){
956 dlg_replace_widget (old_widget
, panels
[num
].widget
);
958 if (type
== view_listing
){
960 left_panel
= (WPanel
*) new_widget
;
962 right_panel
= (WPanel
*) new_widget
;
965 if (type
== view_tree
)
966 the_tree
= (WTree
*) new_widget
;
968 /* Prevent current_panel's value from becoming invalid.
969 * It's just a quick hack to prevent segfaults. Comment out and
971 * - select left panel
972 * - invoke menue left/tree
973 * - as long as you stay in the left panel almost everything that uses
974 * current_panel causes segfault, e.g. C-Enter, C-x c, ...
977 if (type
!= view_listing
)
978 if (current_panel
== (WPanel
*) old_widget
)
979 current_panel
= num
== 0 ? right_panel
: left_panel
;
982 /* This routine is deeply sticked to the two panels idea.
983 What should it do in more panels. ANSWER - don't use it
984 in any multiple panels environment. */
990 WPanel
*panel1
, *panel2
;
993 #define panelswap(x) panel. x = panel1-> x; panel1-> x = panel2-> x; panel2-> x = panel. x;
995 #define panelswapstr(e) strcpy (panel. e, panel1-> e); \
996 strcpy (panel1-> e, panel2-> e); \
997 strcpy (panel2-> e, panel. e);
998 panel1
= (WPanel
*) panels
[0].widget
;
999 panel2
= (WPanel
*) panels
[1].widget
;
1000 if (panels
[0].type
== view_listing
&& panels
[1].type
== view_listing
) {
1001 /* Change everything except format/sort/panel_name etc. */
1008 panelswap (dirs_marked
);
1010 panelswap (top_file
);
1011 panelswap (selected
);
1012 panelswap (is_panelized
);
1013 panelswap (dir_stat
);
1015 panel1
->searching
= 0;
1016 panel2
->searching
= 0;
1017 if (current_panel
== panel1
)
1018 current_panel
= panel2
;
1020 current_panel
= panel1
;
1022 if (dlg_widget_active (panels
[0].widget
))
1023 dlg_select_widget (panels
[1].widget
);
1024 else if (dlg_widget_active (panels
[1].widget
))
1025 dlg_select_widget (panels
[0].widget
);
1029 tmp_panel
=right_panel
;
1030 right_panel
=left_panel
;
1031 left_panel
=tmp_panel
;
1033 if (panels
[0].type
== view_listing
) {
1034 if (!strcmp (panel1
->panel_name
, get_nth_panel_name (0))) {
1035 g_free (panel1
->panel_name
);
1036 panel1
->panel_name
= g_strdup (get_nth_panel_name (1));
1039 if (panels
[1].type
== view_listing
) {
1040 if (!strcmp (panel2
->panel_name
, get_nth_panel_name (1))) {
1041 g_free (panel2
->panel_name
);
1042 panel2
->panel_name
= g_strdup (get_nth_panel_name (0));
1046 tmp
.x
= panels
[0].widget
->x
;
1047 tmp
.y
= panels
[0].widget
->y
;
1048 tmp
.cols
= panels
[0].widget
->cols
;
1049 tmp
.lines
= panels
[0].widget
->lines
;
1051 panels
[0].widget
->x
= panels
[1].widget
->x
;
1052 panels
[0].widget
->y
= panels
[1].widget
->y
;
1053 panels
[0].widget
->cols
= panels
[1].widget
->cols
;
1054 panels
[0].widget
->lines
= panels
[1].widget
->lines
;
1056 panels
[1].widget
->x
= tmp
.x
;
1057 panels
[1].widget
->y
= tmp
.y
;
1058 panels
[1].widget
->cols
= tmp
.cols
;
1059 panels
[1].widget
->lines
= tmp
.lines
;
1061 tmp_widget
= panels
[0].widget
;
1062 panels
[0].widget
= panels
[1].widget
;
1063 panels
[1].widget
= tmp_widget
;
1064 tmp_type
= panels
[0].type
;
1065 panels
[0].type
= panels
[1].type
;
1066 panels
[1].type
= tmp_type
;
1070 int get_display_type (int lc_index
)
1072 return panels
[lc_index
].type
;
1076 get_panel_widget (int lc_index
)
1078 return panels
[lc_index
].widget
;
1081 int get_current_index (void)
1083 if (panels
[0].widget
== ((Widget
*) current_panel
))
1089 int get_other_index (void)
1091 return !get_current_index ();
1095 get_other_panel (void)
1097 return (struct WPanel
*) get_panel_widget (get_other_index ());
1100 /* Returns the view type for the current panel/view */
1101 int get_current_type (void)
1103 if (panels
[0].widget
== (Widget
*) current_panel
)
1104 return panels
[0].type
;
1106 return panels
[1].type
;
1109 /* Returns the view type of the unselected panel */
1110 int get_other_type (void)
1112 if (panels
[0].widget
== (Widget
*) current_panel
)
1113 return panels
[1].type
;
1115 return panels
[0].type
;
1118 /* Save current list_view widget directory into panel */
1120 save_panel_dir (int lc_index
)
1122 int type
= get_display_type (lc_index
);
1123 Widget
*widget
= get_panel_widget (lc_index
);
1125 if ((type
== view_listing
) && (widget
!= NULL
)) {
1126 WPanel
*w
= (WPanel
*) widget
;
1127 char *widget_work_dir
= w
->cwd
;
1129 g_free(panels
[lc_index
].last_saved_dir
); /* last path no needed */
1130 /* Because path can be nonlocal */
1131 panels
[lc_index
].last_saved_dir
= vfs_translate_url(widget_work_dir
);
1135 /* Save current list_view widget directory into panel */
1137 restore_into_right_dir_panel (int lc_index
, Widget
*from_widget
)
1139 Widget
*new_widget
= 0;
1140 const char *saved_dir
= panels
[lc_index
].last_saved_dir
;
1141 gboolean last_was_panel
= (from_widget
&&
1142 get_display_type(lc_index
) != view_listing
);
1143 const char *p_name
= get_nth_panel_name (lc_index
);
1146 new_widget
= (Widget
*) panel_new_with_dir (p_name
, saved_dir
);
1148 new_widget
= (Widget
*) panel_new (p_name
);
1153 /* Return working dir, if it's view_listing - cwd,
1154 but for other types - last_saved_dir */
1156 get_panel_dir_for (const WPanel
*widget
)
1160 for (i
= 0; i
< MAX_VIEWS
; i
++)
1161 if ((WPanel
*) get_panel_widget (i
) == widget
)
1167 if (get_display_type (i
) == view_listing
)
1168 return ((WPanel
*) get_panel_widget (i
))->cwd
;
1170 return panels
[i
].last_saved_dir
;