Fix of mouse and ca capabilities check.
[midnight-commander.git] / src / filemanager / boxes.c
blob2cf87e7959902a61dd63b2b1c514db23d61f9157
1 /* Some misc dialog boxes for the program.
3 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2009, 2010 Free Software Foundation, Inc.
6 Authors: 1994, 1995 Miguel de Icaza
7 1995 Jakub Jelinek
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
23 /** \file boxes.c
24 * \brief Source: Some misc dialog boxes for the program
27 #include <config.h>
29 #include <ctype.h>
30 #include <signal.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <sys/types.h>
35 #include <sys/stat.h>
37 #include "lib/global.h"
39 #include "lib/tty/tty.h"
40 #include "lib/tty/key.h" /* XCTRL and ALT macros */
41 #include "lib/skin.h" /* INPUT_COLOR */
42 #include "lib/mcconfig.h" /* Load/save user formats */
43 #include "lib/strutil.h"
45 #include "lib/vfs/mc-vfs/vfs.h"
46 #ifdef ENABLE_VFS_FTP
47 #include "lib/vfs/mc-vfs/ftpfs.h"
48 #endif /* ENABLE_VFS_FTP */
49 #ifdef ENABLE_VFS_SMB
50 #include "lib/vfs/mc-vfs/smbfs.h"
51 #endif /* ENABLE_VFS_SMB */
53 #include "lib/util.h" /* Q_() */
54 #include "lib/widget.h"
56 #include "src/setup.h" /* For profile_name */
57 #include "src/background.h" /* task_list */
59 #ifdef HAVE_CHARSET
60 #include "lib/charsets.h"
61 #include "src/selcodepage.h"
62 #endif
64 #include "command.h" /* For cmdline */
65 #include "dir.h"
66 #include "panel.h" /* LIST_TYPES */
67 #include "tree.h"
68 #include "layout.h" /* for get_nth_panel_name proto */
70 #include "boxes.h"
72 /*** global variables ****************************************************************************/
74 /*** file scope macro definitions ****************************************************************/
76 #ifdef ENABLE_VFS
77 #define VFSX 56
79 #ifdef ENABLE_VFS_FTP
80 #define VFSY 17
81 #else
82 #define VFSY 8
83 #endif /* ENABLE_VFS_FTP */
84 #endif /* ENABLE_VFS */
86 #ifdef WITH_BACKGROUND
87 #define B_STOP (B_USER+1)
88 #define B_RESUME (B_USER+2)
89 #define B_KILL (B_USER+3)
90 #define JOBS_Y 15
91 #endif /* WITH_BACKGROUND */
93 /*** file scope type declarations ****************************************************************/
95 /*** file scope variables ************************************************************************/
97 static WRadio *display_radio;
98 static WInput *display_user_format;
99 static WInput *display_mini_status;
100 static WCheck *display_check_status;
101 static char **displays_status;
102 static int display_user_hotkey = 'u';
104 #ifdef HAVE_CHARSET
105 static int new_display_codepage;
106 static WLabel *cplabel;
107 static WCheck *inpcheck;
108 #endif /* HAVE_CHARSET */
110 #ifdef ENABLE_VFS
111 static char *ret_timeout;
112 #ifdef ENABLE_VFS_FTP
113 static char *ret_ftp_proxy;
114 static char *ret_passwd;
115 static char *ret_directory_timeout;
116 #endif /* ENABLE_VFS_FTP */
117 #endif /* ENABLE_VFS */
119 #ifdef WITH_BACKGROUND
120 static int JOBS_X = 60;
121 static WListbox *bg_list;
122 static Dlg_head *jobs_dlg;
124 static int task_cb (WButton * button, int action);
126 static struct
128 const char *name;
129 int xpos;
130 int value;
131 bcback_fn callback;
133 job_buttons[] =
135 /* *INDENT-OFF* */
136 { N_("&Stop"), 3, B_STOP, task_cb },
137 { N_("&Resume"), 12, B_RESUME, task_cb },
138 { N_("&Kill"), 23, B_KILL, task_cb },
139 { N_("&OK"), 35, B_CANCEL, NULL }
140 /* *INDENT-ON* */
143 #endif /* WITH_BACKGROUND */
145 /*** file scope functions ************************************************************************/
146 /* --------------------------------------------------------------------------------------------- */
148 static cb_ret_t
149 display_callback (Dlg_head * h, Widget * sender, dlg_msg_t msg, int parm, void *data)
151 switch (msg)
153 case DLG_KEY:
154 if (parm == '\n')
156 if (dlg_widget_active (display_radio))
158 input_assign_text (display_mini_status, displays_status[display_radio->sel]);
159 dlg_stop (h);
160 return MSG_HANDLED;
163 if (dlg_widget_active (display_user_format))
165 h->ret_value = B_USER + 6;
166 dlg_stop (h);
167 return MSG_HANDLED;
170 if (dlg_widget_active (display_mini_status))
172 h->ret_value = B_USER + 7;
173 dlg_stop (h);
174 return MSG_HANDLED;
178 if ((g_ascii_tolower (parm) == display_user_hotkey)
179 && dlg_widget_active (display_user_format) && dlg_widget_active (display_mini_status))
181 display_radio->pos = display_radio->sel = 3;
182 dlg_select_widget (display_radio); /* force redraw */
183 h->callback (h, (Widget *) display_radio, DLG_ACTION, 0, NULL);
184 return MSG_HANDLED;
186 return MSG_NOT_HANDLED;
188 case DLG_ACTION:
189 if (sender == (Widget *) display_radio)
191 if (!(display_check_status->state & C_BOOL))
192 input_assign_text (display_mini_status, displays_status[display_radio->sel]);
193 input_update (display_mini_status, FALSE);
194 input_update (display_user_format, FALSE);
195 widget_disable (display_user_format->widget, display_radio->sel != 3);
196 return MSG_HANDLED;
199 if (sender == (Widget *) display_check_status)
201 if (display_check_status->state & C_BOOL)
203 widget_disable (display_mini_status->widget, FALSE);
204 input_assign_text (display_mini_status, displays_status[3]);
206 else
208 widget_disable (display_mini_status->widget, TRUE);
209 input_assign_text (display_mini_status, displays_status[display_radio->sel]);
211 input_update (display_mini_status, FALSE);
212 return MSG_HANDLED;
215 return MSG_NOT_HANDLED;
217 default:
218 return default_dlg_callback (h, sender, msg, parm, data);
222 /* --------------------------------------------------------------------------------------------- */
224 static Dlg_head *
225 display_init (int radio_sel, char *init_text, int _check_status, char **_status)
227 int dlg_width = 48, dlg_height = 15;
228 Dlg_head *dd;
230 /* Controls whether the array strings have been translated */
231 const char *displays[LIST_TYPES] = {
232 N_("&Full file list"),
233 N_("&Brief file list"),
234 N_("&Long file list"),
235 N_("&User defined:")
238 /* Index in displays[] for "user defined" */
239 const int user_type_idx = 3;
241 const char *display_title = N_("Listing mode");
242 const char *user_mini_status = N_("User &mini status");
243 const char *ok_name = N_("&OK");
244 const char *cancel_name = N_("&Cancel");
246 WButton *ok_button, *cancel_button;
249 int i, maxlen = 0;
250 const char *cp;
251 int ok_len, cancel_len, b_len, gap;
253 #ifdef ENABLE_NLS
254 display_title = _(display_title);
255 user_mini_status = _(user_mini_status);
256 ok_name = _(ok_name);
257 cancel_name = _(cancel_name);
259 for (i = 0; i < LIST_TYPES; i++)
260 displays[i] = _(displays[i]);
261 #endif
263 /* get hotkey of user-defined format string */
264 cp = strchr (displays[user_type_idx], '&');
265 if (cp != NULL && *++cp != '\0')
266 display_user_hotkey = g_ascii_tolower (*cp);
268 /* xpos will be fixed later */
269 ok_button = button_new (dlg_height - 3, 0, B_ENTER, DEFPUSH_BUTTON, ok_name, 0);
270 ok_len = button_get_len (ok_button);
271 cancel_button = button_new (dlg_height - 3, 0, B_CANCEL, NORMAL_BUTTON, cancel_name, 0);
272 cancel_len = button_get_len (cancel_button);
273 b_len = ok_len + cancel_len + 2;
275 dlg_width = max (dlg_width, str_term_width1 (display_title) + 10);
276 /* calculate max width of radiobutons */
277 for (i = 0; i < LIST_TYPES; i++)
278 maxlen = max (maxlen, str_term_width1 (displays[i]));
279 dlg_width = max (dlg_width, maxlen);
280 dlg_width = max (dlg_width, str_term_width1 (user_mini_status) + 13);
282 /* buttons */
283 dlg_width = max (dlg_width, b_len + 6);
284 gap = (dlg_width - 6 - b_len) / 3;
285 ok_button->widget.x = 3 + gap;
286 cancel_button->widget.x = ok_button->widget.x + ok_len + gap + 2;
289 displays_status = _status;
291 dd = create_dlg (TRUE, 0, 0, dlg_height, dlg_width, dialog_colors,
292 display_callback, "[Listing Mode...]", display_title,
293 DLG_CENTER | DLG_REVERSE);
295 add_widget (dd, cancel_button);
296 add_widget (dd, ok_button);
298 display_mini_status =
299 input_new (10, 8, input_get_default_colors (), dlg_width - 12, _status[radio_sel],
300 "mini-input", INPUT_COMPLETE_DEFAULT);
301 add_widget (dd, display_mini_status);
303 display_check_status = check_new (9, 4, _check_status, user_mini_status);
304 add_widget (dd, display_check_status);
306 display_user_format = input_new (7, 8, input_get_default_colors (), dlg_width - 12, init_text,
307 "user-fmt-input", INPUT_COMPLETE_DEFAULT);
308 add_widget (dd, display_user_format);
310 display_radio = radio_new (3, 4, LIST_TYPES, displays);
311 display_radio->sel = display_radio->pos = radio_sel;
312 add_widget (dd, display_radio);
314 return dd;
317 /* --------------------------------------------------------------------------------------------- */
318 #ifdef HAVE_CHARSET
320 static int
321 sel_charset_button (WButton * button, int action)
323 int new_dcp;
325 (void) button;
326 (void) action;
328 new_dcp = select_charset (-1, -1, new_display_codepage, TRUE);
330 if (new_dcp != SELECT_CHARSET_CANCEL)
332 const char *cpname;
333 char buf[BUF_TINY];
335 new_display_codepage = new_dcp;
336 cpname = (new_display_codepage == SELECT_CHARSET_OTHER_8BIT) ?
337 _("Other 8 bit") :
338 ((codepage_desc *) g_ptr_array_index (codepages, new_display_codepage))->name;
339 if (cpname != NULL)
340 utf8_display = str_isutf8 (cpname);
341 /* avoid strange bug with label repainting */
342 g_snprintf (buf, sizeof (buf), "%-27s", cpname);
343 label_set_text (cplabel, buf);
346 return 0;
349 /* --------------------------------------------------------------------------------------------- */
351 static Dlg_head *
352 init_disp_bits_box (void)
354 /* dialog sizes */
355 const int DISPY = 11;
356 const int DISPX = 46;
358 const char *cpname;
359 Dlg_head *dbits_dlg;
361 do_refresh ();
363 dbits_dlg =
364 create_dlg (TRUE, 0, 0, DISPY, DISPX, dialog_colors, NULL,
365 "[Display bits]", _("Display bits"), DLG_CENTER | DLG_REVERSE);
367 add_widget (dbits_dlg, label_new (3, 4, _("Input / display codepage:")));
369 cpname = (new_display_codepage < 0) ? _("Other 8 bit")
370 : ((codepage_desc *) g_ptr_array_index (codepages, new_display_codepage))->name;
371 cplabel = label_new (4, 4, cpname);
372 add_widget (dbits_dlg, cplabel);
374 add_widget (dbits_dlg,
375 button_new (DISPY - 3, DISPX / 2 + 3, B_CANCEL, NORMAL_BUTTON, _("&Cancel"), 0));
376 add_widget (dbits_dlg, button_new (DISPY - 3, 7, B_ENTER, NORMAL_BUTTON, _("&OK"), 0));
378 inpcheck = check_new (6, 4, !use_8th_bit_as_meta, _("F&ull 8 bits input"));
379 add_widget (dbits_dlg, inpcheck);
381 cpname = _("&Select");
382 add_widget (dbits_dlg,
383 button_new (4, DISPX - 7 - str_term_width1 (cpname), B_USER,
384 NORMAL_BUTTON, cpname, sel_charset_button));
386 return dbits_dlg;
388 #endif /* HAVE_CHARSET */
390 /* --------------------------------------------------------------------------------------------- */
392 static cb_ret_t
393 tree_callback (Dlg_head * h, Widget * sender, dlg_msg_t msg, int parm, void *data)
395 switch (msg)
397 case DLG_POST_KEY:
398 /* The enter key will be processed by the tree widget */
399 if (parm == '\n')
401 h->ret_value = B_ENTER;
402 dlg_stop (h);
404 return MSG_HANDLED;
406 case DLG_ACTION:
407 return send_message ((Widget *) find_tree (h), WIDGET_COMMAND, parm);
409 default:
410 return default_dlg_callback (h, sender, msg, parm, data);
414 /* --------------------------------------------------------------------------------------------- */
416 #ifdef ENABLE_VFS
417 #ifdef ENABLE_VFS_FTP
419 static cb_ret_t
420 confvfs_callback (Dlg_head * h, Widget * sender, dlg_msg_t msg, int parm, void *data)
422 switch (msg)
424 case DLG_ACTION:
425 /* message from "Always use ftp proxy" checkbutton */
426 if (sender != NULL && sender->id == 6)
428 const gboolean not_use = !(((WCheck *) sender)->state & C_BOOL);
429 Widget *w;
431 /* input */
432 w = dlg_find_by_id (h, sender->id - 1);
433 widget_disable (*w, not_use);
434 send_message (w, WIDGET_DRAW, 0);
436 return MSG_HANDLED;
438 return MSG_NOT_HANDLED;
440 default:
441 return default_dlg_callback (h, sender, msg, parm, data);
444 #endif /* ENABLE_VFS_FTP */
445 #endif /* ENABLE_VFS */
447 #ifdef WITH_BACKGROUND
448 static void
449 jobs_fill_listbox (void)
451 static const char *state_str[2];
452 TaskList *tl = task_list;
454 if (!state_str[0])
456 state_str[0] = _("Running");
457 state_str[1] = _("Stopped");
460 while (tl)
462 char *s;
464 s = g_strconcat (state_str[tl->state], " ", tl->info, (char *) NULL);
465 listbox_add_item (bg_list, LISTBOX_APPEND_AT_END, 0, s, (void *) tl);
466 g_free (s);
467 tl = tl->next;
471 /* --------------------------------------------------------------------------------------------- */
473 static int
474 task_cb (WButton * button, int action)
476 TaskList *tl;
477 int sig = 0;
479 (void) button;
481 if (bg_list->list == NULL)
482 return 0;
484 /* Get this instance information */
485 listbox_get_current (bg_list, NULL, (void **) &tl);
487 #ifdef SIGTSTP
488 if (action == B_STOP)
490 sig = SIGSTOP;
491 tl->state = Task_Stopped;
493 else if (action == B_RESUME)
495 sig = SIGCONT;
496 tl->state = Task_Running;
498 else
499 #endif
500 if (action == B_KILL)
502 sig = SIGKILL;
505 if (sig == SIGKILL)
506 unregister_task_running (tl->pid, tl->fd);
508 kill (tl->pid, sig);
509 listbox_remove_list (bg_list);
510 jobs_fill_listbox ();
512 /* This can be optimized to just redraw this widget :-) */
513 dlg_redraw (jobs_dlg);
515 return 0;
517 #endif /* WITH_BACKGROUND */
519 /* --------------------------------------------------------------------------------------------- */
520 /*** public functions ****************************************************************************/
521 /* --------------------------------------------------------------------------------------------- */
523 /* return list type */
525 display_box (WPanel * panel, char **userp, char **minip, int *use_msformat, int num)
527 int result = -1;
528 Dlg_head *dd;
529 char *section = NULL;
530 size_t i;
532 if (panel == NULL)
534 const char *p = get_nth_panel_name (num);
535 panel = g_new (WPanel, 1);
536 panel->list_type = list_full;
537 panel->user_format = g_strdup (DEFAULT_USER_FORMAT);
538 panel->user_mini_status = 0;
539 for (i = 0; i < LIST_TYPES; i++)
540 panel->user_status_format[i] = g_strdup (DEFAULT_USER_FORMAT);
541 section = g_strconcat ("Temporal:", p, (char *) NULL);
542 if (!mc_config_has_group (mc_main_config, section))
544 g_free (section);
545 section = g_strdup (p);
547 panel_load_setup (panel, section);
548 g_free (section);
551 dd = display_init (panel->list_type, panel->user_format,
552 panel->user_mini_status, panel->user_status_format);
554 if (run_dlg (dd) != B_CANCEL)
556 result = display_radio->sel;
557 *userp = g_strdup (display_user_format->buffer);
558 *minip = g_strdup (display_mini_status->buffer);
559 *use_msformat = display_check_status->state & C_BOOL;
562 if (section != NULL)
564 g_free (panel->user_format);
565 for (i = 0; i < LIST_TYPES; i++)
566 g_free (panel->user_status_format[i]);
567 g_free (panel);
570 destroy_dlg (dd);
572 return result;
575 /* --------------------------------------------------------------------------------------------- */
577 const panel_field_t *
578 sort_box (panel_sort_info_t *info)
580 int dlg_width = 40, dlg_height = 7;
582 const char **sort_orders_names;
583 gsize sort_names_num;
585 int sort_idx = 0;
587 const panel_field_t *result = info->sort_field;
589 sort_orders_names = panel_get_sortable_fields (&sort_names_num);
590 dlg_height += sort_names_num;
593 int max_radio = 0, max_check = 0;
594 int ok_len, cancel_len;
595 gsize i;
597 QuickWidget quick_widgets[] = {
598 /* 0 */
599 QUICK_BUTTON (0, dlg_width, dlg_height - 3, dlg_height, N_("&Cancel"), B_CANCEL, NULL),
600 /* 1 */
601 QUICK_BUTTON (0, dlg_width, dlg_height - 3, dlg_height, N_("&OK"), B_ENTER, NULL),
602 /* 2 */
603 QUICK_CHECKBOX (0, dlg_width, 5, dlg_height, N_("&Reverse"), &info->reverse),
604 /* 3 */
605 QUICK_CHECKBOX (0, dlg_width, 4, dlg_height, N_("Case sensi&tive"), &info->case_sensitive),
606 /* 4 */
607 QUICK_CHECKBOX (0, dlg_width, 3, dlg_height, N_("Executable &first"), &info->exec_first),
608 /* 5 */
609 QUICK_RADIO (4, dlg_width, 3, dlg_height, 0, NULL, &sort_idx),
610 QUICK_END
613 QuickDialog quick_dlg = {
614 dlg_width, dlg_height, -1, -1,
615 N_("Sort order"), "[Sort Order...]",
616 quick_widgets, NULL, TRUE
619 quick_widgets[5].u.radio.items = sort_orders_names;
620 quick_widgets[5].u.radio.count = sort_names_num;
622 for (i = 0; i < sort_names_num; i++)
623 if (strcmp (sort_orders_names[i], _(info->sort_field->title_hotkey)) == 0)
625 sort_idx = i;
626 break;
629 #ifdef ENABLE_NLS
630 quick_dlg.title = _(quick_dlg.title);
631 /* buttons */
632 for (i = 0; i < 2; i++)
633 quick_widgets[i].u.button.text = _(quick_widgets[i].u.button.text);
634 /* checkboxes */
635 for (i = 2; i < 5; i++)
636 quick_widgets[i].u.checkbox.text = _(quick_widgets[i].u.checkbox.text);
637 #endif /* ENABLE_NlS */
639 /* buttons */
640 cancel_len = str_term_width1 (quick_widgets[0].u.button.text) + 4;
641 ok_len = str_term_width1 (quick_widgets[1].u.button.text) + 6;
642 /* checkboxes */
643 for (i = 2; i < 5; i++)
644 max_check = max (max_check, str_term_width1 (quick_widgets[i].u.checkbox.text) + 4);
645 /* radiobuttons */
646 for (i = 0; i < sort_names_num; i++)
647 max_radio = max (max_radio, str_term_width1 (sort_orders_names[i]) + 4);
649 /* dialog width */
650 dlg_width = max (dlg_width, str_term_width1 (quick_dlg.title) + 8);
651 dlg_width = max (dlg_width, ok_len + cancel_len + 8);
652 dlg_width = max (dlg_width, 2 * max (max_radio, max_check) + 8);
654 /* fix widget and dialog parameters */
655 /* dialog */
656 quick_dlg.xlen = dlg_width;
657 /* widgets */
658 for (i = 0; (size_t) i < sizeof (quick_widgets) / sizeof (quick_widgets[0]) - 1; i++)
659 quick_widgets[i].x_divisions = dlg_width;
660 /* buttons */
661 quick_widgets[0].relative_x = dlg_width * 2 / 3 - cancel_len / 2;
662 quick_widgets[1].relative_x = dlg_width / 3 - ok_len / 2;
663 /* checkboxes */
664 for (i = 2; i < 5; i++)
665 quick_widgets[i].relative_x = dlg_width / 2 + 2;
667 if (quick_dialog (&quick_dlg) != B_CANCEL)
668 result = panel_get_field_by_title_hotkey (sort_orders_names[sort_idx]);
670 if (result == NULL)
671 result = info->sort_field;
673 g_strfreev ((gchar **) sort_orders_names);
674 return result;
677 /* --------------------------------------------------------------------------------------------- */
679 void
680 confirm_box (void)
682 const char *title = _("Confirmation");
684 QuickWidget conf_widgets[] = {
685 /* 0 */ QUICK_BUTTON (29, 46, 10, 13, N_("&Cancel"), B_CANCEL, NULL),
686 /* 1 */ QUICK_BUTTON (12, 46, 10, 13, N_("&OK"), B_ENTER, NULL),
687 /* TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix */
688 /* 2 */ QUICK_CHECKBOX (3, 46, 8, 13, N_("Confirmation|&History cleanup"),
689 &confirm_history_cleanup),
690 /* 3 */ QUICK_CHECKBOX (3, 46, 7, 13, N_("Confirmation|Di&rectory hotlist delete"),
691 &confirm_directory_hotlist_delete),
692 /* 4 */ QUICK_CHECKBOX (3, 46, 6, 13, N_("Confirmation|E&xit"), &confirm_exit),
693 /* 5 */ QUICK_CHECKBOX (3, 46, 5, 13, N_("Confirmation|&Execute"), &confirm_execute),
694 /* 6 */ QUICK_CHECKBOX (3, 46, 4, 13, N_("Confirmation|O&verwrite"), &confirm_overwrite),
695 /* 7 */ QUICK_CHECKBOX (3, 46, 3, 13, N_("Confirmation|&Delete"), &confirm_delete),
696 QUICK_END
699 const size_t w_num = sizeof (conf_widgets) / sizeof (conf_widgets[0]) - 1;
701 /* dialog sizes */
702 int dlg_width = 46;
703 int dlg_height = w_num + 5;
705 size_t i;
706 int maxlen = 0;
707 int cancel_len, ok_len, blen;
709 #ifdef ENABLE_NLS
710 title = _(title);
712 for (i = 0; i < 2; i++)
713 conf_widgets[i].u.button.text = _(conf_widgets[i].u.button.text);
714 #endif /* ENABLE_NLS */
716 for (i = 2; i < w_num; i++)
717 conf_widgets[i].u.checkbox.text = Q_ (conf_widgets[i].u.checkbox.text);
719 /* maximum length of checkboxes */
720 for (i = 2; i < w_num; i++)
721 maxlen = max (maxlen, str_term_width1 (conf_widgets[i].u.checkbox.text) + 4);
723 /* length of buttons */
724 cancel_len = str_term_width1 (conf_widgets[0].u.button.text) + 3;
725 ok_len = str_term_width1 (conf_widgets[1].u.button.text) + 5; /* default button */
727 blen = cancel_len + ok_len + 2;
729 dlg_width = max (maxlen, blen) + 6;
730 dlg_width = max (dlg_width, str_term_width1 (title) + 4);
732 /* correct widget parameters */
733 for (i = 0; i < w_num; i++)
735 conf_widgets[i].x_divisions = dlg_width;
736 conf_widgets[i].y_divisions = dlg_height;
739 conf_widgets[1].relative_x = dlg_width / 2 - blen / 2;
740 conf_widgets[0].relative_x = conf_widgets[1].relative_x + ok_len + 2;
743 QuickDialog confirmation = {
744 dlg_width, dlg_height, -1, -1, title,
745 "[Confirmation]", conf_widgets, NULL, TRUE
748 (void) quick_dialog (&confirmation);
752 /* --------------------------------------------------------------------------------------------- */
754 #ifndef HAVE_CHARSET
755 void
756 display_bits_box (void) /* AB:FIXME: test dialog */
758 /* dialog sizes */
759 const int DISPY = 13;
760 const int DISPX = 46;
762 int new_meta = 0;
763 int current_mode;
765 const char *display_bits_str[] = {
766 N_("UTF-8 output"),
767 N_("Full 8 bits output"),
768 N_("ISO 8859-1"),
769 N_("7 bits")
772 QuickWidget display_widgets[] = {
773 /* 0 */ QUICK_BUTTON (15, DISPX, DISPY - 3, DISPY, N_("&Cancel"), B_CANCEL, NULL),
774 /* 1 */ QUICK_BUTTON (29, DISPX, DISPY - 3, DISPY, N_("&OK"), B_ENTER, NULL),
775 /* 2 */ QUICK_CHECKBOX (3, DISPX, 8, DISPY, N_("F&ull 8 bits input"), &new_meta),
776 /* 3 */ QUICK_RADIO (3, DISPX, 3, DISPY, 4, display_bits_str, &current_mode),
777 QUICK_END
780 QuickDialog display_bits = {
781 DISPX, DISPY, -1, -1, _("Display bits"),
782 "[Display bits]", display_widgets, NULL, TRUE
785 int i;
786 int l1, maxlen = 0;
787 int ok_len, cancel_len;
789 #ifdef ENABLE_NLS
790 static gboolean i18n_flag = FALSE;
792 if (!i18n_flag)
794 for (i = 0; i < 3; i++)
796 display_bits_str[i] = _(display_bits_str[i]);
799 display_widgets[0].u.button.text = _(display_widgets[0].u.button.text);
800 display_widgets[1].u.button.text = _(display_widgets[1].u.button.text);
801 display_widgets[2].u.checkbox.text = _(display_widgets[2].u.checkbox.text);
803 i18n_flag = TRUE;
805 #endif /* ENABLE_NLS */
807 /* radiobuttons */
808 for (i = 0; i < 3; i++)
809 maxlen = max (maxlen, str_term_width1 (display_bits_str[i]));
811 /* buttons */
812 cancel_len = str_term_width1 (display_widgets[0].u.button.text) + 2;
813 ok_len = str_term_width1 (display_widgets[1].u.button.text) + 4; /* default button */
815 l1 = max (cancel_len, ok_len);
817 display_bits.xlen = max (maxlen, l1) + 20;
819 for (i = 0; i < 4; i++)
820 display_widgets[i].x_divisions = display_bits.xlen;
822 display_widgets[0].relative_x = display_bits.xlen * 2 / 3 - cancel_len / 2;
823 display_widgets[1].relative_x = display_bits.xlen / 3 - ok_len / 2;
825 if (full_eight_bits)
826 current_mode = 0;
827 else if (eight_bit_clean)
828 current_mode = 1;
829 else
830 current_mode = 2;
832 new_meta = !use_8th_bit_as_meta;
834 if (quick_dialog (&display_bits) != B_CANCEL)
836 eight_bit_clean = current_mode < 3;
837 full_eight_bits = current_mode < 2;
838 #ifndef HAVE_SLANG
839 meta (stdscr, eight_bit_clean);
840 #else
841 SLsmg_Display_Eight_Bit = full_eight_bits ? 128 : 160;
842 #endif
843 use_8th_bit_as_meta = !new_meta;
847 /* --------------------------------------------------------------------------------------------- */
848 #else /* HAVE_CHARSET */
850 void
851 display_bits_box (void)
853 Dlg_head *dbits_dlg;
854 new_display_codepage = display_codepage;
856 application_keypad_mode ();
857 dbits_dlg = init_disp_bits_box ();
859 run_dlg (dbits_dlg);
861 if (dbits_dlg->ret_value == B_ENTER)
863 char *errmsg;
865 display_codepage = new_display_codepage;
866 errmsg = init_translation_table (source_codepage, display_codepage);
867 if (errmsg != NULL)
869 message (D_ERROR, MSG_ERROR, "%s", errmsg);
870 g_free (errmsg);
872 #ifdef HAVE_SLANG
873 tty_display_8bit (display_codepage != 0 && display_codepage != 1);
874 #else
875 tty_display_8bit (display_codepage != 0);
876 #endif
877 use_8th_bit_as_meta = !(inpcheck->state & C_BOOL);
879 destroy_dlg (dbits_dlg);
880 repaint_screen ();
882 #endif /* HAVE_CHARSET */
884 /* --------------------------------------------------------------------------------------------- */
885 /** Show tree in a box, not on a panel */
887 char *
888 tree_box (const char *current_dir)
890 WTree *mytree;
891 Dlg_head *dlg;
892 char *val = NULL;
893 WButtonBar *bar;
895 (void) current_dir;
897 /* Create the components */
898 dlg = create_dlg (TRUE, 0, 0, LINES - 9, COLS - 20, dialog_colors,
899 tree_callback, "[Directory Tree]",
900 _("Directory tree"), DLG_CENTER | DLG_REVERSE);
902 mytree = tree_new (2, 2, dlg->lines - 6, dlg->cols - 5, FALSE);
903 add_widget (dlg, mytree);
904 add_widget (dlg, hline_new (dlg->lines - 4, 1, -1));
905 bar = buttonbar_new (TRUE);
906 add_widget (dlg, bar);
907 /* restore ButtonBar coordinates after add_widget() */
908 ((Widget *) bar)->x = 0;
909 ((Widget *) bar)->y = LINES - 1;
911 if (run_dlg (dlg) == B_ENTER)
912 val = g_strdup (tree_selected_name (mytree));
914 destroy_dlg (dlg);
915 return val;
918 /* --------------------------------------------------------------------------------------------- */
920 #ifdef ENABLE_VFS
921 void
922 configure_vfs (void)
924 char buffer2[BUF_TINY];
925 #ifdef ENABLE_VFS_FTP
926 char buffer3[BUF_TINY];
927 #endif
929 QuickWidget confvfs_widgets[] = {
930 /* 0 */ QUICK_BUTTON (30, VFSX, VFSY - 3, VFSY, N_("&Cancel"), B_CANCEL, NULL),
931 /* 1 */ QUICK_BUTTON (12, VFSX, VFSY - 3, VFSY, N_("&OK"), B_ENTER, NULL),
932 #ifdef ENABLE_VFS_FTP
933 /* 2 */ QUICK_CHECKBOX (4, VFSX, 12, VFSY, N_("Use passive mode over pro&xy"),
934 &ftpfs_use_passive_connections_over_proxy),
935 /* 3 */ QUICK_CHECKBOX (4, VFSX, 11, VFSY, N_("Use &passive mode"),
936 &ftpfs_use_passive_connections),
937 /* 4 */ QUICK_CHECKBOX (4, VFSX, 10, VFSY, N_("&Use ~/.netrc"), &ftpfs_use_netrc),
938 /* 5 */ QUICK_INPUT (4, VFSX, 9, VFSY, ftpfs_proxy_host, 48, 0, "input-ftp-proxy",
939 &ret_ftp_proxy),
940 /* 6 */ QUICK_CHECKBOX (4, VFSX, 8, VFSY, N_("&Always use ftp proxy"),
941 &ftpfs_always_use_proxy),
942 /* 7 */ QUICK_LABEL (49, VFSX, 7, VFSY, N_("sec")),
943 /* 8 */ QUICK_INPUT (38, VFSX, 7, VFSY, buffer3, 10, 0, "input-timeout",
944 &ret_directory_timeout),
945 /* 9 */ QUICK_LABEL (4, VFSX, 7, VFSY, N_("ftpfs directory cache timeout:")),
946 /* 10 */ QUICK_INPUT (4, VFSX, 6, VFSY, ftpfs_anonymous_passwd, 48, 0, "input-passwd",
947 &ret_passwd),
948 /* 11 */ QUICK_LABEL (4, VFSX, 5, VFSY, N_("ftp anonymous password:")),
949 #endif /* ENABLE_VFS_FTP */
950 /* 12 */ QUICK_LABEL (49, VFSX, 3, VFSY, N_("sec")),
951 /* 13 */ QUICK_INPUT (38, VFSX, 3, VFSY, buffer2, 10, 0, "input-timo-vfs", &ret_timeout),
952 /* 14 */ QUICK_LABEL (4, VFSX, 3, VFSY, N_("Timeout for freeing VFSs:")),
953 QUICK_END
956 QuickDialog confvfs_dlg = {
957 VFSX, VFSY, -1, -1, N_("Virtual File System Setting"),
958 "[Virtual FS]", confvfs_widgets,
959 #ifdef ENABLE_VFS_FTP
960 confvfs_callback,
961 #else
962 NULL,
963 #endif
964 FALSE
967 #ifdef ENABLE_VFS_FTP
968 g_snprintf (buffer3, sizeof (buffer3), "%i", ftpfs_directory_timeout);
970 if (!ftpfs_always_use_proxy)
971 confvfs_widgets[5].options = W_DISABLED;
972 #endif
974 g_snprintf (buffer2, sizeof (buffer2), "%i", vfs_timeout);
976 if (quick_dialog (&confvfs_dlg) != B_CANCEL)
978 vfs_timeout = atoi (ret_timeout);
979 g_free (ret_timeout);
981 if (vfs_timeout < 0 || vfs_timeout > 10000)
982 vfs_timeout = 10;
983 #ifdef ENABLE_VFS_FTP
984 g_free (ftpfs_anonymous_passwd);
985 ftpfs_anonymous_passwd = ret_passwd;
986 g_free (ftpfs_proxy_host);
987 ftpfs_proxy_host = ret_ftp_proxy;
988 ftpfs_directory_timeout = atoi (ret_directory_timeout);
989 g_free (ret_directory_timeout);
990 #endif
993 #undef VFSX
994 #undef VFSY
997 #endif /* ENABLE_VFS */
999 /* --------------------------------------------------------------------------------------------- */
1001 char *
1002 cd_dialog (void)
1004 const char *label = N_("cd");
1005 const int ylen = 5;
1006 const int xlen = 57;
1008 int len;
1010 #ifdef ENABLE_NLS
1011 label = _(label);
1012 #endif
1014 len = str_term_width1 (label);
1017 char *my_str;
1019 QuickWidget quick_widgets[] = {
1020 /* 0 */ QUICK_INPUT (4 + len, xlen, 2, ylen, "", xlen - 7 - len, 2, "input", &my_str),
1021 /* 1 */ QUICK_LABEL (3, xlen, 2, ylen, label),
1022 QUICK_END
1025 QuickDialog Quick_input = {
1026 xlen, ylen, 2, LINES - 2 - ylen, _("Quick cd"),
1027 "[Quick cd]", quick_widgets, NULL, TRUE
1030 return (quick_dialog (&Quick_input) != B_CANCEL) ? my_str : NULL;
1034 /* --------------------------------------------------------------------------------------------- */
1036 void
1037 symlink_dialog (const char *existing, const char *new, char **ret_existing, char **ret_new)
1039 QuickWidget quick_widgets[] = {
1040 /* 0 */ QUICK_BUTTON (50, 80, 6, 8, N_("&Cancel"), B_CANCEL, NULL),
1041 /* 1 */ QUICK_BUTTON (16, 80, 6, 8, N_("&OK"), B_ENTER, NULL),
1042 /* 2 */ QUICK_INPUT (4, 80, 5, 8, new, 58, 0, "input-1", ret_new),
1043 /* 3 */ QUICK_LABEL (4, 80, 4, 8, N_("Symbolic link filename:")),
1044 /* 4 */ QUICK_INPUT (4, 80, 3, 8, existing, 58, 0, "input-2", ret_existing),
1045 /* 5 */ QUICK_LABEL (4, 80, 2, 8,
1046 N_("Existing filename (filename symlink will point to):")),
1047 QUICK_END
1050 QuickDialog Quick_input = {
1051 64, 12, -1, -1, N_("Symbolic link"),
1052 "[File Menu]", quick_widgets, NULL, FALSE
1055 if (quick_dialog (&Quick_input) == B_CANCEL)
1057 *ret_new = NULL;
1058 *ret_existing = NULL;
1062 /* --------------------------------------------------------------------------------------------- */
1064 #ifdef WITH_BACKGROUND
1065 void
1066 jobs_cmd (void)
1068 register int i;
1069 int n_buttons = sizeof (job_buttons) / sizeof (job_buttons[0]);
1071 #ifdef ENABLE_NLS
1072 static int i18n_flag = 0;
1073 if (!i18n_flag)
1075 int startx = job_buttons[0].xpos;
1076 int len;
1078 for (i = 0; i < n_buttons; i++)
1080 job_buttons[i].name = _(job_buttons[i].name);
1082 len = str_term_width1 (job_buttons[i].name) + 4;
1083 JOBS_X = max (JOBS_X, startx + len + 3);
1085 job_buttons[i].xpos = startx;
1086 startx += len;
1089 /* Last button - Ok a.k.a. Cancel :) */
1090 job_buttons[n_buttons - 1].xpos =
1091 JOBS_X - str_term_width1 (job_buttons[n_buttons - 1].name) - 7;
1093 i18n_flag = 1;
1095 #endif /* ENABLE_NLS */
1097 jobs_dlg = create_dlg (TRUE, 0, 0, JOBS_Y, JOBS_X, dialog_colors, NULL,
1098 "[Background jobs]", _("Background Jobs"), DLG_CENTER | DLG_REVERSE);
1100 bg_list = listbox_new (2, 3, JOBS_Y - 9, JOBS_X - 7, FALSE, NULL);
1101 add_widget (jobs_dlg, bg_list);
1103 i = n_buttons;
1104 while (i--)
1106 add_widget (jobs_dlg, button_new (JOBS_Y - 4,
1107 job_buttons[i].xpos, job_buttons[i].value,
1108 NORMAL_BUTTON, job_buttons[i].name,
1109 job_buttons[i].callback));
1112 /* Insert all of task information in the list */
1113 jobs_fill_listbox ();
1114 run_dlg (jobs_dlg);
1116 destroy_dlg (jobs_dlg);
1118 #endif /* WITH_BACKGROUND */
1120 /* --------------------------------------------------------------------------------------------- */
1122 #ifdef ENABLE_VFS_SMB
1123 struct smb_authinfo *
1124 vfs_smb_get_authinfo (const char *host, const char *share, const char *domain, const char *user)
1126 static int dialog_x = 44;
1127 int b0 = 3, dialog_y = 12;
1128 static const char *lc_labs[] = { N_("Domain:"), N_("Username:"), N_("Password:") };
1129 static const char *buts[] = { N_("&OK"), N_("&Cancel") };
1130 static int ilen = 30, istart = 14;
1131 static int b2 = 30;
1132 char *title;
1133 WInput *in_password;
1134 WInput *in_user;
1135 WInput *in_domain;
1136 Dlg_head *auth_dlg;
1137 struct smb_authinfo *return_value = NULL;
1139 #ifdef ENABLE_NLS
1140 static int i18n_flag = 0;
1142 if (!i18n_flag)
1144 register int i = sizeof (lc_labs) / sizeof (lc_labs[0]);
1145 int l1, maxlen = 0;
1147 while (i--)
1149 l1 = str_term_width1 (lc_labs[i] = _(lc_labs[i]));
1150 if (l1 > maxlen)
1151 maxlen = l1;
1153 i = maxlen + ilen + 7;
1154 if (i > dialog_x)
1155 dialog_x = i;
1157 for (i = sizeof (buts) / sizeof (buts[0]), l1 = 0; i--;)
1159 l1 += str_term_width1 (buts[i] = _(buts[i]));
1161 l1 += 15;
1162 if (l1 > dialog_x)
1163 dialog_x = l1;
1165 ilen = dialog_x - 7 - maxlen; /* for the case of very long buttons :) */
1166 istart = dialog_x - 3 - ilen;
1168 b2 = dialog_x - (str_term_width1 (buts[1]) + 6);
1170 i18n_flag = 1;
1173 #endif /* ENABLE_NLS */
1175 if (!domain)
1176 domain = "";
1177 if (!user)
1178 user = "";
1180 title = g_strdup_printf (_("Password for \\\\%s\\%s"), host, share);
1182 auth_dlg = create_dlg (TRUE, 0, 0, dialog_y, dialog_x, dialog_colors, NULL,
1183 "[Smb Authinfo]", title, DLG_CENTER | DLG_REVERSE);
1185 g_free (title);
1187 in_user =
1188 input_new (5, istart, input_get_default_colors (), ilen, user, "auth_name",
1189 INPUT_COMPLETE_DEFAULT);
1190 add_widget (auth_dlg, in_user);
1192 in_domain =
1193 input_new (3, istart, input_get_default_colors (), ilen, domain, "auth_domain",
1194 INPUT_COMPLETE_DEFAULT);
1196 add_widget (auth_dlg, in_domain);
1197 add_widget (auth_dlg, button_new (9, b2, B_CANCEL, NORMAL_BUTTON, buts[1], 0));
1198 add_widget (auth_dlg, button_new (9, b0, B_ENTER, DEFPUSH_BUTTON, buts[0], 0));
1200 in_password =
1201 input_new (7, istart, input_get_default_colors (), ilen, "", "auth_password",
1202 INPUT_COMPLETE_DEFAULT);
1204 in_password->completion_flags = 0;
1205 in_password->is_password = 1;
1206 add_widget (auth_dlg, in_password);
1208 add_widget (auth_dlg, label_new (7, 3, lc_labs[2]));
1209 add_widget (auth_dlg, label_new (5, 3, lc_labs[1]));
1210 add_widget (auth_dlg, label_new (3, 3, lc_labs[0]));
1212 if (run_dlg (auth_dlg) != B_CANCEL)
1213 return_value = vfs_smb_authinfo_new (host, share, in_domain->buffer, in_user->buffer,
1214 in_password->buffer);
1216 destroy_dlg (auth_dlg);
1218 return return_value;
1220 #endif /* ENABLE_VFS_SMB */
1222 /* --------------------------------------------------------------------------------------------- */