mc/src/wtools.c

561 lines
13 KiB
C
Raw Normal View History

1998-02-27 07:54:42 +03:00
/* Widget based utility functions.
Copyright (C) 1994, 1995 the Free Software Foundation
Authors: 1994, 1995, 1996 Miguel de Icaza
1994, 1995 Radek Doulik
1995 Jakub Jelinek
1995 Andrej Borsenkow
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1998-02-27 07:54:42 +03:00
*/
#include <config.h>
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
1998-02-27 07:54:42 +03:00
#include "global.h"
#include "tty.h"
1998-02-27 07:54:42 +03:00
#include "win.h"
#include "color.h"
#include "mouse.h"
#include "dialog.h"
1998-02-27 07:54:42 +03:00
#include "widget.h"
#include "menu.h"
#include "wtools.h"
#include "key.h" /* For mi_getch() */
#include "complete.h" /* INPUT_COMPLETE_CD */
#include "background.h" /* parent_call */
1998-02-27 07:54:42 +03:00
Listbox *
create_listbox_window (int cols, int lines, char *title, char *help)
1998-02-27 07:54:42 +03:00
{
int xpos, ypos, len;
Listbox *listbox = g_new (Listbox, 1);
char *cancel_string = _("&Cancel");
1998-02-27 07:54:42 +03:00
/* Adjust sizes */
lines = (lines > LINES - 6) ? LINES - 6 : lines;
1998-02-27 07:54:42 +03:00
if (title && (cols < (len = strlen (title) + 2)))
cols = len;
1998-02-27 07:54:42 +03:00
/* no &, but 4 spaces around button for brackets and such */
if (cols < (len = strlen (cancel_string) + 3))
cols = len;
1998-02-27 07:54:42 +03:00
cols = cols > COLS - 6 ? COLS - 6 : cols;
xpos = (COLS - cols) / 2;
ypos = (LINES - lines) / 2 - 2;
1998-02-27 07:54:42 +03:00
/* Create components */
listbox->dlg =
create_dlg (ypos, xpos, lines + 6, cols + 4, dialog_colors, NULL,
help, title, DLG_CENTER | DLG_REVERSE);
listbox->list = listbox_new (2, 2, cols, lines, 0);
1998-02-27 07:54:42 +03:00
add_widget (listbox->dlg,
button_new (lines + 3, (cols / 2 + 2) - len / 2, B_CANCEL,
NORMAL_BUTTON, cancel_string, 0));
1998-02-27 07:54:42 +03:00
add_widget (listbox->dlg, listbox->list);
1998-02-27 07:54:42 +03:00
return listbox;
}
/* Returns the number of the item selected */
int run_listbox (Listbox *l)
{
int val;
run_dlg (l->dlg);
if (l->dlg->ret_value == B_CANCEL)
val = -1;
else
val = l->list->pos;
destroy_dlg (l->dlg);
g_free (l);
1998-02-27 07:54:42 +03:00
return val;
}
static Dlg_head *last_query_dlg;
1998-02-27 07:54:42 +03:00
static int sel_pos = 0;
/* Used to ask questions to the user */
int
query_dialog (const char *header, const char *text, int flags, int count, ...)
1998-02-27 07:54:42 +03:00
{
va_list ap;
Dlg_head *query_dlg;
WButton *button;
WButton *defbutton = NULL;
1998-02-27 07:54:42 +03:00
int win_len = 0;
int i;
int result = -1;
int xpos, ypos;
int cols, lines;
char *cur_name;
static const int *query_colors;
1998-02-27 07:54:42 +03:00
/* set dialog colors */
if (flags & D_ERROR)
query_colors = alarm_colors;
else
query_colors = dialog_colors;
if (header == MSG_ERROR)
header = _("Error");
if (count > 0) {
1998-02-27 07:54:42 +03:00
va_start (ap, count);
for (i = 0; i < count; i++) {
char *cp = va_arg (ap, char *);
win_len += strlen (cp) + 6;
if (strchr (cp, '&') != NULL)
win_len--;
}
1998-02-27 07:54:42 +03:00
va_end (ap);
}
/* count coordinates */
cols = 6 + max (win_len, max (strlen (header), msglen (text, &lines)));
1998-02-27 07:54:42 +03:00
lines += 4 + (count > 0 ? 2 : 0);
xpos = COLS / 2 - cols / 2;
ypos = LINES / 3 - (lines - 3) / 2;
1998-02-27 07:54:42 +03:00
/* prepare dialog */
query_dlg =
create_dlg (ypos, xpos, lines, cols, query_colors, NULL,
"[QueryBox]", header, DLG_NONE);
1998-02-27 07:54:42 +03:00
if (count > 0) {
cols = (cols - win_len - 2) / 2 + 2;
1998-02-27 07:54:42 +03:00
va_start (ap, count);
for (i = 0; i < count; i++) {
1998-02-27 07:54:42 +03:00
cur_name = va_arg (ap, char *);
xpos = strlen (cur_name) + 6;
if (strchr (cur_name, '&') != NULL)
xpos--;
button =
button_new (lines - 3, cols, B_USER + i, NORMAL_BUTTON,
cur_name, 0);
add_widget (query_dlg, button);
1998-02-27 07:54:42 +03:00
cols += xpos;
if (i == sel_pos)
defbutton = button;
1998-02-27 07:54:42 +03:00
}
va_end (ap);
add_widget (query_dlg, label_new (2, 3, text));
if (defbutton)
dlg_select_widget (query_dlg, defbutton);
1998-02-27 07:54:42 +03:00
/* run dialog and make result */
run_dlg (query_dlg);
switch (query_dlg->ret_value) {
1998-02-27 07:54:42 +03:00
case B_CANCEL:
break;
default:
result = query_dlg->ret_value - B_USER;
1998-02-27 07:54:42 +03:00
}
/* free used memory */
destroy_dlg (query_dlg);
} else {
add_widget (query_dlg, label_new (2, 3, text));
add_widget (query_dlg,
button_new (0, 0, 0, HIDDEN_BUTTON, "-", 0));
1998-02-27 07:54:42 +03:00
last_query_dlg = query_dlg;
}
sel_pos = 0;
return result;
}
void query_set_sel (int new_sel)
{
sel_pos = new_sel;
}
/* Create message dialog */
static struct Dlg_head *
do_create_message (int flags, const char *title, const char *text)
{
char *p;
Dlg_head *d;
/* Add empty lines before and after the message */
p = g_strdup_printf ("\n%s\n", text);
query_dialog (title, p, flags, 0);
d = last_query_dlg;
init_dlg (d);
g_free (p);
return d;
}
1998-02-27 07:54:42 +03:00
/*
* Create message dialog. The caller must call dlg_run_done() and
* destroy_dlg() to dismiss it. Not safe to call from background.
*/
struct Dlg_head *
create_message (int flags, const char *title, const char *text, ...)
1998-02-27 07:54:42 +03:00
{
va_list args;
1998-02-27 07:54:42 +03:00
Dlg_head *d;
char *p;
1998-02-27 07:54:42 +03:00
va_start (args, text);
p = g_strdup_vprintf (text, args);
1998-02-27 07:54:42 +03:00
va_end (args);
d = do_create_message (flags, title, p);
g_free (p);
return d;
1998-02-27 07:54:42 +03:00
}
/*
* Show message dialog. Dismiss it when any key is pressed.
* Not safe to call from background.
*/
void
message (int flags, const char *title, const char *text, ...)
{
va_list args;
Dlg_head *d;
char *p;
va_start (args, text);
p = g_strdup_vprintf (text, args);
va_end (args);
d = do_create_message (flags, title, p);
g_free (p);
mi_getch ();
dlg_run_done (d);
destroy_dlg (d);
}
1998-02-27 07:54:42 +03:00
/* Show message box from background */
#ifdef WITH_BACKGROUND
static void
bg_message (int dummy, int *flags, char *title, const char *text)
{
title = g_strdup_printf ("%s %s", _("Background process:"), title);
message (*flags, title, "%s", text);
g_free (title);
}
#endif /* WITH_BACKGROUND */
/* Show message box, background safe */
void
mc_message (int flags, char *title, const char *text, ...)
{
char *p;
va_list ap;
va_start (ap, text);
p = g_strdup_vprintf (text, ap);
va_end (ap);
#ifdef WITH_BACKGROUND
if (we_are_background) {
if (title == MSG_ERROR)
title = _("Error");
parent_call ((void *) bg_message, NULL, 3, sizeof (flags), &flags,
strlen (title), title, strlen (p), p);
} else
#endif /* WITH_BACKGROUND */
message (flags, title, "%s", p);
g_free (p);
}
1998-02-27 07:54:42 +03:00
/* {{{ Quick dialog routines */
#define I18N(x) (do_int && *x ? (x = _(x)): x)
int
quick_dialog_skip (QuickDialog *qd, int nskip)
1998-02-27 07:54:42 +03:00
{
Dlg_head *dd;
void *widget;
WRadio *r;
int xpos;
int ypos;
int return_val;
WInput *input;
1998-02-27 07:54:42 +03:00
QuickWidget *qw;
int do_int;
int count = 0; /* number of quick widgets */
int curr_widget; /* number of the current quick widget */
Widget **widgets; /* table of corresponding widgets */
if (!qd->i18n) {
qd->i18n = 1;
do_int = 1;
if (*qd->title)
qd->title = _(qd->title);
} else
do_int = 0;
1998-02-27 07:54:42 +03:00
if (qd->xpos == -1)
dd = create_dlg (0, 0, qd->ylen, qd->xlen, dialog_colors, NULL,
qd->help, qd->title, DLG_CENTER | DLG_TRYUP | DLG_REVERSE);
1998-02-27 07:54:42 +03:00
else
dd = create_dlg (qd->ypos, qd->xpos, qd->ylen, qd->xlen,
dialog_colors, NULL, qd->help, qd->title,
DLG_REVERSE);
1998-02-27 07:54:42 +03:00
/* We pass this to the callback */
dd->cols = qd->xlen;
1998-02-27 07:54:42 +03:00
dd->lines = qd->ylen;
/* Count widgets */
for (qw = qd->widgets; qw->widget_type; qw++) {
count++;
}
widgets = (Widget **) g_new (Widget *, count);
for (curr_widget = 0, qw = qd->widgets; qw->widget_type; qw++) {
xpos = (qd->xlen * qw->relative_x) / qw->x_divisions;
ypos = (qd->ylen * qw->relative_y) / qw->y_divisions;
switch (qw->widget_type) {
1998-02-27 07:54:42 +03:00
case quick_checkbox:
widget = check_new (ypos, xpos, *qw->result, I18N (qw->text));
1998-02-27 07:54:42 +03:00
break;
case quick_radio:
r = radio_new (ypos, xpos, qw->hotkey_pos, qw->str_result, 1);
1998-02-27 07:54:42 +03:00
r->pos = r->sel = qw->value;
widget = r;
break;
1998-02-27 07:54:42 +03:00
case quick_button:
widget =
button_new (ypos, xpos, qw->value,
(qw->value ==
B_ENTER) ? DEFPUSH_BUTTON : NORMAL_BUTTON,
I18N (qw->text), 0);
1998-02-27 07:54:42 +03:00
break;
/* We use the hotkey pos as the field length */
case quick_input:
input =
input_new (ypos, xpos, INPUT_COLOR, qw->hotkey_pos,
qw->text, qw->histname);
1998-02-27 07:54:42 +03:00
input->is_password = qw->value == 1;
input->point = 0;
if (qw->value & 2)
input->completion_flags |= INPUT_COMPLETE_CD;
1998-02-27 07:54:42 +03:00
widget = input;
break;
case quick_label:
widget = label_new (ypos, xpos, I18N (qw->text));
1998-02-27 07:54:42 +03:00
break;
1998-02-27 07:54:42 +03:00
default:
widget = 0;
fprintf (stderr, "QuickWidget: unknown widget type\n");
break;
}
widgets[curr_widget++] = widget;
add_widget (dd, widget);
1998-02-27 07:54:42 +03:00
}
while (nskip--)
dd->current = dd->current->next;
run_dlg (dd);
/* Get the data if we found something interesting */
if (dd->ret_value != B_CANCEL) {
for (curr_widget = 0, qw = qd->widgets; qw->widget_type; qw++) {
Widget *w = widgets[curr_widget++];
switch (qw->widget_type) {
1998-02-27 07:54:42 +03:00
case quick_checkbox:
*qw->result = ((WCheck *) w)->state & C_BOOL;
1998-02-27 07:54:42 +03:00
break;
case quick_radio:
*qw->result = ((WRadio *) w)->sel;
1998-02-27 07:54:42 +03:00
break;
1998-02-27 07:54:42 +03:00
case quick_input:
*qw->str_result = g_strdup (((WInput *) w)->buffer);
1998-02-27 07:54:42 +03:00
break;
}
}
}
return_val = dd->ret_value;
destroy_dlg (dd);
g_free (widgets);
1998-02-27 07:54:42 +03:00
return return_val;
}
int quick_dialog (QuickDialog *qd)
{
return quick_dialog_skip (qd, 0);
}
/* }}} */
/* {{{ Input routines */
1998-02-27 07:54:42 +03:00
#define INPUT_INDEX 2
/* Show dialog, not background safe */
static char *
fg_input_dialog_help (char *header, char *text, char *help,
char *def_text)
1998-02-27 07:54:42 +03:00
{
QuickDialog Quick_input;
QuickWidget quick_widgets[] = {
{quick_button, 6, 10, 1, 0, N_("&Cancel"), 0, B_CANCEL, 0, 0,
NULL},
{quick_button, 3, 10, 1, 0, N_("&OK"), 0, B_ENTER, 0, 0, NULL},
{quick_input, 4, 80, 0, 0, "", 58, 0, 0, 0, NULL},
{quick_label, 4, 80, 2, 0, "", 0, 0, 0, 0, NULL},
{0}
};
1998-02-27 07:54:42 +03:00
int len;
int i;
int lines;
int ret;
1998-02-27 07:54:42 +03:00
char *my_str;
char histname[64] = "inp|";
/* we need a unique name for histname because widget.c:history_tool()
needs a unique name for each dialog - using the header is ideal */
strncpy (histname + 3, header, 60);
histname[63] = '\0';
quick_widgets[2].histname = histname;
1998-02-27 07:54:42 +03:00
len = max (strlen (header), msglen (text, &lines)) + 4;
len = max (len, 64);
/* The special value of def_text is used to identify password boxes
and hide characters with "*". Don't save passwords in history! */
if (def_text == INPUT_PASSWORD) {
quick_widgets[INPUT_INDEX].value = 1;
histname[3] = 0;
def_text = "";
1998-02-27 07:54:42 +03:00
} else {
quick_widgets[INPUT_INDEX].value = 0;
1998-02-27 07:54:42 +03:00
}
#ifdef ENABLE_NLS
/*
* An attempt to place buttons symmetrically, based on actual i18n
* length of the string. It looks nicer with i18n (IMO) - alex
*/
quick_widgets[0].relative_x = len / 2 + 4;
quick_widgets[1].relative_x =
len / 2 - (strlen (_(quick_widgets[1].text)) + 9);
quick_widgets[0].x_divisions = quick_widgets[1].x_divisions = len;
#endif /* ENABLE_NLS */
Quick_input.xlen = len;
Quick_input.xpos = -1;
1998-02-27 07:54:42 +03:00
Quick_input.title = header;
Quick_input.help = help;
Quick_input.i18n = 0;
quick_widgets[INPUT_INDEX + 1].text = g_strstrip (g_strdup (text));
quick_widgets[INPUT_INDEX].text = def_text;
1998-02-27 07:54:42 +03:00
for (i = 0; i < 4; i++)
quick_widgets[i].y_divisions = lines + 6;
Quick_input.ylen = lines + 6;
1998-02-27 07:54:42 +03:00
for (i = 0; i < 3; i++)
quick_widgets[i].relative_y += 2 + lines;
quick_widgets[INPUT_INDEX].str_result = &my_str;
1998-02-27 07:54:42 +03:00
Quick_input.widgets = quick_widgets;
ret = quick_dialog (&Quick_input);
g_free (quick_widgets[INPUT_INDEX + 1].text);
if (ret != B_CANCEL) {
return *(quick_widgets[INPUT_INDEX].str_result);
1998-02-27 07:54:42 +03:00
} else
return 0;
}
/* Show input dialog, background safe */
char *
input_dialog_help (char *header, char *text, char *help, char *def_text)
{
#ifdef WITH_BACKGROUND
if (we_are_background)
return parent_call_string ((void *) fg_input_dialog_help, 4,
strlen (header), header, strlen (text),
text, strlen (help), help,
strlen (def_text), def_text);
else
#endif /* WITH_BACKGROUND */
return fg_input_dialog_help (header, text, help, def_text);
}
/* Show input dialog with default help, background safe */
1998-02-27 07:54:42 +03:00
char *input_dialog (char *header, char *text, char *def_text)
{
return input_dialog_help (header, text, "[Input Line Keys]", def_text);
}
char *input_expand_dialog (char *header, char *text, char *def_text)
{
char *result;
char *expanded;
result = input_dialog (header, text, def_text);
if (result){
expanded = tilde_expand (result);
if (expanded){
g_free (result);
1998-02-27 07:54:42 +03:00
return expanded;
}
1998-02-27 07:54:42 +03:00
}
return result;
}
/* }}} */
/* }}} */
/*
Cause emacs to enter folding mode for this file:
Local variables:
end:
*/