1998-02-27 07:54:42 +03:00
|
|
|
/* {{{ */
|
|
|
|
|
|
|
|
/* {{{ Copyright Notice */
|
|
|
|
|
|
|
|
/* 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
|
2000-08-23 02:50:00 +04:00
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* [] = "$Id$" */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
2001-09-03 09:07:40 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#include "global.h"
|
2001-09-03 09:07:40 +04:00
|
|
|
#include "tty.h"
|
1998-02-27 07:54:42 +03:00
|
|
|
#include "win.h"
|
|
|
|
#include "color.h"
|
|
|
|
#include "mouse.h"
|
|
|
|
#include "dlg.h"
|
|
|
|
#include "widget.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "wtools.h"
|
|
|
|
#include "key.h" /* For mi_getch() */
|
1998-12-02 08:18:20 +03:00
|
|
|
#include "dialog.h" /* For do_refresh() */
|
1998-02-27 07:54:42 +03:00
|
|
|
#include "complete.h" /* INPUT_COMPLETE_CD */
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ Listbox utility functions */
|
|
|
|
|
|
|
|
Listbox *create_listbox_window (int cols, int lines, char *title, char *help)
|
|
|
|
{
|
|
|
|
int xpos, ypos, len;
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
Listbox *listbox = g_new (Listbox, 1);
|
1998-03-25 08:16:00 +03:00
|
|
|
char* cancel_string = _("&Cancel");
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
/* Adjust sizes */
|
|
|
|
lines = (lines > LINES-6) ? LINES - 6 : lines;
|
|
|
|
|
|
|
|
if (title && (cols < (len = strlen(title) + 2)))
|
|
|
|
cols = len;
|
|
|
|
|
|
|
|
/* no &, but 4 spaces around button for brackets and such */
|
|
|
|
if (cols < (len = strlen(cancel_string) + 3))
|
|
|
|
cols = len;
|
|
|
|
|
|
|
|
cols = cols > COLS-6 ? COLS-6 : cols;
|
|
|
|
|
|
|
|
/* I'm not sure if this -2 is safe, should test it */
|
|
|
|
xpos = (COLS-cols)/2;
|
|
|
|
ypos = (LINES-lines)/2 - 2;
|
|
|
|
|
|
|
|
/* Create components */
|
|
|
|
listbox->dlg = create_dlg (ypos, xpos, lines+6, cols+4, dialog_colors,
|
2002-09-03 11:42:36 +04:00
|
|
|
NULL, help, title, DLG_CENTER);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
listbox->list = listbox_new (2, 2, cols, lines, listbox_finish, 0, "li");
|
|
|
|
|
|
|
|
add_widget (listbox->dlg,
|
|
|
|
button_new (lines+3, (cols/2 + 2) - len/2,
|
|
|
|
B_CANCEL, NORMAL_BUTTON, cancel_string, 0, 0, "c"));
|
|
|
|
add_widget (listbox->dlg, listbox->list);
|
2002-09-02 11:37:15 +04:00
|
|
|
common_dialog_repaint (listbox->dlg);
|
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);
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
g_free (l);
|
1998-02-27 07:54:42 +03:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ Query Dialog functions */
|
|
|
|
Dlg_head *last_query_dlg;
|
|
|
|
|
|
|
|
static int sel_pos = 0;
|
|
|
|
|
|
|
|
/* Used to ask questions to the user */
|
|
|
|
int query_dialog (char *header, char *text, int flags, int count, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
Dlg_head *query_dlg;
|
|
|
|
int win_len = 0;
|
|
|
|
int i;
|
|
|
|
int result = -1;
|
|
|
|
int xpos, ypos;
|
|
|
|
int cols, lines;
|
|
|
|
char *cur_name;
|
2002-08-31 04:31:14 +04:00
|
|
|
static const int *query_colors;
|
2002-08-31 04:29:48 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
/* set dialog colors */
|
2002-08-31 04:29:48 +04:00
|
|
|
if (flags & D_ERROR)
|
|
|
|
query_colors = alarm_colors;
|
|
|
|
else
|
|
|
|
query_colors = dialog_colors;
|
1998-02-27 07:54:42 +03:00
|
|
|
|
1998-03-30 01:07:37 +04:00
|
|
|
if (header == MSG_ERROR)
|
2001-06-16 10:17:28 +04:00
|
|
|
header = _(" Error ");
|
1998-03-30 01:07:37 +04:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
if (count > 0){
|
|
|
|
va_start (ap, count);
|
|
|
|
for (i = 0; i < count; i++)
|
1998-04-16 00:09:13 +04:00
|
|
|
{
|
|
|
|
char* cp = va_arg (ap, char *);
|
2001-06-16 10:17:28 +04:00
|
|
|
win_len += strlen (cp) + 6;
|
1998-04-16 00:09:13 +04:00
|
|
|
if (strchr (cp, '&') != NULL)
|
|
|
|
win_len--;
|
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
va_end (ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* count coordinates */
|
1998-04-16 00:09:13 +04:00
|
|
|
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;
|
|
|
|
|
|
|
|
/* prepare dialog */
|
2002-09-02 20:31:33 +04:00
|
|
|
query_dlg = create_dlg (ypos, xpos, lines, cols, query_colors, NULL,
|
2002-09-03 11:42:36 +04:00
|
|
|
"[QueryBox]", header, DLG_BACKWARD);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
if (count > 0){
|
|
|
|
|
|
|
|
cols = (cols-win_len-2)/2+2;
|
|
|
|
va_start (ap, count);
|
|
|
|
for (i = 0; i < count; i++){
|
|
|
|
cur_name = va_arg (ap, char *);
|
|
|
|
xpos = strlen (cur_name)+6;
|
1998-04-16 00:09:13 +04:00
|
|
|
if (strchr(cur_name, '&') != NULL)
|
|
|
|
xpos--;
|
1998-02-27 07:54:42 +03:00
|
|
|
add_widget (query_dlg, button_new
|
|
|
|
(lines-3, cols, B_USER+i, NORMAL_BUTTON, cur_name,
|
|
|
|
0, 0, NULL));
|
|
|
|
cols += xpos;
|
|
|
|
if (i == sel_pos)
|
|
|
|
query_dlg->initfocus = query_dlg->current;
|
|
|
|
}
|
|
|
|
va_end (ap);
|
|
|
|
|
|
|
|
add_widget (query_dlg, label_new (2, 3, text, NULL));
|
|
|
|
|
|
|
|
/* run dialog and make result */
|
|
|
|
run_dlg (query_dlg);
|
|
|
|
switch (query_dlg->ret_value){
|
|
|
|
case B_CANCEL:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
result = query_dlg->ret_value-B_USER;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free used memory */
|
|
|
|
destroy_dlg (query_dlg);
|
|
|
|
} else {
|
|
|
|
add_widget (query_dlg, label_new (2, 3, text, NULL));
|
|
|
|
add_widget (query_dlg, button_new(0, 0, 0, HIDDEN_BUTTON, "-", 0, 0, NULL));
|
|
|
|
last_query_dlg = query_dlg;
|
|
|
|
}
|
|
|
|
sel_pos = 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void query_set_sel (int new_sel)
|
|
|
|
{
|
|
|
|
sel_pos = new_sel;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ The message function */
|
|
|
|
|
|
|
|
/* To show nice messages to the users */
|
2001-05-15 02:50:28 +04:00
|
|
|
Dlg_head *message (int error, char *header, const char *text, ...)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buffer [4096];
|
|
|
|
Dlg_head *d;
|
|
|
|
|
|
|
|
/* Setup the display information */
|
|
|
|
strcpy (buffer, "\n");
|
|
|
|
va_start (args, text);
|
2002-07-25 22:07:42 +04:00
|
|
|
g_vsnprintf (&buffer [1], sizeof (buffer) - 2, text, args);
|
1998-02-27 07:54:42 +03:00
|
|
|
strcat (buffer, "\n");
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
query_dialog (header, buffer, error, 0);
|
1998-12-03 02:44:06 +03:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
d = last_query_dlg;
|
|
|
|
init_dlg (d);
|
|
|
|
if (!(error & D_INSERT)){
|
|
|
|
mi_getch ();
|
|
|
|
dlg_run_done (d);
|
|
|
|
destroy_dlg (d);
|
|
|
|
} else
|
|
|
|
return d;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ The chooser routines */
|
|
|
|
|
|
|
|
static int remove_callback (int i, void *data)
|
|
|
|
{
|
|
|
|
Chooser *c = (Chooser *) data;
|
|
|
|
|
|
|
|
listbox_remove_current (c->listbox, 0);
|
|
|
|
|
|
|
|
dlg_select_widget (c->dialog, c->listbox);
|
|
|
|
dlg_select_nth_widget (c->dialog, 0);
|
|
|
|
|
|
|
|
/* Return: do not abort dialog */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Chooser *new_chooser (int lines, int cols, char *help, int flags)
|
|
|
|
{
|
|
|
|
Chooser *c;
|
|
|
|
int button_lines;
|
|
|
|
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
c =g_new (Chooser, 1);
|
2002-09-02 20:31:33 +04:00
|
|
|
c->dialog = create_dlg (0, 0, lines, cols, dialog_colors, NULL,
|
2002-08-19 10:22:32 +04:00
|
|
|
help, "chooser", DLG_CENTER);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
c->dialog->lines = lines;
|
|
|
|
c->dialog->cols = cols;
|
|
|
|
|
|
|
|
button_lines = flags & CHOOSE_EDITABLE ? 3 : 0;
|
|
|
|
|
|
|
|
c->listbox = listbox_new (1, 1, cols-2, lines-button_lines,
|
|
|
|
listbox_finish, 0, "listbox");
|
|
|
|
|
|
|
|
if (button_lines){
|
|
|
|
add_widget (c->dialog, button_new (lines-button_lines+1,
|
1998-03-25 08:16:00 +03:00
|
|
|
20, B_ENTER, DEFPUSH_BUTTON, _("&Remove"),
|
1998-02-27 07:54:42 +03:00
|
|
|
remove_callback, c, "button-remove"));
|
|
|
|
add_widget (c->dialog, button_new (lines-button_lines+1,
|
1998-03-25 08:16:00 +03:00
|
|
|
4, B_CANCEL, NORMAL_BUTTON, _("&Cancel"),
|
1998-02-27 07:54:42 +03:00
|
|
|
0, 0, "button-cancel"));
|
|
|
|
}
|
|
|
|
add_widget (c->dialog, c->listbox);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
int run_chooser (Chooser *c)
|
|
|
|
{
|
|
|
|
run_dlg (c->dialog);
|
|
|
|
return c->dialog->ret_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void destroy_chooser (Chooser *c)
|
|
|
|
{
|
|
|
|
destroy_dlg (c->dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ Quick dialog routines */
|
|
|
|
|
|
|
|
static int quick_callback (struct Dlg_head *h, int id, int Msg)
|
|
|
|
{
|
|
|
|
switch (Msg){
|
|
|
|
case DLG_DRAW:
|
2002-08-23 03:31:35 +04:00
|
|
|
common_dialog_repaint (h);
|
1998-02-27 07:54:42 +03:00
|
|
|
break;
|
|
|
|
case DLG_KEY:
|
|
|
|
if (id == '\n'){
|
|
|
|
h->ret_value = B_ENTER;
|
1998-03-14 03:42:23 +03:00
|
|
|
dlg_stop (h);
|
1998-02-27 07:54:42 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-03-30 23:14:22 +04:00
|
|
|
#define I18N(x) (do_int && *x ? (x = _(x)): x)
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
int quick_dialog_skip (QuickDialog *qd, int nskip)
|
|
|
|
{
|
|
|
|
Dlg_head *dd;
|
|
|
|
void *widget;
|
|
|
|
WRadio *r;
|
|
|
|
int xpos;
|
|
|
|
int ypos;
|
|
|
|
int return_val;
|
|
|
|
WInput *input;
|
|
|
|
QuickWidget *qw;
|
1998-03-25 08:16:00 +03:00
|
|
|
int do_int;
|
|
|
|
|
|
|
|
if (!qd->i18n){
|
|
|
|
qd->i18n = 1;
|
|
|
|
do_int = 1;
|
1998-03-30 23:14:22 +04:00
|
|
|
if (*qd->title)
|
|
|
|
qd->title = _(qd->title);
|
1998-03-25 08:16:00 +03:00
|
|
|
} 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, quick_callback,
|
2002-09-03 11:42:36 +04:00
|
|
|
qd->help, qd->title, DLG_CENTER | DLG_TRYUP);
|
1998-02-27 07:54:42 +03:00
|
|
|
else
|
|
|
|
dd = create_dlg (qd->ypos, qd->xpos, qd->ylen, qd->xlen, dialog_colors,
|
|
|
|
quick_callback,
|
2002-09-03 11:42:36 +04:00
|
|
|
qd->help, qd->title, DLG_NONE);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
/* We pass this to the callback */
|
|
|
|
dd->cols = qd->xlen;
|
|
|
|
dd->lines = qd->ylen;
|
|
|
|
|
|
|
|
for (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){
|
|
|
|
case quick_checkbox:
|
1998-03-25 08:16:00 +03:00
|
|
|
widget = check_new (ypos, xpos, *qw->result, I18N (qw->text), qw->tkname);
|
1998-02-27 07:54:42 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case quick_radio:
|
|
|
|
r = radio_new (ypos, xpos, qw->hotkey_pos, qw->str_result, 1, qw->tkname);
|
|
|
|
r->pos = r->sel = qw->value;
|
|
|
|
widget = r;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case quick_button:
|
|
|
|
widget = button_new (ypos, xpos, qw->value, (qw->value==B_ENTER) ? DEFPUSH_BUTTON : NORMAL_BUTTON,
|
1998-03-25 08:16:00 +03:00
|
|
|
I18N (qw->text), 0, 0, qw->tkname);
|
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->tkname);
|
|
|
|
input->is_password = qw->value == 1;
|
|
|
|
input->point = 0;
|
|
|
|
if (qw->value & 2)
|
|
|
|
input->completion_flags |= INPUT_COMPLETE_CD;
|
|
|
|
widget = input;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case quick_label:
|
1998-03-25 08:16:00 +03:00
|
|
|
widget = label_new (ypos, xpos, I18N(qw->text), qw->tkname);
|
1998-02-27 07:54:42 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
widget = 0;
|
|
|
|
fprintf (stderr, "QuickWidget: unknown widget type\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
qw->the_widget = widget;
|
2001-04-07 01:48:11 +04:00
|
|
|
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 (qw = qd->widgets; qw->widget_type; qw++){
|
|
|
|
switch (qw->widget_type){
|
|
|
|
case quick_checkbox:
|
|
|
|
*qw->result = ((WCheck *) qw->the_widget)->state & C_BOOL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case quick_radio:
|
|
|
|
*qw->result = ((WRadio *) qw->the_widget)->sel;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case quick_input:
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
*qw->str_result = g_strdup (((WInput *) qw->the_widget)->buffer);
|
1998-02-27 07:54:42 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return_val = dd->ret_value;
|
|
|
|
destroy_dlg (dd);
|
|
|
|
|
|
|
|
return return_val;
|
|
|
|
}
|
|
|
|
|
|
|
|
int quick_dialog (QuickDialog *qd)
|
|
|
|
{
|
|
|
|
return quick_dialog_skip (qd, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ Input routines */
|
1999-03-16 03:11:32 +03:00
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#define INPUT_INDEX 2
|
|
|
|
char *real_input_dialog_help (char *header, char *text, char *help, char *def_text)
|
|
|
|
{
|
|
|
|
QuickDialog Quick_input;
|
|
|
|
QuickWidget quick_widgets [] = {
|
1998-03-25 08:16:00 +03:00
|
|
|
{ quick_button, 6, 10, 1, 0, N_("&Cancel"), 0, B_CANCEL, 0, 0,
|
2001-04-07 01:48:11 +04:00
|
|
|
"button-cancel" },
|
1998-03-25 08:16:00 +03:00
|
|
|
{ quick_button, 3, 10, 1, 0, N_("&Ok"), 0, B_ENTER, 0, 0,
|
2001-04-07 01:48:11 +04:00
|
|
|
"button-ok" },
|
|
|
|
{ quick_input, 4, 80, 0, 0, "", 58, 0, 0, 0, 0 },
|
|
|
|
{ quick_label, 3, 80, 2, 0, "", 0, 0, 0, 0, "label" },
|
1998-02-27 07:54:42 +03:00
|
|
|
{ 0 } };
|
|
|
|
|
|
|
|
int len;
|
|
|
|
int i;
|
|
|
|
int lines;
|
|
|
|
char *my_str;
|
|
|
|
char tk_name[64] = "inp|";
|
|
|
|
|
|
|
|
/* we need a unique name for tkname because widget.c:history_tool()
|
|
|
|
needs a unique name for each dialog - using the header is ideal */
|
|
|
|
|
|
|
|
strncpy (tk_name + 3, header, 60);
|
|
|
|
tk_name[63] = '\0';
|
|
|
|
quick_widgets[2].tkname = tk_name;
|
|
|
|
|
|
|
|
len = max (strlen (header), msglen (text, &lines)) + 4;
|
|
|
|
len = max (len, 64);
|
1999-03-24 15:16:52 +03:00
|
|
|
|
|
|
|
/* Translators should take care as "Password" or its translations
|
|
|
|
are used to identify password boxes and hide characters with "*" */
|
2001-06-16 10:17:28 +04:00
|
|
|
my_str = _("Password:");
|
|
|
|
if (strncmp (text, my_str, strlen (my_str)-1) == 0){
|
1998-02-27 07:54:42 +03:00
|
|
|
quick_widgets [INPUT_INDEX].value = 1;
|
|
|
|
tk_name[3]=0;
|
|
|
|
} else {
|
|
|
|
quick_widgets [INPUT_INDEX].value = 0;
|
|
|
|
}
|
1998-04-07 23:08:31 +04: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 */
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
Quick_input.xlen = len;
|
|
|
|
Quick_input.xpos = -1;
|
|
|
|
Quick_input.title = header;
|
|
|
|
Quick_input.help = help;
|
1998-03-25 08:16:00 +03:00
|
|
|
Quick_input.i18n = 0;
|
1998-02-27 07:54:42 +03:00
|
|
|
quick_widgets [INPUT_INDEX+1].text = text;
|
|
|
|
quick_widgets [INPUT_INDEX].text = def_text;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
quick_widgets [i].y_divisions = lines+6;
|
|
|
|
Quick_input.ylen = lines + 6;
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
quick_widgets [i].relative_y += 2 + lines;
|
|
|
|
|
|
|
|
quick_widgets [INPUT_INDEX].str_result = &my_str;
|
|
|
|
|
|
|
|
Quick_input.widgets = quick_widgets;
|
|
|
|
if (quick_dialog (&Quick_input) != B_CANCEL){
|
|
|
|
return *(quick_widgets [INPUT_INDEX].str_result);
|
|
|
|
} else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
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){
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
g_free (result);
|
1998-02-27 07:54:42 +03:00
|
|
|
return expanded;
|
2001-06-16 10:17:28 +04:00
|
|
|
}
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
/*
|
|
|
|
Cause emacs to enter folding mode for this file:
|
|
|
|
Local variables:
|
|
|
|
end:
|
|
|
|
*/
|